blob: e90de0385ad76954ca2fb76aa0240efa325375cf [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
Pier3e793752018-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;
Pierb1fe7382018-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;
Pierb1fe7382018-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;
Pier96f63cb2018-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 Chan056e0c12018-05-10 22:19:49 +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 Campanellafbcd55e2018-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 Chan056e0c12018-05-10 22:19:49 +000080
Pier96f63cb2018-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 Campanellab955fec2018-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 Chan056e0c12018-05-10 22:19:49 +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;
Pier96f63cb2018-04-17 16:29:56 +020099 private final McastUtils mcastUtils;
Charles Chan2199c302016-04-23 17:36:10 -0700100 private final ConsistentMap<McastStoreKey, NextObjective> mcastNextObjStore;
Pier3e793752018-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
Pier3e793752018-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);
Pier3e793752018-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) {
Pier3e793752018-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()
Pier3e793752018-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:
Pier3e793752018-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:
Pier3e793752018-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:
Pier3e793752018-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:
Pier3e793752018-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:
Pier3e793752018-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
Pier3e793752018-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;
Pier3e793752018-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)
Pier3e793752018-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();
Pier3e793752018-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
Pier3e793752018-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);
Pier3e793752018-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 /**
Pier3e793752018-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 -> {
Pier3e793752018-04-19 16:47:06 +0200278 log.debug("Init group {}", mcastRoute.group());
Pier96f63cb2018-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);
Pier3e793752018-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 Chand5814aa2018-08-19 19:21:46 -0700289 mcastUtils.buildMcastPaths(mcastNextObjStore.asJavaMap(), source.deviceId(), visited, mcastPaths,
Pier3e793752018-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() {
Pier477e0062018-04-20 14:14:34 +0200318 mcastEventCache.invalidateAll();
Pier Luigib72201b2018-01-25 16:16:02 +0100319 executorService.shutdown();
Pier477e0062018-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,
Pier3e793752018-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 Chan056e0c12018-05-10 22:19:49 +0000333 log.info("process {}", event);
Pier96f63cb2018-04-17 16:29:56 +0200334 // If it is a route added, we do not enqueue
335 if (event.type() == ROUTE_ADDED) {
Pier96f63cb2018-04-17 16:29:56 +0200336 processRouteAddedInternal(event.subject().route().group());
337 } else {
Pier96f63cb2018-04-17 16:29:56 +0200338 enqueueMcastEvent(event);
339 }
Pier Luigi9930da52018-02-02 16:19:11 +0100340 }
341
342 /**
Pier3e793752018-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 /**
Pier96f63cb2018-04-17 16:29:56 +0200495 * Process the ROUTE_ADDED event.
Pier Luigi57d41792018-02-26 12:31:38 +0100496 *
Pier96f63cb2018-04-17 16:29:56 +0200497 * @param mcastIp the group address
Pier Luigi57d41792018-02-26 12:31:38 +0100498 */
Pier96f63cb2018-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 {
Pier96f63cb2018-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.
Pier3e793752018-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 */
Pier3e793752018-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);
Pier96f63cb2018-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 }
Pier3e793752018-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 *
Pier3e793752018-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
Pier3bb1f3f2018-04-17 15:50:43 +0200563 * @param prevSinks the previous sinks
Pierb0328e42018-03-27 11:29:42 -0700564 */
Pier3e793752018-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,
Pier3bb1f3f2018-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 {
Pier96f63cb2018-04-17 16:29:56 +0200571 if (!mcastUtils.isLeader(mcastIp)) {
572 log.debug("Skip {} due to lack of leadership", mcastIp);
573 return;
574 }
Pier3e793752018-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
Pier3e793752018-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,
Pier3e793752018-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 {
Pier3e793752018-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())) {
Pier3e793752018-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) {
Pier3e793752018-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) {
Pier3e793752018-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) {
Pier3e793752018-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) {
Pier3e793752018-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 *
Pier3e793752018-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 */
Pier3e793752018-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 {
Pier96f63cb2018-04-17 16:29:56 +0200671 if (!mcastUtils.isLeader(mcastIp)) {
672 log.debug("Skip {} due to lack of leadership", mcastIp);
673 return;
674 }
Pier3e793752018-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 {
Pier3e793752018-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(),
Pier3e793752018-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));
Pier3e793752018-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
Pier3e793752018-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
Pier3e793752018-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()))
Pier3e793752018-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
Pier3e793752018-04-19 16:47:06 +0200734 mcastRoleStore.put(new McastRoleStoreKey(mcastIp, sink.deviceId(), source), EGRESS);
Pier Luigib72201b2018-01-25 16:16:02 +0100735 } else {
Pier3e793752018-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 -> {
Pier3e793752018-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 -> {
Pier3e793752018-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 /**
Pier3e793752018-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 Chan056e0c12018-05-10 22:19:49 +0000851 Optional<Path> mcastPath = getPath(ingressDevice, egressDevice,
852 mcastIp, paths, source);
853 if (mcastPath.isPresent()) {
854 installPath(mcastIp, source, mcastPath.get());
855 }
Pier3e793752018-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,
Pier3e793752018-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 Chan056e0c12018-05-10 22:19:49 +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 Chan056e0c12018-05-10 22:19:49 +0000897 .collect(Collectors.toSet())
898 );
Pierb0328e42018-03-27 11:29:42 -0700899 totalSinks.addAll(
Pier3e793752018-04-19 16:47:06 +0200900 mcastUtils.getAffectedSinks(deviceId, mcastIp).values().stream()
Charles Chan056e0c12018-05-10 22:19:49 +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);
Pier3e793752018-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
Pier3e793752018-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) -> {
Pier3e793752018-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 /**
Pier3bb1f3f2018-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
Pier3e793752018-04-19 16:47:06 +0200942 * @param source the source connect point
Pier3bb1f3f2018-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,
Pier3e793752018-04-19 16:47:06 +0200947 Map<HostId, Set<ConnectPoint>> newSinks,
948 ConnectPoint source) {
Pier3bb1f3f2018-04-17 15:50:43 +0200949 final Set<ConnectPoint> sinksToBeProcessed = Sets.newHashSet();
950 prevsinks.forEach(((hostId, connectPoints) -> {
951 // We have to check with the existing flows
952 ConnectPoint sinkToBeProcessed = connectPoints.stream()
Pier3e793752018-04-19 16:47:06 +0200953 .filter(connectPoint -> isSinkForSource(mcastIp, connectPoint, source))
Pier3bb1f3f2018-04-17 15:50:43 +0200954 .findFirst().orElse(null);
955 if (sinkToBeProcessed != null) {
956 // If the host has been removed or location has been removed
957 if (!newSinks.containsKey(hostId) ||
958 !newSinks.get(hostId).contains(sinkToBeProcessed)) {
959 sinksToBeProcessed.add(sinkToBeProcessed);
960 }
961 }
962 }));
963 // We have done, return the set
964 return sinksToBeProcessed;
965 }
966
967 /**
Pierb0328e42018-03-27 11:29:42 -0700968 * Process new locations and return the set of sinks to be added
969 * in the context of the recovery.
970 *
Pier3bb1f3f2018-04-17 15:50:43 +0200971 * @param newSinks the remaining sinks
972 * @param prevSinks the previous sinks
Pier3e793752018-04-19 16:47:06 +0200973 * @param source the source connect point
Pierb0328e42018-03-27 11:29:42 -0700974 * @return the set of the sinks to be processed
975 */
Charles Chan056e0c12018-05-10 22:19:49 +0000976 private Set<ConnectPoint> processSinksToBeRecovered(IpAddress mcastIp,
977 Map<HostId, Set<ConnectPoint>> newSinks,
Pier3e793752018-04-19 16:47:06 +0200978 Map<HostId, Set<ConnectPoint>> prevSinks,
979 ConnectPoint source) {
Pierb0328e42018-03-27 11:29:42 -0700980 final Set<ConnectPoint> sinksToBeProcessed = Sets.newHashSet();
Pier3bb1f3f2018-04-17 15:50:43 +0200981 newSinks.forEach((hostId, connectPoints) -> {
Pierb0328e42018-03-27 11:29:42 -0700982 // If it has more than 1 locations
983 if (connectPoints.size() > 1 || connectPoints.size() == 0) {
984 log.debug("Skip {} since sink {} has {} locations",
985 mcastIp, hostId, connectPoints.size());
986 return;
987 }
Pier3bb1f3f2018-04-17 15:50:43 +0200988 // If previously it had two locations, we need to recover it
989 // Filter out if the remaining location is already served
990 if (prevSinks.containsKey(hostId) && prevSinks.get(hostId).size() == 2) {
Pier06d0a772018-04-19 15:53:20 +0200991 ConnectPoint sinkToBeProcessed = connectPoints.stream()
Pier3e793752018-04-19 16:47:06 +0200992 .filter(connectPoint -> !isSinkForSource(mcastIp, connectPoint, source))
Pier06d0a772018-04-19 15:53:20 +0200993 .findFirst().orElse(null);
994 if (sinkToBeProcessed != null) {
995 sinksToBeProcessed.add(sinkToBeProcessed);
996 }
Pier3bb1f3f2018-04-17 15:50:43 +0200997 }
Pierb0328e42018-03-27 11:29:42 -0700998 });
999 return sinksToBeProcessed;
1000 }
1001
1002 /**
1003 * Process all the sinks related to a mcast group and return
1004 * the ones to be processed.
1005 *
1006 * @param source the source connect point
1007 * @param mcastIp the group address
1008 * @param sinks the sinks to be evaluated
1009 * @return the set of the sinks to be processed
1010 */
1011 private Set<ConnectPoint> processSinksToBeAdded(ConnectPoint source, IpAddress mcastIp,
1012 Map<HostId, Set<ConnectPoint>> sinks) {
Pierb0328e42018-03-27 11:29:42 -07001013 final Set<ConnectPoint> sinksToBeProcessed = Sets.newHashSet();
1014 sinks.forEach(((hostId, connectPoints) -> {
1015 // If it has more than 2 locations
1016 if (connectPoints.size() > 2 || connectPoints.size() == 0) {
1017 log.debug("Skip {} since sink {} has {} locations",
1018 mcastIp, hostId, connectPoints.size());
1019 return;
1020 }
1021 // If it has one location, just use it
1022 if (connectPoints.size() == 1) {
Pier3e793752018-04-19 16:47:06 +02001023 sinksToBeProcessed.add(connectPoints.stream().findFirst().orElse(null));
Pierb0328e42018-03-27 11:29:42 -07001024 return;
1025 }
1026 // We prefer to reuse existing flows
1027 ConnectPoint sinkToBeProcessed = connectPoints.stream()
Pier3e793752018-04-19 16:47:06 +02001028 .filter(connectPoint -> {
1029 if (!isSinkForGroup(mcastIp, connectPoint, source)) {
1030 return false;
1031 }
1032 if (!isSinkReachable(mcastIp, connectPoint, source)) {
1033 return false;
1034 }
1035 ConnectPoint other = connectPoints.stream()
Charles Chan056e0c12018-05-10 22:19:49 +00001036 .filter(remaining -> !remaining.equals(connectPoint))
1037 .findFirst().orElse(null);
Pier3e793752018-04-19 16:47:06 +02001038 // We are already serving the sink
1039 return !isSinkForSource(mcastIp, other, source);
1040 }).findFirst().orElse(null);
1041
Pierb0328e42018-03-27 11:29:42 -07001042 if (sinkToBeProcessed != null) {
1043 sinksToBeProcessed.add(sinkToBeProcessed);
1044 return;
1045 }
1046 // Otherwise we prefer to reuse existing egresses
Pier3e793752018-04-19 16:47:06 +02001047 Set<DeviceId> egresses = getDevice(mcastIp, EGRESS, source);
Pierb0328e42018-03-27 11:29:42 -07001048 sinkToBeProcessed = connectPoints.stream()
Pier3e793752018-04-19 16:47:06 +02001049 .filter(connectPoint -> {
1050 if (!egresses.contains(connectPoint.deviceId())) {
1051 return false;
1052 }
1053 if (!isSinkReachable(mcastIp, connectPoint, source)) {
1054 return false;
1055 }
1056 ConnectPoint other = connectPoints.stream()
Charles Chan056e0c12018-05-10 22:19:49 +00001057 .filter(remaining -> !remaining.equals(connectPoint))
1058 .findFirst().orElse(null);
Pier3e793752018-04-19 16:47:06 +02001059 return !isSinkForSource(mcastIp, other, source);
1060 }).findFirst().orElse(null);
Pierb0328e42018-03-27 11:29:42 -07001061 if (sinkToBeProcessed != null) {
1062 sinksToBeProcessed.add(sinkToBeProcessed);
1063 return;
1064 }
1065 // Otherwise we prefer a location co-located with the source (if it exists)
1066 sinkToBeProcessed = connectPoints.stream()
1067 .filter(connectPoint -> connectPoint.deviceId().equals(source.deviceId()))
1068 .findFirst().orElse(null);
1069 if (sinkToBeProcessed != null) {
1070 sinksToBeProcessed.add(sinkToBeProcessed);
1071 return;
1072 }
Pier3e793752018-04-19 16:47:06 +02001073 // Finally, we randomly pick a new location if it is reachable
1074 sinkToBeProcessed = connectPoints.stream()
1075 .filter(connectPoint -> {
1076 if (!isSinkReachable(mcastIp, connectPoint, source)) {
1077 return false;
1078 }
1079 ConnectPoint other = connectPoints.stream()
Charles Chan056e0c12018-05-10 22:19:49 +00001080 .filter(remaining -> !remaining.equals(connectPoint))
1081 .findFirst().orElse(null);
Pier3e793752018-04-19 16:47:06 +02001082 return !isSinkForSource(mcastIp, other, source);
1083 }).findFirst().orElse(null);
1084 if (sinkToBeProcessed != null) {
1085 sinksToBeProcessed.add(sinkToBeProcessed);
1086 }
Pierb0328e42018-03-27 11:29:42 -07001087 }));
Pierb0328e42018-03-27 11:29:42 -07001088 return sinksToBeProcessed;
1089 }
1090
1091 /**
Pier37db3692018-03-12 15:00:54 -07001092 * Utility method to remove all the ingress transit ports.
1093 *
1094 * @param mcastIp the group ip
Pier3e793752018-04-19 16:47:06 +02001095 * @param ingressDevices the ingress devices
1096 * @param sources the source connect points
Pier37db3692018-03-12 15:00:54 -07001097 */
Pier3e793752018-04-19 16:47:06 +02001098 private void removeIngressTransitPorts(IpAddress mcastIp, Set<DeviceId> ingressDevices,
1099 Set<ConnectPoint> sources) {
1100 Map<ConnectPoint, Set<PortNumber>> ingressTransitPorts = Maps.newHashMap();
1101 sources.forEach(source -> {
1102 DeviceId ingressDevice = ingressDevices.stream()
1103 .filter(deviceId -> deviceId.equals(source.deviceId()))
1104 .findFirst().orElse(null);
1105 if (ingressDevice == null) {
1106 log.warn("Skip removeIngressTransitPorts - " +
1107 "Missing ingress for source {} and group {}",
1108 source, mcastIp);
1109 return;
Pier37db3692018-03-12 15:00:54 -07001110 }
Andrea Campanellafbcd55e2018-06-05 14:19:21 +02001111 Set<PortNumber> ingressTransitPort = ingressTransitPort(mcastIp, ingressDevice, source);
1112 if (ingressTransitPort.isEmpty()) {
1113 log.warn("No transit ports to remove on device {}", ingressDevice);
1114 return;
1115 }
1116 ingressTransitPorts.put(source, ingressTransitPort);
Pier37db3692018-03-12 15:00:54 -07001117 });
Pier3e793752018-04-19 16:47:06 +02001118 ingressTransitPorts.forEach((source, ports) -> ports.forEach(ingressTransitPort -> {
1119 DeviceId ingressDevice = ingressDevices.stream()
Charles Chan056e0c12018-05-10 22:19:49 +00001120 .filter(deviceId -> deviceId.equals(source.deviceId()))
1121 .findFirst().orElse(null);
Pier3e793752018-04-19 16:47:06 +02001122 boolean isLast = removePortFromDevice(ingressDevice, ingressTransitPort,
1123 mcastIp, mcastUtils.assignedVlan(source));
1124 if (isLast) {
1125 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, ingressDevice, source));
1126 }
1127 }));
Pier37db3692018-03-12 15:00:54 -07001128 }
1129
1130 /**
Charles Chand55e84d2016-03-30 17:54:24 -07001131 * Adds a port to given multicast group on given device. This involves the
1132 * update of L3 multicast group and multicast routing table entry.
1133 *
1134 * @param deviceId device ID
1135 * @param port port to be added
1136 * @param mcastIp multicast group
1137 * @param assignedVlan assigned VLAN ID
1138 */
Charles Chan056e0c12018-05-10 22:19:49 +00001139 private void addPortToDevice(DeviceId deviceId, PortNumber port,
1140 IpAddress mcastIp, VlanId assignedVlan) {
Pier3e793752018-04-19 16:47:06 +02001141 McastStoreKey mcastStoreKey = new McastStoreKey(mcastIp, deviceId, assignedVlan);
Charles Chand55e84d2016-03-30 17:54:24 -07001142 ImmutableSet.Builder<PortNumber> portBuilder = ImmutableSet.builder();
Pier Luigi21fffd22018-01-19 10:24:53 +01001143 NextObjective newNextObj;
Charles Chan2199c302016-04-23 17:36:10 -07001144 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
Charles Chand55e84d2016-03-30 17:54:24 -07001145 // First time someone request this mcast group via this device
1146 portBuilder.add(port);
Pier Luigi21fffd22018-01-19 10:24:53 +01001147 // New nextObj
Charles Chan056e0c12018-05-10 22:19:49 +00001148 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
1149 portBuilder.build(), null).add();
Pier Luigi21fffd22018-01-19 10:24:53 +01001150 // Store the new port
1151 mcastNextObjStore.put(mcastStoreKey, newNextObj);
Charles Chand55e84d2016-03-30 17:54:24 -07001152 } else {
1153 // This device already serves some subscribers of this mcast group
Charles Chan2199c302016-04-23 17:36:10 -07001154 NextObjective nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Charles Chand55e84d2016-03-30 17:54:24 -07001155 // Stop if the port is already in the nextobj
Pierb0328e42018-03-27 11:29:42 -07001156 Set<PortNumber> existingPorts = mcastUtils.getPorts(nextObj.next());
Charles Chand55e84d2016-03-30 17:54:24 -07001157 if (existingPorts.contains(port)) {
1158 log.info("NextObj for {}/{} already exists. Abort", deviceId, port);
1159 return;
1160 }
Pier Luigi21fffd22018-01-19 10:24:53 +01001161 // Let's add the port and reuse the previous one
Yuta HIGUCHI0eb68e12018-02-09 18:05:23 -08001162 portBuilder.addAll(existingPorts).add(port);
Pier Luigi21fffd22018-01-19 10:24:53 +01001163 // Reuse previous nextObj
Pierb0328e42018-03-27 11:29:42 -07001164 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigi21fffd22018-01-19 10:24:53 +01001165 portBuilder.build(), nextObj.id()).addToExisting();
1166 // Store the final next objective and send only the difference to the driver
1167 mcastNextObjStore.put(mcastStoreKey, newNextObj);
1168 // Add just the new port
1169 portBuilder = ImmutableSet.builder();
1170 portBuilder.add(port);
Pierb0328e42018-03-27 11:29:42 -07001171 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigi21fffd22018-01-19 10:24:53 +01001172 portBuilder.build(), nextObj.id()).addToExisting();
Charles Chand55e84d2016-03-30 17:54:24 -07001173 }
1174 // Create, store and apply the new nextObj and fwdObj
Charles Chan2199c302016-04-23 17:36:10 -07001175 ObjectiveContext context = new DefaultObjectiveContext(
1176 (objective) -> log.debug("Successfully add {} on {}/{}, vlan {}",
1177 mcastIp, deviceId, port.toLong(), assignedVlan),
Charles Chan55b806f2018-08-23 14:30:33 -07001178 (objective, error) -> {
1179 log.warn("Failed to add {} on {}/{}, vlan {}: {}",
1180 mcastIp, deviceId, port.toLong(), assignedVlan, error);
1181 srManager.invalidateNextObj(objective.id());
1182 });
Pierb0328e42018-03-27 11:29:42 -07001183 ForwardingObjective fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan,
1184 newNextObj.id()).add(context);
Charles Chand55e84d2016-03-30 17:54:24 -07001185 srManager.flowObjectiveService.next(deviceId, newNextObj);
1186 srManager.flowObjectiveService.forward(deviceId, fwdObj);
Charles Chand55e84d2016-03-30 17:54:24 -07001187 }
1188
1189 /**
1190 * Removes a port from given multicast group on given device.
1191 * This involves the update of L3 multicast group and multicast routing
1192 * table entry.
1193 *
1194 * @param deviceId device ID
1195 * @param port port to be added
1196 * @param mcastIp multicast group
1197 * @param assignedVlan assigned VLAN ID
1198 * @return true if this is the last sink on this device
1199 */
Charles Chan056e0c12018-05-10 22:19:49 +00001200 private boolean removePortFromDevice(DeviceId deviceId, PortNumber port,
1201 IpAddress mcastIp, VlanId assignedVlan) {
Charles Chan2199c302016-04-23 17:36:10 -07001202 McastStoreKey mcastStoreKey =
Pier3e793752018-04-19 16:47:06 +02001203 new McastStoreKey(mcastIp, deviceId, assignedVlan);
Charles Chand55e84d2016-03-30 17:54:24 -07001204 // This device is not serving this multicast group
Charles Chan2199c302016-04-23 17:36:10 -07001205 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
Pier3e793752018-04-19 16:47:06 +02001206 return true;
Charles Chand55e84d2016-03-30 17:54:24 -07001207 }
Charles Chan2199c302016-04-23 17:36:10 -07001208 NextObjective nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Pierb0328e42018-03-27 11:29:42 -07001209 Set<PortNumber> existingPorts = mcastUtils.getPorts(nextObj.next());
Charles Chan2199c302016-04-23 17:36:10 -07001210 // This port does not serve this multicast group
Charles Chand55e84d2016-03-30 17:54:24 -07001211 if (!existingPorts.contains(port)) {
Pier3e793752018-04-19 16:47:06 +02001212 if (!existingPorts.isEmpty()) {
1213 log.warn("{} is not serving {} on port {}. Abort.", deviceId, mcastIp, port);
1214 return false;
1215 }
1216 return true;
Charles Chand55e84d2016-03-30 17:54:24 -07001217 }
1218 // Copy and modify the ImmutableSet
1219 existingPorts = Sets.newHashSet(existingPorts);
1220 existingPorts.remove(port);
Charles Chand55e84d2016-03-30 17:54:24 -07001221 NextObjective newNextObj;
Pier Luigid1be7b12018-01-19 10:24:53 +01001222 ObjectiveContext context;
Charles Chand55e84d2016-03-30 17:54:24 -07001223 ForwardingObjective fwdObj;
1224 if (existingPorts.isEmpty()) {
Pier Luigid1be7b12018-01-19 10:24:53 +01001225 context = new DefaultObjectiveContext(
Charles Chan2199c302016-04-23 17:36:10 -07001226 (objective) -> log.debug("Successfully remove {} on {}/{}, vlan {}",
1227 mcastIp, deviceId, port.toLong(), assignedVlan),
Pier3e793752018-04-19 16:47:06 +02001228 (objective, error) -> log.warn("Failed to remove {} on {}/{}, vlan {}: {}",
Charles Chan2199c302016-04-23 17:36:10 -07001229 mcastIp, deviceId, port.toLong(), assignedVlan, error));
Pierb0328e42018-03-27 11:29:42 -07001230 fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan, nextObj.id()).remove(context);
Charles Chan2199c302016-04-23 17:36:10 -07001231 mcastNextObjStore.remove(mcastStoreKey);
Charles Chand55e84d2016-03-30 17:54:24 -07001232 } else {
1233 // If this is not the last sink, update flows and groups
Pier Luigid1be7b12018-01-19 10:24:53 +01001234 context = new DefaultObjectiveContext(
Charles Chan2199c302016-04-23 17:36:10 -07001235 (objective) -> log.debug("Successfully update {} on {}/{}, vlan {}",
1236 mcastIp, deviceId, port.toLong(), assignedVlan),
Charles Chan55b806f2018-08-23 14:30:33 -07001237 (objective, error) -> {
1238 log.warn("Failed to update {} on {}/{}, vlan {}: {}",
1239 mcastIp, deviceId, port.toLong(), assignedVlan, error);
1240 srManager.invalidateNextObj(objective.id());
1241 });
Pier Luigid1be7b12018-01-19 10:24:53 +01001242 // Here we store the next objective with the remaining port
Pierb0328e42018-03-27 11:29:42 -07001243 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigid1be7b12018-01-19 10:24:53 +01001244 existingPorts, nextObj.id()).removeFromExisting();
Pierb0328e42018-03-27 11:29:42 -07001245 fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan, newNextObj.id()).add(context);
Charles Chan2199c302016-04-23 17:36:10 -07001246 mcastNextObjStore.put(mcastStoreKey, newNextObj);
Charles Chand55e84d2016-03-30 17:54:24 -07001247 }
Pier Luigid1be7b12018-01-19 10:24:53 +01001248 // Let's modify the next objective removing the bucket
Pierb0328e42018-03-27 11:29:42 -07001249 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigid1be7b12018-01-19 10:24:53 +01001250 ImmutableSet.of(port), nextObj.id()).removeFromExisting();
1251 srManager.flowObjectiveService.next(deviceId, newNextObj);
1252 srManager.flowObjectiveService.forward(deviceId, fwdObj);
Charles Chand55e84d2016-03-30 17:54:24 -07001253 return existingPorts.isEmpty();
1254 }
1255
Charles Chan2199c302016-04-23 17:36:10 -07001256 /**
1257 * Removes entire group on given device.
1258 *
1259 * @param deviceId device ID
1260 * @param mcastIp multicast group to be removed
1261 * @param assignedVlan assigned VLAN ID
1262 */
Charles Chan056e0c12018-05-10 22:19:49 +00001263 private void removeGroupFromDevice(DeviceId deviceId, IpAddress mcastIp,
1264 VlanId assignedVlan) {
Pier3e793752018-04-19 16:47:06 +02001265 McastStoreKey mcastStoreKey = new McastStoreKey(mcastIp, deviceId, assignedVlan);
Charles Chan2199c302016-04-23 17:36:10 -07001266 // This device is not serving this multicast group
1267 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
1268 log.warn("{} is not serving {}. Abort.", deviceId, mcastIp);
1269 return;
1270 }
1271 NextObjective nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Charles Chan2199c302016-04-23 17:36:10 -07001272 ObjectiveContext context = new DefaultObjectiveContext(
1273 (objective) -> log.debug("Successfully remove {} on {}, vlan {}",
1274 mcastIp, deviceId, assignedVlan),
Pier3e793752018-04-19 16:47:06 +02001275 (objective, error) -> log.warn("Failed to remove {} on {}, vlan {}: {}",
Charles Chan2199c302016-04-23 17:36:10 -07001276 mcastIp, deviceId, assignedVlan, error));
Pierb0328e42018-03-27 11:29:42 -07001277 ForwardingObjective fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan, nextObj.id()).remove(context);
Charles Chan2199c302016-04-23 17:36:10 -07001278 srManager.flowObjectiveService.forward(deviceId, fwdObj);
1279 mcastNextObjStore.remove(mcastStoreKey);
Charles Chan2199c302016-04-23 17:36:10 -07001280 }
1281
Pier Luigieba73a02018-01-16 10:47:50 +01001282 private void installPath(IpAddress mcastIp, ConnectPoint source, Path mcastPath) {
Pier Luigieba73a02018-01-16 10:47:50 +01001283 List<Link> links = mcastPath.links();
kezhiyongc97849c2018-12-03 16:14:29 +08001284 if (links.isEmpty()) {
1285 log.warn("There is no link that can be used. Stopping installation.");
1286 return;
1287 }
Pier37db3692018-03-12 15:00:54 -07001288 // Setup new ingress mcast role
Pier3e793752018-04-19 16:47:06 +02001289 mcastRoleStore.put(new McastRoleStoreKey(mcastIp, links.get(0).src().deviceId(), source),
Pier37db3692018-03-12 15:00:54 -07001290 INGRESS);
Pier Luigieba73a02018-01-16 10:47:50 +01001291 // For each link, modify the next on the source device adding the src port
1292 // and a new filter objective on the destination port
1293 links.forEach(link -> {
1294 addPortToDevice(link.src().deviceId(), link.src().port(), mcastIp,
Pierb0328e42018-03-27 11:29:42 -07001295 mcastUtils.assignedVlan(link.src().deviceId().equals(source.deviceId()) ? source : null));
1296 mcastUtils.addFilterToDevice(link.dst().deviceId(), link.dst().port(),
1297 mcastUtils.assignedVlan(null), mcastIp, null);
Pier Luigieba73a02018-01-16 10:47:50 +01001298 });
Pier37db3692018-03-12 15:00:54 -07001299 // Setup mcast role for the transit
1300 links.stream()
1301 .filter(link -> !link.src().deviceId().equals(source.deviceId()))
Pier3e793752018-04-19 16:47:06 +02001302 .forEach(link -> mcastRoleStore.put(new McastRoleStoreKey(mcastIp, link.src().deviceId(), source),
Pier37db3692018-03-12 15:00:54 -07001303 TRANSIT));
Charles Chan2199c302016-04-23 17:36:10 -07001304 }
1305
Charles Chand55e84d2016-03-30 17:54:24 -07001306 /**
Pier3ee24552018-03-14 16:47:32 -07001307 * Go through all the paths, looking for shared links to be used
1308 * in the final path computation.
1309 *
1310 * @param egresses egress devices
1311 * @param availablePaths all the available paths towards the egress
1312 * @return shared links between egress devices
1313 */
Charles Chan056e0c12018-05-10 22:19:49 +00001314 private Set<Link> exploreMcastTree(Set<DeviceId> egresses,
1315 Map<DeviceId, List<Path>> availablePaths) {
Pier3ee24552018-03-14 16:47:32 -07001316 int minLength = Integer.MAX_VALUE;
1317 int length;
Pier3ee24552018-03-14 16:47:32 -07001318 List<Path> currentPaths;
1319 // Verify the source can still reach all the egresses
1320 for (DeviceId egress : egresses) {
1321 // From the source we cannot reach all the sinks
Pierb0328e42018-03-27 11:29:42 -07001322 // just continue and let's figure out after
Pier3ee24552018-03-14 16:47:32 -07001323 currentPaths = availablePaths.get(egress);
1324 if (currentPaths.isEmpty()) {
1325 continue;
1326 }
Pier3e793752018-04-19 16:47:06 +02001327 // Get the length of the first one available, update the min length
Pier3ee24552018-03-14 16:47:32 -07001328 length = currentPaths.get(0).links().size();
1329 if (length < minLength) {
1330 minLength = length;
1331 }
Pier Luigif7049c52018-02-23 19:57:40 +01001332 }
Pier3ee24552018-03-14 16:47:32 -07001333 // If there are no paths
1334 if (minLength == Integer.MAX_VALUE) {
1335 return Collections.emptySet();
1336 }
Pier3ee24552018-03-14 16:47:32 -07001337 int index = 0;
Pier3ee24552018-03-14 16:47:32 -07001338 Set<Link> sharedLinks = Sets.newHashSet();
1339 Set<Link> currentSharedLinks;
1340 Set<Link> currentLinks;
Pierb0328e42018-03-27 11:29:42 -07001341 DeviceId egressToRemove = null;
Pier3ee24552018-03-14 16:47:32 -07001342 // Let's find out the shared links
1343 while (index < minLength) {
1344 // Initialize the intersection with the paths related to the first egress
Pier3e793752018-04-19 16:47:06 +02001345 currentPaths = availablePaths.get(egresses.stream().findFirst().orElse(null));
Pier3ee24552018-03-14 16:47:32 -07001346 currentSharedLinks = Sets.newHashSet();
1347 // Iterate over the paths and take the "index" links
1348 for (Path path : currentPaths) {
1349 currentSharedLinks.add(path.links().get(index));
1350 }
1351 // Iterate over the remaining egress
1352 for (DeviceId egress : egresses) {
1353 // Iterate over the paths and take the "index" links
1354 currentLinks = Sets.newHashSet();
1355 for (Path path : availablePaths.get(egress)) {
1356 currentLinks.add(path.links().get(index));
1357 }
1358 // Do intersection
1359 currentSharedLinks = Sets.intersection(currentSharedLinks, currentLinks);
1360 // If there are no shared paths exit and record the device to remove
1361 // we have to retry with a subset of sinks
1362 if (currentSharedLinks.isEmpty()) {
Pierb0328e42018-03-27 11:29:42 -07001363 egressToRemove = egress;
Pier3ee24552018-03-14 16:47:32 -07001364 index = minLength;
1365 break;
1366 }
1367 }
1368 sharedLinks.addAll(currentSharedLinks);
1369 index++;
1370 }
Pier3e793752018-04-19 16:47:06 +02001371 // If the shared links is empty and there are egress let's retry another time with less sinks,
1372 // we can still build optimal subtrees
Pierb0328e42018-03-27 11:29:42 -07001373 if (sharedLinks.isEmpty() && egresses.size() > 1 && egressToRemove != null) {
1374 egresses.remove(egressToRemove);
Pier3ee24552018-03-14 16:47:32 -07001375 sharedLinks = exploreMcastTree(egresses, availablePaths);
1376 }
1377 return sharedLinks;
1378 }
1379
1380 /**
1381 * Build Mcast tree having as root the given source and as leaves the given egress points.
1382 *
1383 * @param source source of the tree
1384 * @param sinks leaves of the tree
1385 * @return the computed Mcast tree
1386 */
Charles Chan056e0c12018-05-10 22:19:49 +00001387 private Map<ConnectPoint, List<Path>> computeSinkMcastTree(DeviceId source,
1388 Set<ConnectPoint> sinks) {
Pier3ee24552018-03-14 16:47:32 -07001389 // Get the egress devices, remove source from the egress if present
Pier3e793752018-04-19 16:47:06 +02001390 Set<DeviceId> egresses = sinks.stream().map(ConnectPoint::deviceId)
1391 .filter(deviceId -> !deviceId.equals(source)).collect(Collectors.toSet());
Pier3ee24552018-03-14 16:47:32 -07001392 Map<DeviceId, List<Path>> mcastTree = computeMcastTree(source, egresses);
Pier3ee24552018-03-14 16:47:32 -07001393 final Map<ConnectPoint, List<Path>> finalTree = Maps.newHashMap();
Pierb0328e42018-03-27 11:29:42 -07001394 // We need to put back the source if it was originally present
1395 sinks.forEach(sink -> {
1396 List<Path> sinkPaths = mcastTree.get(sink.deviceId());
1397 finalTree.put(sink, sinkPaths != null ? sinkPaths : ImmutableList.of());
1398 });
Pier3ee24552018-03-14 16:47:32 -07001399 return finalTree;
1400 }
1401
1402 /**
1403 * Build Mcast tree having as root the given source and as leaves the given egress.
1404 *
1405 * @param source source of the tree
1406 * @param egresses leaves of the tree
1407 * @return the computed Mcast tree
1408 */
1409 private Map<DeviceId, List<Path>> computeMcastTree(DeviceId source,
1410 Set<DeviceId> egresses) {
1411 // Pre-compute all the paths
1412 Map<DeviceId, List<Path>> availablePaths = Maps.newHashMap();
Pier3ee24552018-03-14 16:47:32 -07001413 egresses.forEach(egress -> availablePaths.put(egress, getPaths(source, egress,
1414 Collections.emptySet())));
1415 // Explore the topology looking for shared links amongst the egresses
1416 Set<Link> linksToEnforce = exploreMcastTree(Sets.newHashSet(egresses), availablePaths);
Pier3ee24552018-03-14 16:47:32 -07001417 // Build the final paths enforcing the shared links between egress devices
Pier3e793752018-04-19 16:47:06 +02001418 availablePaths.clear();
Pier3ee24552018-03-14 16:47:32 -07001419 egresses.forEach(egress -> availablePaths.put(egress, getPaths(source, egress,
1420 linksToEnforce)));
1421 return availablePaths;
1422 }
1423
1424 /**
1425 * Gets path from src to dst computed using the custom link weigher.
1426 *
1427 * @param src source device ID
1428 * @param dst destination device ID
1429 * @return list of paths from src to dst
1430 */
1431 private List<Path> getPaths(DeviceId src, DeviceId dst, Set<Link> linksToEnforce) {
Pier3ee24552018-03-14 16:47:32 -07001432 final Topology currentTopology = topologyService.currentTopology();
Pier3ee24552018-03-14 16:47:32 -07001433 final LinkWeigher linkWeigher = new SRLinkWeigher(srManager, src, linksToEnforce);
Pier3e793752018-04-19 16:47:06 +02001434 List<Path> allPaths = Lists.newArrayList(topologyService.getPaths(currentTopology, src, dst, linkWeigher));
Pier3ee24552018-03-14 16:47:32 -07001435 log.debug("{} path(s) found from {} to {}", allPaths.size(), src, dst);
1436 return allPaths;
Pier Luigif7049c52018-02-23 19:57:40 +01001437 }
1438
Charles Chand55e84d2016-03-30 17:54:24 -07001439 /**
1440 * Gets a path from src to dst.
1441 * If a path was allocated before, returns the allocated path.
1442 * Otherwise, randomly pick one from available paths.
1443 *
1444 * @param src source device ID
1445 * @param dst destination device ID
1446 * @param mcastIp multicast group
Pier3ee24552018-03-14 16:47:32 -07001447 * @param allPaths paths list
Charles Chand55e84d2016-03-30 17:54:24 -07001448 * @return an optional path from src to dst
1449 */
Pier3e793752018-04-19 16:47:06 +02001450 private Optional<Path> getPath(DeviceId src, DeviceId dst, IpAddress mcastIp,
1451 List<Path> allPaths, ConnectPoint source) {
Pier3ee24552018-03-14 16:47:32 -07001452 if (allPaths == null) {
1453 allPaths = getPaths(src, dst, Collections.emptySet());
1454 }
Charles Chand55e84d2016-03-30 17:54:24 -07001455 if (allPaths.isEmpty()) {
Charles Chand55e84d2016-03-30 17:54:24 -07001456 return Optional.empty();
1457 }
Pier3e793752018-04-19 16:47:06 +02001458 // Create a map index of suitability-to-list of paths. For example
Pier Luigibad6d6c2018-01-23 16:06:38 +01001459 // a path in the list associated to the index 1 shares only the
1460 // first hop and it is less suitable of a path belonging to the index
1461 // 2 that shares leaf-spine.
1462 Map<Integer, List<Path>> eligiblePaths = Maps.newHashMap();
Pier Luigibad6d6c2018-01-23 16:06:38 +01001463 int nhop;
1464 McastStoreKey mcastStoreKey;
Pier Luigibad6d6c2018-01-23 16:06:38 +01001465 PortNumber srcPort;
1466 Set<PortNumber> existingPorts;
1467 NextObjective nextObj;
Pier Luigibad6d6c2018-01-23 16:06:38 +01001468 for (Path path : allPaths) {
Pier Luigibad6d6c2018-01-23 16:06:38 +01001469 if (!src.equals(path.links().get(0).src().deviceId())) {
1470 continue;
1471 }
1472 nhop = 0;
1473 // Iterate over the links
Pier3e793752018-04-19 16:47:06 +02001474 for (Link hop : path.links()) {
1475 VlanId assignedVlan = mcastUtils.assignedVlan(hop.src().deviceId().equals(src) ?
1476 source : null);
1477 mcastStoreKey = new McastStoreKey(mcastIp, hop.src().deviceId(), assignedVlan);
1478 // It does not exist in the store, go to the next link
Pier Luigibad6d6c2018-01-23 16:06:38 +01001479 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
Pier3e793752018-04-19 16:47:06 +02001480 continue;
Charles Chand55e84d2016-03-30 17:54:24 -07001481 }
Pier Luigibad6d6c2018-01-23 16:06:38 +01001482 nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Pierb0328e42018-03-27 11:29:42 -07001483 existingPorts = mcastUtils.getPorts(nextObj.next());
Pier Luigibad6d6c2018-01-23 16:06:38 +01001484 srcPort = hop.src().port();
Pier3e793752018-04-19 16:47:06 +02001485 // the src port is not used as output, go to the next link
Pier Luigibad6d6c2018-01-23 16:06:38 +01001486 if (!existingPorts.contains(srcPort)) {
Pier3e793752018-04-19 16:47:06 +02001487 continue;
Pier Luigibad6d6c2018-01-23 16:06:38 +01001488 }
1489 nhop++;
1490 }
1491 // n_hop defines the index
1492 if (nhop > 0) {
1493 eligiblePaths.compute(nhop, (index, paths) -> {
1494 paths = paths == null ? Lists.newArrayList() : paths;
1495 paths.add(path);
1496 return paths;
1497 });
Charles Chand55e84d2016-03-30 17:54:24 -07001498 }
1499 }
Pier Luigibad6d6c2018-01-23 16:06:38 +01001500 if (eligiblePaths.isEmpty()) {
1501 log.debug("No eligiblePath(s) found from {} to {}", src, dst);
Pier Luigibad6d6c2018-01-23 16:06:38 +01001502 Collections.shuffle(allPaths);
1503 return allPaths.stream().findFirst();
1504 }
Pier Luigibad6d6c2018-01-23 16:06:38 +01001505 // Let's take the best ones
Pier3e793752018-04-19 16:47:06 +02001506 Integer bestIndex = eligiblePaths.keySet().stream()
1507 .sorted(Comparator.reverseOrder()).findFirst().orElse(null);
Pier Luigibad6d6c2018-01-23 16:06:38 +01001508 List<Path> bestPaths = eligiblePaths.get(bestIndex);
1509 log.debug("{} eligiblePath(s) found from {} to {}",
1510 bestPaths.size(), src, dst);
Pier Luigibad6d6c2018-01-23 16:06:38 +01001511 Collections.shuffle(bestPaths);
1512 return bestPaths.stream().findFirst();
Charles Chand55e84d2016-03-30 17:54:24 -07001513 }
1514
1515 /**
Pier3e793752018-04-19 16:47:06 +02001516 * Gets device(s) of given role and of given source in given multicast tree.
1517 *
1518 * @param mcastIp multicast IP
1519 * @param role multicast role
1520 * @param source source connect point
1521 * @return set of device ID or empty set if not found
1522 */
1523 private Set<DeviceId> getDevice(IpAddress mcastIp, McastRole role, ConnectPoint source) {
1524 return mcastRoleStore.entrySet().stream()
1525 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp) &&
Charles Chan056e0c12018-05-10 22:19:49 +00001526 entry.getKey().source().equals(source) &&
1527 entry.getValue().value() == role)
Pier3e793752018-04-19 16:47:06 +02001528 .map(Entry::getKey).map(McastRoleStoreKey::deviceId).collect(Collectors.toSet());
1529 }
1530
1531 /**
Charles Chan2199c302016-04-23 17:36:10 -07001532 * Gets device(s) of given role in given multicast group.
1533 *
1534 * @param mcastIp multicast IP
1535 * @param role multicast role
1536 * @return set of device ID or empty set if not found
1537 */
1538 private Set<DeviceId> getDevice(IpAddress mcastIp, McastRole role) {
1539 return mcastRoleStore.entrySet().stream()
1540 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp) &&
1541 entry.getValue().value() == role)
Pier3e793752018-04-19 16:47:06 +02001542 .map(Entry::getKey).map(McastRoleStoreKey::deviceId).collect(Collectors.toSet());
1543 }
1544
1545 /**
1546 * Gets source(s) of given role, given device in given multicast group.
1547 *
1548 * @param mcastIp multicast IP
1549 * @param deviceId device id
1550 * @param role multicast role
1551 * @return set of device ID or empty set if not found
1552 */
1553 private Set<ConnectPoint> getSources(IpAddress mcastIp, DeviceId deviceId, McastRole role) {
1554 return mcastRoleStore.entrySet().stream()
1555 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp) &&
1556 entry.getKey().deviceId().equals(deviceId) && entry.getValue().value() == role)
1557 .map(Entry::getKey).map(McastRoleStoreKey::source).collect(Collectors.toSet());
1558 }
1559
1560 /**
1561 * Gets source(s) of given multicast group.
1562 *
1563 * @param mcastIp multicast IP
1564 * @return set of device ID or empty set if not found
1565 */
1566 private Set<ConnectPoint> getSources(IpAddress mcastIp) {
1567 return mcastRoleStore.entrySet().stream()
1568 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp))
1569 .map(Entry::getKey).map(McastRoleStoreKey::source).collect(Collectors.toSet());
Charles Chan2199c302016-04-23 17:36:10 -07001570 }
1571
1572 /**
1573 * Gets groups which is affected by the link down event.
1574 *
1575 * @param link link going down
1576 * @return a set of multicast IpAddress
1577 */
1578 private Set<IpAddress> getAffectedGroups(Link link) {
1579 DeviceId deviceId = link.src().deviceId();
1580 PortNumber port = link.src().port();
1581 return mcastNextObjStore.entrySet().stream()
1582 .filter(entry -> entry.getKey().deviceId().equals(deviceId) &&
Pier3e793752018-04-19 16:47:06 +02001583 mcastUtils.getPorts(entry.getValue().value().next()).contains(port))
1584 .map(Entry::getKey).map(McastStoreKey::mcastIp).collect(Collectors.toSet());
Charles Chan2199c302016-04-23 17:36:10 -07001585 }
1586
1587 /**
Pier Luigieba73a02018-01-16 10:47:50 +01001588 * Gets groups which are affected by the device down event.
1589 *
1590 * @param deviceId device going down
1591 * @return a set of multicast IpAddress
1592 */
1593 private Set<IpAddress> getAffectedGroups(DeviceId deviceId) {
1594 return mcastNextObjStore.entrySet().stream()
1595 .filter(entry -> entry.getKey().deviceId().equals(deviceId))
Pier3ee24552018-03-14 16:47:32 -07001596 .map(Entry::getKey).map(McastStoreKey::mcastIp)
Pier Luigieba73a02018-01-16 10:47:50 +01001597 .collect(Collectors.toSet());
1598 }
1599
1600 /**
Charles Chan2199c302016-04-23 17:36:10 -07001601 * Gets the spine-facing port on ingress device of given multicast group.
1602 *
1603 * @param mcastIp multicast IP
Pier3e793752018-04-19 16:47:06 +02001604 * @param ingressDevice the ingress device
1605 * @param source the source connect point
Charles Chan2199c302016-04-23 17:36:10 -07001606 * @return spine-facing port on ingress device
1607 */
Charles Chan056e0c12018-05-10 22:19:49 +00001608 private Set<PortNumber> ingressTransitPort(IpAddress mcastIp, DeviceId ingressDevice,
1609 ConnectPoint source) {
Pier37db3692018-03-12 15:00:54 -07001610 ImmutableSet.Builder<PortNumber> portBuilder = ImmutableSet.builder();
Charles Chan2199c302016-04-23 17:36:10 -07001611 if (ingressDevice != null) {
Andrea Campanellafbcd55e2018-06-05 14:19:21 +02001612 Versioned<NextObjective> nextObjVers = mcastNextObjStore.get(new McastStoreKey(mcastIp, ingressDevice,
1613 mcastUtils.assignedVlan(source)));
1614 if (nextObjVers == null) {
1615 log.warn("Absent next objective for {}", new McastStoreKey(mcastIp, ingressDevice,
1616 mcastUtils.assignedVlan(source)));
1617 return portBuilder.build();
1618 }
1619 NextObjective nextObj = nextObjVers.value();
Pierb0328e42018-03-27 11:29:42 -07001620 Set<PortNumber> ports = mcastUtils.getPorts(nextObj.next());
Pier37db3692018-03-12 15:00:54 -07001621 // Let's find out all the ingress-transit ports
Charles Chan2199c302016-04-23 17:36:10 -07001622 for (PortNumber port : ports) {
1623 // Spine-facing port should have no subnet and no xconnect
Pier Luigi96fe0772018-02-28 12:10:50 +01001624 if (srManager.deviceConfiguration() != null &&
1625 srManager.deviceConfiguration().getPortSubnets(ingressDevice, port).isEmpty() &&
Charles Chanc7b3c452018-06-19 20:31:57 -07001626 (srManager.xconnectService == null ||
1627 !srManager.xconnectService.hasXconnect(new ConnectPoint(ingressDevice, port)))) {
Pier37db3692018-03-12 15:00:54 -07001628 portBuilder.add(port);
Charles Chan2199c302016-04-23 17:36:10 -07001629 }
1630 }
1631 }
Pier37db3692018-03-12 15:00:54 -07001632 return portBuilder.build();
Charles Chan2199c302016-04-23 17:36:10 -07001633 }
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001634
1635 /**
Pier3bb1f3f2018-04-17 15:50:43 +02001636 * Verify if a given connect point is sink for this group.
1637 *
1638 * @param mcastIp group address
1639 * @param connectPoint connect point to be verified
Pier3e793752018-04-19 16:47:06 +02001640 * @param source source connect point
Pier3bb1f3f2018-04-17 15:50:43 +02001641 * @return true if the connect point is sink of the group
1642 */
Charles Chan056e0c12018-05-10 22:19:49 +00001643 private boolean isSinkForGroup(IpAddress mcastIp, ConnectPoint connectPoint,
1644 ConnectPoint source) {
Pier3e793752018-04-19 16:47:06 +02001645 VlanId assignedVlan = mcastUtils.assignedVlan(connectPoint.deviceId().equals(source.deviceId()) ?
1646 source : null);
1647 McastStoreKey mcastStoreKey = new McastStoreKey(mcastIp, connectPoint.deviceId(), assignedVlan);
Pier3bb1f3f2018-04-17 15:50:43 +02001648 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
1649 return false;
1650 }
Pier3bb1f3f2018-04-17 15:50:43 +02001651 NextObjective mcastNext = mcastNextObjStore.get(mcastStoreKey).value();
1652 return mcastUtils.getPorts(mcastNext.next()).contains(connectPoint.port());
1653 }
1654
1655 /**
Pier3e793752018-04-19 16:47:06 +02001656 * Verify if a given connect point is sink for this group and for this source.
1657 *
1658 * @param mcastIp group address
1659 * @param connectPoint connect point to be verified
1660 * @param source source connect point
1661 * @return true if the connect point is sink of the group
1662 */
Charles Chan056e0c12018-05-10 22:19:49 +00001663 private boolean isSinkForSource(IpAddress mcastIp, ConnectPoint connectPoint,
1664 ConnectPoint source) {
Pier3e793752018-04-19 16:47:06 +02001665 boolean isSink = isSinkForGroup(mcastIp, connectPoint, source);
1666 DeviceId device;
1667 if (connectPoint.deviceId().equals(source.deviceId())) {
1668 device = getDevice(mcastIp, INGRESS, source).stream()
1669 .filter(deviceId -> deviceId.equals(connectPoint.deviceId()))
1670 .findFirst().orElse(null);
1671 } else {
1672 device = getDevice(mcastIp, EGRESS, source).stream()
1673 .filter(deviceId -> deviceId.equals(connectPoint.deviceId()))
1674 .findFirst().orElse(null);
1675 }
1676 return isSink && device != null;
1677 }
1678
1679 /**
1680 * Verify if a sink is reachable from this source.
1681 *
1682 * @param mcastIp group address
1683 * @param sink connect point to be verified
1684 * @param source source connect point
1685 * @return true if the connect point is reachable from the source
1686 */
Charles Chan056e0c12018-05-10 22:19:49 +00001687 private boolean isSinkReachable(IpAddress mcastIp, ConnectPoint sink,
1688 ConnectPoint source) {
Pier3e793752018-04-19 16:47:06 +02001689 return sink.deviceId().equals(source.deviceId()) ||
1690 getPath(source.deviceId(), sink.deviceId(), mcastIp, null, source).isPresent();
1691 }
1692
1693 /**
Pier Luigib72201b2018-01-25 16:16:02 +01001694 * Updates filtering objective for given device and port.
1695 * It is called in general when the mcast config has been
1696 * changed.
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001697 *
1698 * @param deviceId device ID
1699 * @param portNum ingress port number
1700 * @param vlanId assigned VLAN ID
1701 * @param install true to add, false to remove
1702 */
Charles Chan056e0c12018-05-10 22:19:49 +00001703 public void updateFilterToDevice(DeviceId deviceId, PortNumber portNum,
1704 VlanId vlanId, boolean install) {
Pier Luigib72201b2018-01-25 16:16:02 +01001705 lastMcastChange = Instant.now();
1706 mcastLock();
1707 try {
Pier3e793752018-04-19 16:47:06 +02001708 // Iterates over the route and updates properly the filtering objective on the source device.
Pier Luigib72201b2018-01-25 16:16:02 +01001709 srManager.multicastRouteService.getRoutes().forEach(mcastRoute -> {
Pier96f63cb2018-04-17 16:29:56 +02001710 log.debug("Update filter for {}", mcastRoute.group());
Pier96f63cb2018-04-17 16:29:56 +02001711 if (!mcastUtils.isLeader(mcastRoute.group())) {
1712 log.debug("Skip {} due to lack of leadership", mcastRoute.group());
1713 return;
1714 }
Pier3e793752018-04-19 16:47:06 +02001715 // Get the sources and for each one update properly the filtering objectives
1716 Set<ConnectPoint> sources = srManager.multicastRouteService.sources(mcastRoute);
1717 sources.forEach(source -> {
1718 if (source.deviceId().equals(deviceId) && source.port().equals(portNum)) {
1719 if (install) {
1720 mcastUtils.addFilterToDevice(deviceId, portNum, vlanId, mcastRoute.group(), INGRESS);
1721 } else {
1722 mcastUtils.removeFilterToDevice(deviceId, portNum, vlanId, mcastRoute.group(), null);
1723 }
Pier Luigib72201b2018-01-25 16:16:02 +01001724 }
Pier3e793752018-04-19 16:47:06 +02001725 });
Pier Luigib72201b2018-01-25 16:16:02 +01001726 });
1727 } finally {
1728 mcastUnlock();
1729 }
1730 }
1731
1732 /**
1733 * Performs bucket verification operation for all mcast groups in the devices.
1734 * Firstly, it verifies that mcast is stable before trying verification operation.
1735 * Verification consists in creating new nexts with VERIFY operation. Actually,
1736 * the operation is totally delegated to the driver.
1737 */
Pier3e793752018-04-19 16:47:06 +02001738 private final class McastBucketCorrector implements Runnable {
Pier Luigib72201b2018-01-25 16:16:02 +01001739
1740 @Override
1741 public void run() {
Pier Luigib72201b2018-01-25 16:16:02 +01001742 if (!isMcastStable()) {
1743 return;
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001744 }
Pier Luigib72201b2018-01-25 16:16:02 +01001745 mcastLock();
1746 try {
1747 // Iterates over the routes and verify the related next objectives
1748 srManager.multicastRouteService.getRoutes()
Pier3e793752018-04-19 16:47:06 +02001749 .stream().map(McastRoute::group)
Pier Luigib72201b2018-01-25 16:16:02 +01001750 .forEach(mcastIp -> {
Pier3e793752018-04-19 16:47:06 +02001751 log.trace("Running mcast buckets corrector for mcast group: {}", mcastIp);
1752 // Verify leadership on the operation
1753 if (!mcastUtils.isLeader(mcastIp)) {
1754 log.trace("Skip {} due to lack of leadership", mcastIp);
1755 return;
1756 }
1757 // Get sources and sinks from Mcast Route Service and warn about errors
1758 Set<ConnectPoint> sources = mcastUtils.getSources(mcastIp);
Pierb0328e42018-03-27 11:29:42 -07001759 Set<ConnectPoint> sinks = mcastUtils.getSinks(mcastIp).values().stream()
Pier3e793752018-04-19 16:47:06 +02001760 .flatMap(Collection::stream).collect(Collectors.toSet());
1761 // Do not proceed if sources of this group are missing
1762 if (sources.isEmpty()) {
Pier Luigib87b8ab2018-03-02 12:53:37 +01001763 if (!sinks.isEmpty()) {
1764 log.warn("Unable to run buckets corrector. " +
Pier3e793752018-04-19 16:47:06 +02001765 "Missing source {} for group {}", sources, mcastIp);
Pier Luigib87b8ab2018-03-02 12:53:37 +01001766 }
Pier Luigib72201b2018-01-25 16:16:02 +01001767 return;
1768 }
Pier3e793752018-04-19 16:47:06 +02001769 sources.forEach(source -> {
1770 // For each group we get current information in the store
1771 // and issue a check of the next objectives in place
1772 Set<DeviceId> ingressDevices = getDevice(mcastIp, INGRESS, source);
1773 Set<DeviceId> transitDevices = getDevice(mcastIp, TRANSIT, source);
1774 Set<DeviceId> egressDevices = getDevice(mcastIp, EGRESS, source);
1775 // Do not proceed if ingress devices are missing
1776 if (ingressDevices.isEmpty()) {
1777 if (!sinks.isEmpty()) {
1778 log.warn("Unable to run buckets corrector. " +
1779 "Missing ingress {} for source {} and for group {}",
1780 ingressDevices, source, mcastIp);
1781 }
1782 return;
Pier Luigib72201b2018-01-25 16:16:02 +01001783 }
Pier3e793752018-04-19 16:47:06 +02001784 // Create the set of the devices to be processed
1785 ImmutableSet.Builder<DeviceId> devicesBuilder = ImmutableSet.builder();
1786 if (!ingressDevices.isEmpty()) {
1787 devicesBuilder.addAll(ingressDevices);
1788 }
1789 if (!transitDevices.isEmpty()) {
1790 devicesBuilder.addAll(transitDevices);
1791 }
1792 if (!egressDevices.isEmpty()) {
1793 devicesBuilder.addAll(egressDevices);
1794 }
1795 Set<DeviceId> devicesToProcess = devicesBuilder.build();
1796 devicesToProcess.forEach(deviceId -> {
1797 VlanId assignedVlan = mcastUtils.assignedVlan(deviceId.equals(source.deviceId()) ?
1798 source : null);
1799 McastStoreKey currentKey = new McastStoreKey(mcastIp, deviceId, assignedVlan);
1800 if (mcastNextObjStore.containsKey(currentKey)) {
1801 NextObjective currentNext = mcastNextObjStore.get(currentKey).value();
1802 // Rebuild the next objective using assigned vlan
1803 currentNext = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
1804 mcastUtils.getPorts(currentNext.next()), currentNext.id()).verify();
1805 // Send to the flowobjective service
1806 srManager.flowObjectiveService.next(deviceId, currentNext);
1807 } else {
1808 log.warn("Unable to run buckets corrector. " +
1809 "Missing next for {}, for source {} and for group {}",
1810 deviceId, source, mcastIp);
1811 }
1812 });
Pier Luigib72201b2018-01-25 16:16:02 +01001813 });
Pier Luigib72201b2018-01-25 16:16:02 +01001814 });
1815 } finally {
Pier Luigib72201b2018-01-25 16:16:02 +01001816 mcastUnlock();
1817 }
1818
1819 }
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001820 }
Pier Luigib29144d2018-01-15 18:06:43 +01001821
Pier3e793752018-04-19 16:47:06 +02001822 /**
1823 * Returns the associated next ids to the mcast groups or to the single
1824 * group if mcastIp is present.
1825 *
1826 * @param mcastIp the group ip
1827 * @return the mapping mcastIp-device to next id
1828 */
Charles Chand5814aa2018-08-19 19:21:46 -07001829 public Map<McastStoreKey, Integer> getNextIds(IpAddress mcastIp) {
Pier Luigib29144d2018-01-15 18:06:43 +01001830 if (mcastIp != null) {
1831 return mcastNextObjStore.entrySet().stream()
1832 .filter(mcastEntry -> mcastIp.equals(mcastEntry.getKey().mcastIp()))
Pier3e793752018-04-19 16:47:06 +02001833 .collect(Collectors.toMap(Entry::getKey, entry -> entry.getValue().value().id()));
Pier Luigib29144d2018-01-15 18:06:43 +01001834 }
Pier Luigib29144d2018-01-15 18:06:43 +01001835 return mcastNextObjStore.entrySet().stream()
Pier3e793752018-04-19 16:47:06 +02001836 .collect(Collectors.toMap(Entry::getKey, entry -> entry.getValue().value().id()));
Pier Luigib29144d2018-01-15 18:06:43 +01001837 }
1838
Pierb1fe7382018-04-17 17:25:22 +02001839 /**
Charles Chand5814aa2018-08-19 19:21:46 -07001840 * Removes given next ID from mcast next id store.
1841 *
1842 * @param nextId next id
1843 */
1844 public void removeNextId(int nextId) {
1845 mcastNextObjStore.entrySet().forEach(e -> {
1846 if (e.getValue().value().id() == nextId) {
1847 mcastNextObjStore.remove(e.getKey());
1848 }
1849 });
1850 }
1851
1852 /**
Pierb1fe7382018-04-17 17:25:22 +02001853 * Returns the associated roles 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 mcast role
1858 *
1859 * @deprecated in 1.12 ("Magpie") release.
1860 */
1861 @Deprecated
Pier Luigi96fe0772018-02-28 12:10:50 +01001862 public Map<McastStoreKey, McastRole> getMcastRoles(IpAddress mcastIp) {
Pier Luigib29144d2018-01-15 18:06:43 +01001863 if (mcastIp != null) {
1864 return mcastRoleStore.entrySet().stream()
1865 .filter(mcastEntry -> mcastIp.equals(mcastEntry.getKey().mcastIp()))
Pier3e793752018-04-19 16:47:06 +02001866 .collect(Collectors.toMap(entry -> new McastStoreKey(entry.getKey().mcastIp(),
1867 entry.getKey().deviceId(), null), entry -> entry.getValue().value()));
Pier Luigib29144d2018-01-15 18:06:43 +01001868 }
Pier Luigib29144d2018-01-15 18:06:43 +01001869 return mcastRoleStore.entrySet().stream()
Pier3e793752018-04-19 16:47:06 +02001870 .collect(Collectors.toMap(entry -> new McastStoreKey(entry.getKey().mcastIp(),
1871 entry.getKey().deviceId(), null), entry -> entry.getValue().value()));
Pier Luigib29144d2018-01-15 18:06:43 +01001872 }
1873
Pierb1fe7382018-04-17 17:25:22 +02001874 /**
Pier3e793752018-04-19 16:47:06 +02001875 * Returns the associated roles to the mcast groups.
1876 *
1877 * @param mcastIp the group ip
1878 * @param sourcecp the source connect point
1879 * @return the mapping mcastIp-device to mcast role
1880 */
Charles Chan056e0c12018-05-10 22:19:49 +00001881 public Map<McastRoleStoreKey, McastRole> getMcastRoles(IpAddress mcastIp,
1882 ConnectPoint sourcecp) {
Pier3e793752018-04-19 16:47:06 +02001883 if (mcastIp != null) {
1884 Map<McastRoleStoreKey, McastRole> roles = mcastRoleStore.entrySet().stream()
1885 .filter(mcastEntry -> mcastIp.equals(mcastEntry.getKey().mcastIp()))
1886 .collect(Collectors.toMap(entry -> new McastRoleStoreKey(entry.getKey().mcastIp(),
1887 entry.getKey().deviceId(), entry.getKey().source()), entry -> entry.getValue().value()));
1888 if (sourcecp != null) {
1889 roles = roles.entrySet().stream()
1890 .filter(mcastEntry -> sourcecp.equals(mcastEntry.getKey().source()))
1891 .collect(Collectors.toMap(entry -> new McastRoleStoreKey(entry.getKey().mcastIp(),
1892 entry.getKey().deviceId(), entry.getKey().source()), Entry::getValue));
1893 }
1894 return roles;
1895 }
1896 return mcastRoleStore.entrySet().stream()
1897 .collect(Collectors.toMap(entry -> new McastRoleStoreKey(entry.getKey().mcastIp(),
1898 entry.getKey().deviceId(), entry.getKey().source()), entry -> entry.getValue().value()));
1899 }
1900
1901
1902 /**
Pierb1fe7382018-04-17 17:25:22 +02001903 * Returns the associated paths to the mcast group.
1904 *
1905 * @param mcastIp the group ip
1906 * @return the mapping egress point to mcast path
1907 *
1908 * @deprecated in 1.12 ("Magpie") release.
1909 */
1910 @Deprecated
Pier Luigib29144d2018-01-15 18:06:43 +01001911 public Map<ConnectPoint, List<ConnectPoint>> getMcastPaths(IpAddress mcastIp) {
1912 Map<ConnectPoint, List<ConnectPoint>> mcastPaths = Maps.newHashMap();
Pierb0328e42018-03-27 11:29:42 -07001913 ConnectPoint source = mcastUtils.getSource(mcastIp);
Pier Luigib29144d2018-01-15 18:06:43 +01001914 if (source != null) {
Pier Luigib29144d2018-01-15 18:06:43 +01001915 Set<DeviceId> visited = Sets.newHashSet();
Pier3e793752018-04-19 16:47:06 +02001916 List<ConnectPoint> currentPath = Lists.newArrayList(source);
Charles Chand5814aa2018-08-19 19:21:46 -07001917 mcastUtils.buildMcastPaths(mcastNextObjStore.asJavaMap(), source.deviceId(), visited, mcastPaths,
1918 currentPath, mcastIp, source);
Pier Luigib29144d2018-01-15 18:06:43 +01001919 }
1920 return mcastPaths;
1921 }
1922
Pierb1fe7382018-04-17 17:25:22 +02001923 /**
1924 * Returns the associated trees to the mcast group.
1925 *
1926 * @param mcastIp the group ip
1927 * @param sourcecp the source connect point
1928 * @return the mapping egress point to mcast path
1929 */
Charles Chan056e0c12018-05-10 22:19:49 +00001930 public Multimap<ConnectPoint, List<ConnectPoint>> getMcastTrees(IpAddress mcastIp,
1931 ConnectPoint sourcecp) {
Pierb1fe7382018-04-17 17:25:22 +02001932 Multimap<ConnectPoint, List<ConnectPoint>> mcastTrees = HashMultimap.create();
Pierb1fe7382018-04-17 17:25:22 +02001933 Set<ConnectPoint> sources = mcastUtils.getSources(mcastIp);
Pierb1fe7382018-04-17 17:25:22 +02001934 if (sourcecp != null) {
1935 sources = sources.stream()
Pier3e793752018-04-19 16:47:06 +02001936 .filter(source -> source.equals(sourcecp)).collect(Collectors.toSet());
Pierb1fe7382018-04-17 17:25:22 +02001937 }
Pierb1fe7382018-04-17 17:25:22 +02001938 if (!sources.isEmpty()) {
1939 sources.forEach(source -> {
Pierb1fe7382018-04-17 17:25:22 +02001940 Map<ConnectPoint, List<ConnectPoint>> mcastPaths = Maps.newHashMap();
1941 Set<DeviceId> visited = Sets.newHashSet();
1942 List<ConnectPoint> currentPath = Lists.newArrayList(source);
Charles Chand5814aa2018-08-19 19:21:46 -07001943 mcastUtils.buildMcastPaths(mcastNextObjStore.asJavaMap(), source.deviceId(), visited, mcastPaths,
1944 currentPath, mcastIp, source);
Pierb1fe7382018-04-17 17:25:22 +02001945 mcastPaths.forEach(mcastTrees::put);
1946 });
1947 }
1948 return mcastTrees;
1949 }
1950
1951 /**
Pier96f63cb2018-04-17 16:29:56 +02001952 * Return the leaders of the mcast groups.
1953 *
1954 * @param mcastIp the group ip
1955 * @return the mapping group-node
1956 */
1957 public Map<IpAddress, NodeId> getMcastLeaders(IpAddress mcastIp) {
1958 return mcastUtils.getMcastLeaders(mcastIp);
1959 }
Charles Chand55e84d2016-03-30 17:54:24 -07001960}