blob: f5247afda135d7efb4a5545c207f6862d9b961ac [file] [log] [blame]
Charles Chanc91c8782016-03-30 17:54:24 -07001/*
Pier Luigi69f774d2018-02-28 12:10:50 +01002 * Copyright 2018-present Open Networking Foundation
Charles Chanc91c8782016-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 Luigi69f774d2018-02-28 12:10:50 +010017package org.onosproject.segmentrouting.mcast;
Charles Chanc91c8782016-03-30 17:54:24 -070018
Piere99511d2018-04-19 16:47:06 +020019import com.google.common.base.Objects;
Pier Luigid29ca7c2018-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;
Pier71c55772018-04-17 17:25:22 +020024import com.google.common.collect.HashMultimap;
Pier7b657162018-03-27 11:29:42 -070025import com.google.common.collect.ImmutableList;
Charles Chanc91c8782016-03-30 17:54:24 -070026import com.google.common.collect.ImmutableSet;
27import com.google.common.collect.Lists;
Pier Luigi91573e12018-01-23 16:06:38 +010028import com.google.common.collect.Maps;
Pier71c55772018-04-17 17:25:22 +020029import com.google.common.collect.Multimap;
Charles Chanc91c8782016-03-30 17:54:24 -070030import com.google.common.collect.Sets;
Charles Chanc91c8782016-03-30 17:54:24 -070031import org.onlab.packet.IpAddress;
Charles Chanc91c8782016-03-30 17:54:24 -070032import org.onlab.packet.VlanId;
33import org.onlab.util.KryoNamespace;
Pierdb27b8d2018-04-17 16:29:56 +020034import org.onosproject.cluster.NodeId;
Charles Chanc91c8782016-03-30 17:54:24 -070035import org.onosproject.core.ApplicationId;
36import org.onosproject.core.CoreService;
Pier1f87aca2018-03-14 16:47:32 -070037import org.onosproject.mcast.api.McastEvent;
38import org.onosproject.mcast.api.McastRoute;
Pier7b657162018-03-27 11:29:42 -070039import org.onosproject.mcast.api.McastRouteData;
Pier1f87aca2018-03-14 16:47:32 -070040import org.onosproject.mcast.api.McastRouteUpdate;
Charles Chanba59dd62018-05-10 22:19:49 +000041import org.onosproject.net.HostId;
Charles Chanc91c8782016-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 Chan72779502016-04-23 17:36:10 -070047import org.onosproject.net.flowobjective.DefaultObjectiveContext;
Charles Chanc91c8782016-03-30 17:54:24 -070048import org.onosproject.net.flowobjective.ForwardingObjective;
49import org.onosproject.net.flowobjective.NextObjective;
Charles Chan72779502016-04-23 17:36:10 -070050import org.onosproject.net.flowobjective.ObjectiveContext;
Pier1f87aca2018-03-14 16:47:32 -070051import org.onosproject.net.topology.LinkWeigher;
Pier Luigid8a15162018-02-15 16:33:08 +010052import org.onosproject.net.topology.Topology;
Charles Chanc91c8782016-03-30 17:54:24 -070053import org.onosproject.net.topology.TopologyService;
Pier1f87aca2018-03-14 16:47:32 -070054import org.onosproject.segmentrouting.SRLinkWeigher;
Pier Luigi69f774d2018-02-28 12:10:50 +010055import org.onosproject.segmentrouting.SegmentRoutingManager;
Charles Chanc91c8782016-03-30 17:54:24 -070056import org.onosproject.store.serializers.KryoNamespaces;
57import org.onosproject.store.service.ConsistentMap;
58import org.onosproject.store.service.Serializer;
Andrea Campanella5b4cd652018-06-05 14:19:21 +020059import org.onosproject.store.service.Versioned;
Charles Chanc91c8782016-03-30 17:54:24 -070060import org.slf4j.Logger;
61import org.slf4j.LoggerFactory;
62
Pier Luigi35dab3f2018-01-25 16:16:02 +010063import java.time.Instant;
Charles Chanc91c8782016-03-30 17:54:24 -070064import java.util.Collection;
65import java.util.Collections;
Pier Luigi91573e12018-01-23 16:06:38 +010066import java.util.Comparator;
Charles Chanc91c8782016-03-30 17:54:24 -070067import java.util.List;
Charles Chan72779502016-04-23 17:36:10 -070068import java.util.Map;
Pier1f87aca2018-03-14 16:47:32 -070069import java.util.Map.Entry;
Charles Chanc91c8782016-03-30 17:54:24 -070070import java.util.Optional;
71import java.util.Set;
Pier Luigi35dab3f2018-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 Chan72779502016-04-23 17:36:10 -070076import java.util.stream.Collectors;
77
Pier Luigi35dab3f2018-01-25 16:16:02 +010078import static java.util.concurrent.Executors.newScheduledThreadPool;
79import static org.onlab.util.Tools.groupedThreads;
Charles Chanba59dd62018-05-10 22:19:49 +000080
Pierdb27b8d2018-04-17 16:29:56 +020081import static org.onosproject.mcast.api.McastEvent.Type.ROUTE_ADDED;
Pier7b657162018-03-27 11:29:42 -070082import static org.onosproject.mcast.api.McastEvent.Type.ROUTE_REMOVED;
Andrea Campanellaef30d7a2018-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 Chanba59dd62018-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
Pier979e61a2018-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 Chanc91c8782016-03-30 17:54:24 -070091
92/**
Pier Luigi69f774d2018-02-28 12:10:50 +010093 * Handles Multicast related events.
Charles Chanc91c8782016-03-30 17:54:24 -070094 */
Charles Chan1eaf4802016-04-18 13:44:03 -070095public class McastHandler {
96 private static final Logger log = LoggerFactory.getLogger(McastHandler.class);
Charles Chanc91c8782016-03-30 17:54:24 -070097 private final SegmentRoutingManager srManager;
Charles Chan82f19972016-05-17 13:13:55 -070098 private final TopologyService topologyService;
Pierdb27b8d2018-04-17 16:29:56 +020099 private final McastUtils mcastUtils;
Charles Chan72779502016-04-23 17:36:10 -0700100 private final ConsistentMap<McastStoreKey, NextObjective> mcastNextObjStore;
Piere99511d2018-04-19 16:47:06 +0200101 private final ConsistentMap<McastRoleStoreKey, McastRole> mcastRoleStore;
Charles Chan72779502016-04-23 17:36:10 -0700102
Pier Luigid29ca7c2018-02-28 17:24:03 +0100103 // Wait time for the cache
104 private static final int WAIT_TIME_MS = 1000;
Pier7b657162018-03-27 11:29:42 -0700105
Piere99511d2018-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 Luigid29ca7c2018-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 Luigid29ca7c2018-02-28 17:24:03 +0100111 IpAddress mcastIp = notification.getKey().mcastIp();
Pier7b657162018-03-27 11:29:42 -0700112 HostId sink = notification.getKey().sinkHost();
Pier Luigid29ca7c2018-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);
Piere99511d2018-04-19 16:47:06 +0200117 // If it expires or it has been replaced, we deque the event - no when evicted
Pier Luigid29ca7c2018-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) {
Pier1f87aca2018-03-14 16:47:32 -0700129 final McastRouteUpdate mcastRouteUpdate = mcastEvent.subject();
Pier7b657162018-03-27 11:29:42 -0700130 final McastRouteUpdate mcastRoutePrevUpdate = mcastEvent.prevSubject();
131 final IpAddress group = mcastRoutePrevUpdate.route().group();
Pier7b657162018-03-27 11:29:42 -0700132 ImmutableSet.Builder<HostId> sinksBuilder = ImmutableSet.builder();
Pier1f87aca2018-03-14 16:47:32 -0700133 if (mcastEvent.type() == SOURCES_ADDED ||
134 mcastEvent.type() == SOURCES_REMOVED) {
Piere99511d2018-04-19 16:47:06 +0200135 // Current subject and prev just differ for the source connect points
136 sinksBuilder.addAll(mcastRouteUpdate.sinks().keySet());
Pier7b657162018-03-27 11:29:42 -0700137 } else if (mcastEvent.type() == SINKS_ADDED) {
Pier7b657162018-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);
Pier1f87aca2018-03-14 16:47:32 -0700145 }
Pier7b657162018-03-27 11:29:42 -0700146 }));
147 } else if (mcastEvent.type() == SINKS_REMOVED) {
Pier7b657162018-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 Luigid29ca7c2018-02-28 17:24:03 +0100160 }
Pier Luigid29ca7c2018-02-28 17:24:03 +0100161 sinksBuilder.build().forEach(sink -> {
Pier1f87aca2018-03-14 16:47:32 -0700162 McastCacheKey cacheKey = new McastCacheKey(group, sink);
Pier Luigid29ca7c2018-02-28 17:24:03 +0100163 mcastEventCache.put(cacheKey, mcastEvent);
164 });
165 }
166
167 private void dequeueMcastEvent(McastEvent mcastEvent) {
Pier7b657162018-03-27 11:29:42 -0700168 final McastRouteUpdate mcastUpdate = mcastEvent.subject();
169 final McastRouteUpdate mcastPrevUpdate = mcastEvent.prevSubject();
Pier7b657162018-03-27 11:29:42 -0700170 IpAddress mcastIp = mcastPrevUpdate.route().group();
Pier7b657162018-03-27 11:29:42 -0700171 Set<ConnectPoint> prevSinks = mcastPrevUpdate.sinks()
Piere99511d2018-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 Luigid29ca7c2018-02-28 17:24:03 +0100176 switch (mcastEvent.type()) {
Pier1f87aca2018-03-14 16:47:32 -0700177 case SOURCES_ADDED:
Piere99511d2018-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 Luigid29ca7c2018-02-28 17:24:03 +0100182 break;
Pier1f87aca2018-03-14 16:47:32 -0700183 case SOURCES_REMOVED:
Piere99511d2018-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 Luigid29ca7c2018-02-28 17:24:03 +0100188 break;
189 case ROUTE_REMOVED:
Piere99511d2018-04-19 16:47:06 +0200190 processRouteRemovedInternal(prevSources, mcastIp);
Pier Luigid29ca7c2018-02-28 17:24:03 +0100191 break;
Pier1f87aca2018-03-14 16:47:32 -0700192 case SINKS_ADDED:
Piere99511d2018-04-19 16:47:06 +0200193 processSinksAddedInternal(prevSources, mcastIp, mcastUpdate.sinks(), prevSinks);
Pier Luigid29ca7c2018-02-28 17:24:03 +0100194 break;
Pier1f87aca2018-03-14 16:47:32 -0700195 case SINKS_REMOVED:
Piere99511d2018-04-19 16:47:06 +0200196 processSinksRemovedInternal(prevSources, mcastIp, mcastUpdate.sinks(), mcastPrevUpdate.sinks());
Pier Luigid29ca7c2018-02-28 17:24:03 +0100197 break;
198 default:
199 break;
200 }
201 }
202
Pier Luigi35dab3f2018-01-25 16:16:02 +0100203 // Mcast lock to serialize local operations
204 private final Lock mcastLock = new ReentrantLock();
Pier Luigi35dab3f2018-01-25 16:16:02 +0100205 private void mcastLock() {
206 mcastLock.lock();
207 }
Pier Luigi35dab3f2018-01-25 16:16:02 +0100208 private void mcastUnlock() {
209 mcastLock.unlock();
210 }
Pier Luigi35dab3f2018-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 Das97241862018-02-14 14:14:54 -0800226 log.trace("Mcast stable since {}s", now - last);
Pier Luigi35dab3f2018-01-25 16:16:02 +0100227 return (now - last) > MCAST_STABLITY_THRESHOLD;
228 }
229
Piere99511d2018-04-19 16:47:06 +0200230 // Verify interval for Mcast bucket corrector
Pier Luigi35dab3f2018-01-25 16:16:02 +0100231 private static final long MCAST_VERIFY_INTERVAL = 30;
Piere99511d2018-04-19 16:47:06 +0200232 // Executor for mcast bucket corrector and for cache
Pier Luigi35dab3f2018-01-25 16:16:02 +0100233 private ScheduledExecutorService executorService
Pier Luigid29ca7c2018-02-28 17:24:03 +0100234 = newScheduledThreadPool(1, groupedThreads("mcastWorker", "mcastWorker-%d", log));
Pier Luigi35dab3f2018-01-25 16:16:02 +0100235
Charles Chan72779502016-04-23 17:36:10 -0700236 /**
Charles Chanc91c8782016-03-30 17:54:24 -0700237 * Constructs the McastEventHandler.
238 *
239 * @param srManager Segment Routing manager
240 */
Charles Chan1eaf4802016-04-18 13:44:03 -0700241 public McastHandler(SegmentRoutingManager srManager) {
Pier7b657162018-03-27 11:29:42 -0700242 ApplicationId coreAppId = srManager.coreService.getAppId(CoreService.CORE_APP_NAME);
Charles Chanc91c8782016-03-30 17:54:24 -0700243 this.srManager = srManager;
Charles Chanc91c8782016-03-30 17:54:24 -0700244 this.topologyService = srManager.topologyService;
Pier7b657162018-03-27 11:29:42 -0700245 KryoNamespace.Builder mcastKryo = new KryoNamespace.Builder()
Charles Chanc91c8782016-03-30 17:54:24 -0700246 .register(KryoNamespaces.API)
Piere99511d2018-04-19 16:47:06 +0200247 .register(new McastStoreKeySerializer(), McastStoreKey.class);
Pier7b657162018-03-27 11:29:42 -0700248 mcastNextObjStore = srManager.storageService
Charles Chan72779502016-04-23 17:36:10 -0700249 .<McastStoreKey, NextObjective>consistentMapBuilder()
Charles Chanc91c8782016-03-30 17:54:24 -0700250 .withName("onos-mcast-nextobj-store")
Charles Chan4922a172016-05-23 16:45:45 -0700251 .withSerializer(Serializer.using(mcastKryo.build("McastHandler-NextObj")))
Charles Chanc91c8782016-03-30 17:54:24 -0700252 .build();
Piere99511d2018-04-19 16:47:06 +0200253 mcastKryo = new KryoNamespace.Builder()
254 .register(KryoNamespaces.API)
255 .register(new McastRoleStoreKeySerializer(), McastRoleStoreKey.class)
256 .register(McastRole.class);
Pier7b657162018-03-27 11:29:42 -0700257 mcastRoleStore = srManager.storageService
Piere99511d2018-04-19 16:47:06 +0200258 .<McastRoleStoreKey, McastRole>consistentMapBuilder()
Charles Chan72779502016-04-23 17:36:10 -0700259 .withName("onos-mcast-role-store")
Charles Chan4922a172016-05-23 16:45:45 -0700260 .withSerializer(Serializer.using(mcastKryo.build("McastHandler-Role")))
Charles Chan72779502016-04-23 17:36:10 -0700261 .build();
Pier7b657162018-03-27 11:29:42 -0700262 mcastUtils = new McastUtils(srManager, coreAppId, log);
Piere99511d2018-04-19 16:47:06 +0200263 // Init the executor service, the buckets corrector and schedule the clean up
Pier Luigi35dab3f2018-01-25 16:16:02 +0100264 executorService.scheduleWithFixedDelay(new McastBucketCorrector(), 10,
Pier7b657162018-03-27 11:29:42 -0700265 MCAST_VERIFY_INTERVAL, TimeUnit.SECONDS);
Pier Luigid29ca7c2018-02-28 17:24:03 +0100266 executorService.scheduleAtFixedRate(mcastEventCache::cleanUp, 0,
267 WAIT_TIME_MS, TimeUnit.MILLISECONDS);
Charles Chan72779502016-04-23 17:36:10 -0700268 }
269
270 /**
Piere99511d2018-04-19 16:47:06 +0200271 * Read initial multicast configuration from mcast store.
Charles Chan72779502016-04-23 17:36:10 -0700272 */
Pier Luigi69f774d2018-02-28 12:10:50 +0100273 public void init() {
Pier7b657162018-03-27 11:29:42 -0700274 lastMcastChange = Instant.now();
275 mcastLock();
276 try {
277 srManager.multicastRouteService.getRoutes().forEach(mcastRoute -> {
Piere99511d2018-04-19 16:47:06 +0200278 log.debug("Init group {}", mcastRoute.group());
Pierdb27b8d2018-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 }
Pier7b657162018-03-27 11:29:42 -0700283 McastRouteData mcastRouteData = srManager.multicastRouteService.routeData(mcastRoute);
Piere99511d2018-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 Chan0b1dd7e2018-08-19 19:21:46 -0700289 mcastUtils.buildMcastPaths(mcastNextObjStore.asJavaMap(), source.deviceId(), visited, mcastPaths,
Piere99511d2018-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 });
Pier7b657162018-03-27 11:29:42 -0700308 });
309 } finally {
310 mcastUnlock();
311 }
Charles Chanc91c8782016-03-30 17:54:24 -0700312 }
313
314 /**
Pier Luigi35dab3f2018-01-25 16:16:02 +0100315 * Clean up when deactivating the application.
316 */
Pier Luigi69f774d2018-02-28 12:10:50 +0100317 public void terminate() {
Pier72d0e582018-04-20 14:14:34 +0200318 mcastEventCache.invalidateAll();
Pier Luigi35dab3f2018-01-25 16:16:02 +0100319 executorService.shutdown();
Pier72d0e582018-04-20 14:14:34 +0200320 mcastNextObjStore.destroy();
321 mcastRoleStore.destroy();
322 mcastUtils.terminate();
323 log.info("Terminated");
Pier Luigi35dab3f2018-01-25 16:16:02 +0100324 }
325
326 /**
Pier Luigid29ca7c2018-02-28 17:24:03 +0100327 * Processes the SOURCE_ADDED, SOURCE_UPDATED, SINK_ADDED,
Piere99511d2018-04-19 16:47:06 +0200328 * SINK_REMOVED, ROUTE_ADDED and ROUTE_REMOVED events.
Charles Chanc91c8782016-03-30 17:54:24 -0700329 *
330 * @param event McastEvent with SOURCE_ADDED type
331 */
Pier Luigid29ca7c2018-02-28 17:24:03 +0100332 public void processMcastEvent(McastEvent event) {
Charles Chanba59dd62018-05-10 22:19:49 +0000333 log.info("process {}", event);
Pierdb27b8d2018-04-17 16:29:56 +0200334 // If it is a route added, we do not enqueue
335 if (event.type() == ROUTE_ADDED) {
Pierdb27b8d2018-04-17 16:29:56 +0200336 processRouteAddedInternal(event.subject().route().group());
337 } else {
Pierdb27b8d2018-04-17 16:29:56 +0200338 enqueueMcastEvent(event);
339 }
Pier Luigi6786b922018-02-02 16:19:11 +0100340 }
341
342 /**
Piere99511d2018-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 /**
Pierdb27b8d2018-04-17 16:29:56 +0200495 * Process the ROUTE_ADDED event.
Pier Luigie80d6b42018-02-26 12:31:38 +0100496 *
Pierdb27b8d2018-04-17 16:29:56 +0200497 * @param mcastIp the group address
Pier Luigie80d6b42018-02-26 12:31:38 +0100498 */
Pierdb27b8d2018-04-17 16:29:56 +0200499 private void processRouteAddedInternal(IpAddress mcastIp) {
Pier Luigie80d6b42018-02-26 12:31:38 +0100500 lastMcastChange = Instant.now();
501 mcastLock();
502 try {
Pierdb27b8d2018-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 Luigie80d6b42018-02-26 12:31:38 +0100506 } finally {
507 mcastUnlock();
508 }
509 }
510
511 /**
Pier Luigi6786b922018-02-02 16:19:11 +0100512 * Removes the entire mcast tree related to this group.
Piere99511d2018-04-19 16:47:06 +0200513 * @param sources the source connect points
Pier Luigi6786b922018-02-02 16:19:11 +0100514 * @param mcastIp multicast group IP address
515 */
Piere99511d2018-04-19 16:47:06 +0200516 private void processRouteRemovedInternal(Set<ConnectPoint> sources, IpAddress mcastIp) {
Pier Luigi6786b922018-02-02 16:19:11 +0100517 lastMcastChange = Instant.now();
518 mcastLock();
519 try {
Pier Luigie80d6b42018-02-26 12:31:38 +0100520 log.debug("Processing route removed for group {}", mcastIp);
Pierdb27b8d2018-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 }
Piere99511d2018-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 Luigi6786b922018-02-02 16:19:11 +0100552 } finally {
553 mcastUnlock();
554 }
555 }
556
Pier7b657162018-03-27 11:29:42 -0700557 /**
558 * Process sinks to be removed.
559 *
Piere99511d2018-04-19 16:47:06 +0200560 * @param sources the source connect points
Pier7b657162018-03-27 11:29:42 -0700561 * @param mcastIp the ip address of the group
562 * @param newSinks the new sinks to be processed
Pier28164682018-04-17 15:50:43 +0200563 * @param prevSinks the previous sinks
Pier7b657162018-03-27 11:29:42 -0700564 */
Piere99511d2018-04-19 16:47:06 +0200565 private void processSinksRemovedInternal(Set<ConnectPoint> sources, IpAddress mcastIp,
Pier7b657162018-03-27 11:29:42 -0700566 Map<HostId, Set<ConnectPoint>> newSinks,
Pier28164682018-04-17 15:50:43 +0200567 Map<HostId, Set<ConnectPoint>> prevSinks) {
Pier7b657162018-03-27 11:29:42 -0700568 lastMcastChange = Instant.now();
569 mcastLock();
Pier7b657162018-03-27 11:29:42 -0700570 try {
Pierdb27b8d2018-04-17 16:29:56 +0200571 if (!mcastUtils.isLeader(mcastIp)) {
572 log.debug("Skip {} due to lack of leadership", mcastIp);
573 return;
574 }
Piere99511d2018-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)));
Pier7b657162018-03-27 11:29:42 -0700599 } finally {
600 mcastUnlock();
Pier7b657162018-03-27 11:29:42 -0700601 }
602 }
603
Pier Luigi6786b922018-02-02 16:19:11 +0100604 /**
Pier Luigi35dab3f2018-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
Piere99511d2018-04-19 16:47:06 +0200610 * @param mcastPath path associated to the sink
Pier Luigi35dab3f2018-01-25 16:16:02 +0100611 */
612 private void processSinkRemovedInternal(ConnectPoint source, ConnectPoint sink,
Piere99511d2018-04-19 16:47:06 +0200613 IpAddress mcastIp, Optional<Path> mcastPath) {
Pier Luigi35dab3f2018-01-25 16:16:02 +0100614 lastMcastChange = Instant.now();
615 mcastLock();
616 try {
Piere99511d2018-04-19 16:47:06 +0200617 log.debug("Processing sink removed {} for group {} and for source {}", sink, mcastIp, source);
Pier7b657162018-03-27 11:29:42 -0700618 boolean isLast;
Pier Luigi35dab3f2018-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())) {
Piere99511d2018-04-19 16:47:06 +0200623 log.warn("Skip {} since sink {} is on the same port of source {}. Abort", mcastIp, sink, source);
Pier Luigi35dab3f2018-01-25 16:16:02 +0100624 return;
625 }
Pier7b657162018-03-27 11:29:42 -0700626 isLast = removePortFromDevice(sink.deviceId(), sink.port(), mcastIp, mcastUtils.assignedVlan(source));
Pier Luigi92e69be2018-03-02 12:53:37 +0100627 if (isLast) {
Piere99511d2018-04-19 16:47:06 +0200628 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, sink.deviceId(), source));
Pier Luigi92e69be2018-03-02 12:53:37 +0100629 }
Pier Luigi35dab3f2018-01-25 16:16:02 +0100630 return;
631 }
Pier Luigi35dab3f2018-01-25 16:16:02 +0100632 // Process the egress device
Pier7b657162018-03-27 11:29:42 -0700633 isLast = removePortFromDevice(sink.deviceId(), sink.port(), mcastIp, mcastUtils.assignedVlan(null));
Pier Luigi35dab3f2018-01-25 16:16:02 +0100634 if (isLast) {
Piere99511d2018-04-19 16:47:06 +0200635 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, sink.deviceId(), source));
Pier Luigi35dab3f2018-01-25 16:16:02 +0100636 }
Pier Luigi35dab3f2018-01-25 16:16:02 +0100637 // If this is the last sink on the device, also update upstream
Pier Luigi35dab3f2018-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) {
Piere99511d2018-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 Luigi92e69be2018-03-02 12:53:37 +0100645 if (isLast) {
Piere99511d2018-04-19 16:47:06 +0200646 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, link.src().deviceId(), source));
Pier Luigi92e69be2018-03-02 12:53:37 +0100647 }
Pier Luigi35dab3f2018-01-25 16:16:02 +0100648 }
Charles Chanc91c8782016-03-30 17:54:24 -0700649 }
650 }
Pier Luigi35dab3f2018-01-25 16:16:02 +0100651 } finally {
652 mcastUnlock();
Charles Chanc91c8782016-03-30 17:54:24 -0700653 }
654 }
655
Pier7b657162018-03-27 11:29:42 -0700656
657 /**
658 * Process sinks to be added.
659 *
Piere99511d2018-04-19 16:47:06 +0200660 * @param sources the source connect points
Pier7b657162018-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 */
Piere99511d2018-04-19 16:47:06 +0200665 private void processSinksAddedInternal(Set<ConnectPoint> sources, IpAddress mcastIp,
Pier7b657162018-03-27 11:29:42 -0700666 Map<HostId, Set<ConnectPoint>> newSinks,
667 Set<ConnectPoint> allPrevSinks) {
668 lastMcastChange = Instant.now();
669 mcastLock();
670 try {
Pierdb27b8d2018-04-17 16:29:56 +0200671 if (!mcastUtils.isLeader(mcastIp)) {
672 log.debug("Skip {} due to lack of leadership", mcastIp);
673 return;
674 }
Piere99511d2018-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 });
Pier7b657162018-03-27 11:29:42 -0700681 } finally {
682 mcastUnlock();
683 }
684 }
685
Charles Chanc91c8782016-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,
Pier7b657162018-03-27 11:29:42 -0700694 IpAddress mcastIp, List<Path> allPaths) {
Pier Luigi35dab3f2018-01-25 16:16:02 +0100695 lastMcastChange = Instant.now();
696 mcastLock();
697 try {
Piere99511d2018-04-19 16:47:06 +0200698 log.debug("Processing sink added {} for group {} and for source {}", sink, mcastIp, source);
Pier Luigi35dab3f2018-01-25 16:16:02 +0100699 // Process the ingress device
Pier7b657162018-03-27 11:29:42 -0700700 mcastUtils.addFilterToDevice(source.deviceId(), source.port(),
Piere99511d2018-04-19 16:47:06 +0200701 mcastUtils.assignedVlan(source), mcastIp, INGRESS);
Pier Luigi35dab3f2018-01-25 16:16:02 +0100702 if (source.deviceId().equals(sink.deviceId())) {
Pier Luigi35dab3f2018-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 }
Pier7b657162018-03-27 11:29:42 -0700708 addPortToDevice(sink.deviceId(), sink.port(), mcastIp, mcastUtils.assignedVlan(source));
Piere99511d2018-04-19 16:47:06 +0200709 mcastRoleStore.put(new McastRoleStoreKey(mcastIp, sink.deviceId(), source), INGRESS);
Pier Luigi35dab3f2018-01-25 16:16:02 +0100710 return;
711 }
Pier Luigi35dab3f2018-01-25 16:16:02 +0100712 // Find a path. If present, create/update groups and flows for each hop
Piere99511d2018-04-19 16:47:06 +0200713 Optional<Path> mcastPath = getPath(source.deviceId(), sink.deviceId(), mcastIp, allPaths, source);
Pier Luigi35dab3f2018-01-25 16:16:02 +0100714 if (mcastPath.isPresent()) {
715 List<Link> links = mcastPath.get().links();
Pier1a7e0c02018-03-12 15:00:54 -0700716 // Setup mcast role for ingress
Piere99511d2018-04-19 16:47:06 +0200717 mcastRoleStore.put(new McastRoleStoreKey(mcastIp, source.deviceId(), source), INGRESS);
718 // Setup properly the transit forwarding
Pier Luigi35dab3f2018-01-25 16:16:02 +0100719 links.forEach(link -> {
720 addPortToDevice(link.src().deviceId(), link.src().port(), mcastIp,
Pier7b657162018-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 Luigi35dab3f2018-01-25 16:16:02 +0100725 });
Pier1a7e0c02018-03-12 15:00:54 -0700726 // Setup mcast role for the transit
727 links.stream()
728 .filter(link -> !link.dst().deviceId().equals(sink.deviceId()))
Piere99511d2018-04-19 16:47:06 +0200729 .forEach(link -> mcastRoleStore.put(new McastRoleStoreKey(mcastIp, link.dst().deviceId(),
730 source), TRANSIT));
Pier Luigi35dab3f2018-01-25 16:16:02 +0100731 // Process the egress device
Pier7b657162018-03-27 11:29:42 -0700732 addPortToDevice(sink.deviceId(), sink.port(), mcastIp, mcastUtils.assignedVlan(null));
Pier1a7e0c02018-03-12 15:00:54 -0700733 // Setup mcast role for egress
Piere99511d2018-04-19 16:47:06 +0200734 mcastRoleStore.put(new McastRoleStoreKey(mcastIp, sink.deviceId(), source), EGRESS);
Pier Luigi35dab3f2018-01-25 16:16:02 +0100735 } else {
Piere99511d2018-04-19 16:47:06 +0200736 log.warn("Unable to find a path from {} to {}. Abort sinkAdded", source.deviceId(), sink.deviceId());
Pier Luigi35dab3f2018-01-25 16:16:02 +0100737 }
738 } finally {
739 mcastUnlock();
Charles Chanc91c8782016-03-30 17:54:24 -0700740 }
741 }
742
743 /**
Charles Chan72779502016-04-23 17:36:10 -0700744 * Processes the LINK_DOWN event.
745 *
746 * @param affectedLink Link that is going down
747 */
Pier Luigi69f774d2018-02-28 12:10:50 +0100748 public void processLinkDown(Link affectedLink) {
Pier Luigi35dab3f2018-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 -> {
Piere99511d2018-04-19 16:47:06 +0200754 log.debug("Processing link down {} for group {}", affectedLink, mcastIp);
755 recoverFailure(mcastIp, affectedLink);
Charles Chan72779502016-04-23 17:36:10 -0700756 });
Pier Luigi35dab3f2018-01-25 16:16:02 +0100757 } finally {
758 mcastUnlock();
759 }
Charles Chan72779502016-04-23 17:36:10 -0700760 }
761
762 /**
Pier Luigi580fd8a2018-01-16 10:47:50 +0100763 * Process the DEVICE_DOWN event.
764 *
765 * @param deviceDown device going down
766 */
Pier Luigi69f774d2018-02-28 12:10:50 +0100767 public void processDeviceDown(DeviceId deviceDown) {
Pier Luigi35dab3f2018-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 -> {
Piere99511d2018-04-19 16:47:06 +0200773 log.debug("Processing device down {} for group {}", deviceDown, mcastIp);
774 recoverFailure(mcastIp, deviceDown);
Pier Luigi35dab3f2018-01-25 16:16:02 +0100775 });
776 } finally {
777 mcastUnlock();
778 }
Pier Luigi580fd8a2018-01-16 10:47:50 +0100779 }
780
781 /**
Piere99511d2018-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 Chanba59dd62018-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 }
Piere99511d2018-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 /**
Pier7b657162018-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
Pier7b657162018-03-27 11:29:42 -0700883 */
884 private void recoverSinks(Set<DeviceId> egressDevices, Set<DeviceId> notRecovered,
Piere99511d2018-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);
Pier7b657162018-03-27 11:29:42 -0700888 Set<DeviceId> recovered = Sets.difference(egressDevices, notRecovered);
Pier7b657162018-03-27 11:29:42 -0700889 Set<ConnectPoint> totalAffectedSinks = Sets.newHashSet();
Pier7b657162018-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 Chanba59dd62018-05-10 22:19:49 +0000894 mcastUtils.getAffectedSinks(deviceId, mcastIp).values().stream()
895 .flatMap(Collection::stream)
Pier7b657162018-03-27 11:29:42 -0700896 .filter(connectPoint -> connectPoint.deviceId().equals(deviceId))
Charles Chanba59dd62018-05-10 22:19:49 +0000897 .collect(Collectors.toSet())
898 );
Pier7b657162018-03-27 11:29:42 -0700899 totalSinks.addAll(
Piere99511d2018-04-19 16:47:06 +0200900 mcastUtils.getAffectedSinks(deviceId, mcastIp).values().stream()
Charles Chanba59dd62018-05-10 22:19:49 +0000901 .flatMap(Collection::stream).collect(Collectors.toSet())
902 );
Pier7b657162018-03-27 11:29:42 -0700903 });
Pier7b657162018-03-27 11:29:42 -0700904 Set<ConnectPoint> sinksToBeAdded = Sets.difference(totalSinks, totalAffectedSinks);
Piere99511d2018-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);
Pier7b657162018-03-27 11:29:42 -0700912 // if the source was originally in the new locations, add new sinks
Piere99511d2018-04-19 16:47:06 +0200913 if (copyNewEgressDevices.contains(ingressDevice)) {
Pier7b657162018-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 }
Pier7b657162018-03-27 11:29:42 -0700918 // Construct a new path for each egress device
919 mcastTree.forEach((egressDevice, paths) -> {
Piere99511d2018-04-19 16:47:06 +0200920 Optional<Path> mcastPath = getPath(ingressDevice, egressDevice, mcastIp, paths, source);
Pier7b657162018-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 }
Pier7b657162018-03-27 11:29:42 -0700931 }
932 });
Pier7b657162018-03-27 11:29:42 -0700933 }
934
935 /**
Pier28164682018-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
Piere99511d2018-04-19 16:47:06 +0200942 * @param source the source connect point
Pier28164682018-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,
Piere99511d2018-04-19 16:47:06 +0200947 Map<HostId, Set<ConnectPoint>> newSinks,
948 ConnectPoint source) {
Pier28164682018-04-17 15:50:43 +0200949 final Set<ConnectPoint> sinksToBeProcessed = Sets.newHashSet();
950 prevsinks.forEach(((hostId, connectPoints) -> {
Shekhar Aryan27bbe2a2019-06-20 14:03:07 +0000951 if (Objects.equal(HostId.NONE, hostId)) {
Esin Karamanf1f46e32019-03-05 13:49:02 +0000952 //in this case connect points are single homed sinks.
953 //just found the difference btw previous and new sinks for this source.
954 Set<ConnectPoint> difference = Sets.difference(connectPoints, newSinks.get(hostId));
955 sinksToBeProcessed.addAll(difference);
956 return;
957 }
Pier28164682018-04-17 15:50:43 +0200958 // We have to check with the existing flows
959 ConnectPoint sinkToBeProcessed = connectPoints.stream()
Piere99511d2018-04-19 16:47:06 +0200960 .filter(connectPoint -> isSinkForSource(mcastIp, connectPoint, source))
Pier28164682018-04-17 15:50:43 +0200961 .findFirst().orElse(null);
962 if (sinkToBeProcessed != null) {
963 // If the host has been removed or location has been removed
964 if (!newSinks.containsKey(hostId) ||
965 !newSinks.get(hostId).contains(sinkToBeProcessed)) {
966 sinksToBeProcessed.add(sinkToBeProcessed);
967 }
968 }
969 }));
970 // We have done, return the set
971 return sinksToBeProcessed;
972 }
973
974 /**
Pier7b657162018-03-27 11:29:42 -0700975 * Process new locations and return the set of sinks to be added
976 * in the context of the recovery.
977 *
Pier28164682018-04-17 15:50:43 +0200978 * @param newSinks the remaining sinks
979 * @param prevSinks the previous sinks
Piere99511d2018-04-19 16:47:06 +0200980 * @param source the source connect point
Pier7b657162018-03-27 11:29:42 -0700981 * @return the set of the sinks to be processed
982 */
Charles Chanba59dd62018-05-10 22:19:49 +0000983 private Set<ConnectPoint> processSinksToBeRecovered(IpAddress mcastIp,
984 Map<HostId, Set<ConnectPoint>> newSinks,
Piere99511d2018-04-19 16:47:06 +0200985 Map<HostId, Set<ConnectPoint>> prevSinks,
986 ConnectPoint source) {
Pier7b657162018-03-27 11:29:42 -0700987 final Set<ConnectPoint> sinksToBeProcessed = Sets.newHashSet();
Pier28164682018-04-17 15:50:43 +0200988 newSinks.forEach((hostId, connectPoints) -> {
Pier7b657162018-03-27 11:29:42 -0700989 // If it has more than 1 locations
990 if (connectPoints.size() > 1 || connectPoints.size() == 0) {
991 log.debug("Skip {} since sink {} has {} locations",
992 mcastIp, hostId, connectPoints.size());
993 return;
994 }
Pier28164682018-04-17 15:50:43 +0200995 // If previously it had two locations, we need to recover it
996 // Filter out if the remaining location is already served
997 if (prevSinks.containsKey(hostId) && prevSinks.get(hostId).size() == 2) {
Pier665b0fc2018-04-19 15:53:20 +0200998 ConnectPoint sinkToBeProcessed = connectPoints.stream()
Piere99511d2018-04-19 16:47:06 +0200999 .filter(connectPoint -> !isSinkForSource(mcastIp, connectPoint, source))
Pier665b0fc2018-04-19 15:53:20 +02001000 .findFirst().orElse(null);
1001 if (sinkToBeProcessed != null) {
1002 sinksToBeProcessed.add(sinkToBeProcessed);
1003 }
Pier28164682018-04-17 15:50:43 +02001004 }
Pier7b657162018-03-27 11:29:42 -07001005 });
1006 return sinksToBeProcessed;
1007 }
1008
1009 /**
1010 * Process all the sinks related to a mcast group and return
1011 * the ones to be processed.
1012 *
1013 * @param source the source connect point
1014 * @param mcastIp the group address
1015 * @param sinks the sinks to be evaluated
1016 * @return the set of the sinks to be processed
1017 */
1018 private Set<ConnectPoint> processSinksToBeAdded(ConnectPoint source, IpAddress mcastIp,
1019 Map<HostId, Set<ConnectPoint>> sinks) {
Pier7b657162018-03-27 11:29:42 -07001020 final Set<ConnectPoint> sinksToBeProcessed = Sets.newHashSet();
1021 sinks.forEach(((hostId, connectPoints) -> {
Esin Karamanf1f46e32019-03-05 13:49:02 +00001022 //add all connect points that are not tied with any host
Shekhar Aryan27bbe2a2019-06-20 14:03:07 +00001023 if (Objects.equal(HostId.NONE, hostId)) {
Esin Karamanf1f46e32019-03-05 13:49:02 +00001024 sinksToBeProcessed.addAll(connectPoints);
1025 return;
1026 }
Pier7b657162018-03-27 11:29:42 -07001027 // If it has more than 2 locations
1028 if (connectPoints.size() > 2 || connectPoints.size() == 0) {
1029 log.debug("Skip {} since sink {} has {} locations",
1030 mcastIp, hostId, connectPoints.size());
1031 return;
1032 }
1033 // If it has one location, just use it
1034 if (connectPoints.size() == 1) {
Piere99511d2018-04-19 16:47:06 +02001035 sinksToBeProcessed.add(connectPoints.stream().findFirst().orElse(null));
Pier7b657162018-03-27 11:29:42 -07001036 return;
1037 }
1038 // We prefer to reuse existing flows
1039 ConnectPoint sinkToBeProcessed = connectPoints.stream()
Piere99511d2018-04-19 16:47:06 +02001040 .filter(connectPoint -> {
1041 if (!isSinkForGroup(mcastIp, connectPoint, source)) {
1042 return false;
1043 }
1044 if (!isSinkReachable(mcastIp, connectPoint, source)) {
1045 return false;
1046 }
1047 ConnectPoint other = connectPoints.stream()
Charles Chanba59dd62018-05-10 22:19:49 +00001048 .filter(remaining -> !remaining.equals(connectPoint))
1049 .findFirst().orElse(null);
Piere99511d2018-04-19 16:47:06 +02001050 // We are already serving the sink
1051 return !isSinkForSource(mcastIp, other, source);
1052 }).findFirst().orElse(null);
1053
Pier7b657162018-03-27 11:29:42 -07001054 if (sinkToBeProcessed != null) {
1055 sinksToBeProcessed.add(sinkToBeProcessed);
1056 return;
1057 }
1058 // Otherwise we prefer to reuse existing egresses
Piere99511d2018-04-19 16:47:06 +02001059 Set<DeviceId> egresses = getDevice(mcastIp, EGRESS, source);
Pier7b657162018-03-27 11:29:42 -07001060 sinkToBeProcessed = connectPoints.stream()
Piere99511d2018-04-19 16:47:06 +02001061 .filter(connectPoint -> {
1062 if (!egresses.contains(connectPoint.deviceId())) {
1063 return false;
1064 }
1065 if (!isSinkReachable(mcastIp, connectPoint, source)) {
1066 return false;
1067 }
1068 ConnectPoint other = connectPoints.stream()
Charles Chanba59dd62018-05-10 22:19:49 +00001069 .filter(remaining -> !remaining.equals(connectPoint))
1070 .findFirst().orElse(null);
Piere99511d2018-04-19 16:47:06 +02001071 return !isSinkForSource(mcastIp, other, source);
1072 }).findFirst().orElse(null);
Pier7b657162018-03-27 11:29:42 -07001073 if (sinkToBeProcessed != null) {
1074 sinksToBeProcessed.add(sinkToBeProcessed);
1075 return;
1076 }
1077 // Otherwise we prefer a location co-located with the source (if it exists)
1078 sinkToBeProcessed = connectPoints.stream()
1079 .filter(connectPoint -> connectPoint.deviceId().equals(source.deviceId()))
1080 .findFirst().orElse(null);
1081 if (sinkToBeProcessed != null) {
1082 sinksToBeProcessed.add(sinkToBeProcessed);
1083 return;
1084 }
Piere99511d2018-04-19 16:47:06 +02001085 // Finally, we randomly pick a new location if it is reachable
1086 sinkToBeProcessed = connectPoints.stream()
1087 .filter(connectPoint -> {
1088 if (!isSinkReachable(mcastIp, connectPoint, source)) {
1089 return false;
1090 }
1091 ConnectPoint other = connectPoints.stream()
Charles Chanba59dd62018-05-10 22:19:49 +00001092 .filter(remaining -> !remaining.equals(connectPoint))
1093 .findFirst().orElse(null);
Piere99511d2018-04-19 16:47:06 +02001094 return !isSinkForSource(mcastIp, other, source);
1095 }).findFirst().orElse(null);
1096 if (sinkToBeProcessed != null) {
1097 sinksToBeProcessed.add(sinkToBeProcessed);
1098 }
Pier7b657162018-03-27 11:29:42 -07001099 }));
Pier7b657162018-03-27 11:29:42 -07001100 return sinksToBeProcessed;
1101 }
1102
1103 /**
Pier1a7e0c02018-03-12 15:00:54 -07001104 * Utility method to remove all the ingress transit ports.
1105 *
1106 * @param mcastIp the group ip
Piere99511d2018-04-19 16:47:06 +02001107 * @param ingressDevices the ingress devices
1108 * @param sources the source connect points
Pier1a7e0c02018-03-12 15:00:54 -07001109 */
Piere99511d2018-04-19 16:47:06 +02001110 private void removeIngressTransitPorts(IpAddress mcastIp, Set<DeviceId> ingressDevices,
1111 Set<ConnectPoint> sources) {
1112 Map<ConnectPoint, Set<PortNumber>> ingressTransitPorts = Maps.newHashMap();
1113 sources.forEach(source -> {
1114 DeviceId ingressDevice = ingressDevices.stream()
1115 .filter(deviceId -> deviceId.equals(source.deviceId()))
1116 .findFirst().orElse(null);
1117 if (ingressDevice == null) {
1118 log.warn("Skip removeIngressTransitPorts - " +
1119 "Missing ingress for source {} and group {}",
1120 source, mcastIp);
1121 return;
Pier1a7e0c02018-03-12 15:00:54 -07001122 }
Andrea Campanella5b4cd652018-06-05 14:19:21 +02001123 Set<PortNumber> ingressTransitPort = ingressTransitPort(mcastIp, ingressDevice, source);
1124 if (ingressTransitPort.isEmpty()) {
1125 log.warn("No transit ports to remove on device {}", ingressDevice);
1126 return;
1127 }
1128 ingressTransitPorts.put(source, ingressTransitPort);
Pier1a7e0c02018-03-12 15:00:54 -07001129 });
Piere99511d2018-04-19 16:47:06 +02001130 ingressTransitPorts.forEach((source, ports) -> ports.forEach(ingressTransitPort -> {
1131 DeviceId ingressDevice = ingressDevices.stream()
Charles Chanba59dd62018-05-10 22:19:49 +00001132 .filter(deviceId -> deviceId.equals(source.deviceId()))
1133 .findFirst().orElse(null);
Piere99511d2018-04-19 16:47:06 +02001134 boolean isLast = removePortFromDevice(ingressDevice, ingressTransitPort,
1135 mcastIp, mcastUtils.assignedVlan(source));
1136 if (isLast) {
1137 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, ingressDevice, source));
1138 }
1139 }));
Pier1a7e0c02018-03-12 15:00:54 -07001140 }
1141
1142 /**
Charles Chanc91c8782016-03-30 17:54:24 -07001143 * Adds a port to given multicast group on given device. This involves the
1144 * update of L3 multicast group and multicast routing table entry.
1145 *
1146 * @param deviceId device ID
1147 * @param port port to be added
1148 * @param mcastIp multicast group
1149 * @param assignedVlan assigned VLAN ID
1150 */
Charles Chanba59dd62018-05-10 22:19:49 +00001151 private void addPortToDevice(DeviceId deviceId, PortNumber port,
1152 IpAddress mcastIp, VlanId assignedVlan) {
Piere99511d2018-04-19 16:47:06 +02001153 McastStoreKey mcastStoreKey = new McastStoreKey(mcastIp, deviceId, assignedVlan);
Charles Chanc91c8782016-03-30 17:54:24 -07001154 ImmutableSet.Builder<PortNumber> portBuilder = ImmutableSet.builder();
Pier Luigi4f0dd212018-01-19 10:24:53 +01001155 NextObjective newNextObj;
Charles Chan72779502016-04-23 17:36:10 -07001156 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
Charles Chanc91c8782016-03-30 17:54:24 -07001157 // First time someone request this mcast group via this device
1158 portBuilder.add(port);
Pier Luigi4f0dd212018-01-19 10:24:53 +01001159 // New nextObj
Charles Chanba59dd62018-05-10 22:19:49 +00001160 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
1161 portBuilder.build(), null).add();
Pier Luigi4f0dd212018-01-19 10:24:53 +01001162 // Store the new port
1163 mcastNextObjStore.put(mcastStoreKey, newNextObj);
Charles Chanc91c8782016-03-30 17:54:24 -07001164 } else {
1165 // This device already serves some subscribers of this mcast group
Charles Chan72779502016-04-23 17:36:10 -07001166 NextObjective nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Charles Chanc91c8782016-03-30 17:54:24 -07001167 // Stop if the port is already in the nextobj
Pier7b657162018-03-27 11:29:42 -07001168 Set<PortNumber> existingPorts = mcastUtils.getPorts(nextObj.next());
Charles Chanc91c8782016-03-30 17:54:24 -07001169 if (existingPorts.contains(port)) {
1170 log.info("NextObj for {}/{} already exists. Abort", deviceId, port);
1171 return;
1172 }
Pier Luigi4f0dd212018-01-19 10:24:53 +01001173 // Let's add the port and reuse the previous one
Yuta HIGUCHIbef07b52018-02-09 18:05:23 -08001174 portBuilder.addAll(existingPorts).add(port);
Pier Luigi4f0dd212018-01-19 10:24:53 +01001175 // Reuse previous nextObj
Pier7b657162018-03-27 11:29:42 -07001176 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigi4f0dd212018-01-19 10:24:53 +01001177 portBuilder.build(), nextObj.id()).addToExisting();
1178 // Store the final next objective and send only the difference to the driver
1179 mcastNextObjStore.put(mcastStoreKey, newNextObj);
1180 // Add just the new port
1181 portBuilder = ImmutableSet.builder();
1182 portBuilder.add(port);
Pier7b657162018-03-27 11:29:42 -07001183 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigi4f0dd212018-01-19 10:24:53 +01001184 portBuilder.build(), nextObj.id()).addToExisting();
Charles Chanc91c8782016-03-30 17:54:24 -07001185 }
1186 // Create, store and apply the new nextObj and fwdObj
Charles Chan72779502016-04-23 17:36:10 -07001187 ObjectiveContext context = new DefaultObjectiveContext(
1188 (objective) -> log.debug("Successfully add {} on {}/{}, vlan {}",
1189 mcastIp, deviceId, port.toLong(), assignedVlan),
Charles Chanfacfbef2018-08-23 14:30:33 -07001190 (objective, error) -> {
1191 log.warn("Failed to add {} on {}/{}, vlan {}: {}",
1192 mcastIp, deviceId, port.toLong(), assignedVlan, error);
1193 srManager.invalidateNextObj(objective.id());
1194 });
Pier7b657162018-03-27 11:29:42 -07001195 ForwardingObjective fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan,
1196 newNextObj.id()).add(context);
Charles Chanc91c8782016-03-30 17:54:24 -07001197 srManager.flowObjectiveService.next(deviceId, newNextObj);
1198 srManager.flowObjectiveService.forward(deviceId, fwdObj);
Charles Chanc91c8782016-03-30 17:54:24 -07001199 }
1200
1201 /**
1202 * Removes a port from given multicast group on given device.
1203 * This involves the update of L3 multicast group and multicast routing
1204 * table entry.
1205 *
1206 * @param deviceId device ID
1207 * @param port port to be added
1208 * @param mcastIp multicast group
1209 * @param assignedVlan assigned VLAN ID
1210 * @return true if this is the last sink on this device
1211 */
Charles Chanba59dd62018-05-10 22:19:49 +00001212 private boolean removePortFromDevice(DeviceId deviceId, PortNumber port,
1213 IpAddress mcastIp, VlanId assignedVlan) {
Charles Chan72779502016-04-23 17:36:10 -07001214 McastStoreKey mcastStoreKey =
Piere99511d2018-04-19 16:47:06 +02001215 new McastStoreKey(mcastIp, deviceId, assignedVlan);
Charles Chanc91c8782016-03-30 17:54:24 -07001216 // This device is not serving this multicast group
Charles Chan72779502016-04-23 17:36:10 -07001217 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
Piere99511d2018-04-19 16:47:06 +02001218 return true;
Charles Chanc91c8782016-03-30 17:54:24 -07001219 }
Charles Chan72779502016-04-23 17:36:10 -07001220 NextObjective nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Pier7b657162018-03-27 11:29:42 -07001221 Set<PortNumber> existingPorts = mcastUtils.getPorts(nextObj.next());
Charles Chan72779502016-04-23 17:36:10 -07001222 // This port does not serve this multicast group
Charles Chanc91c8782016-03-30 17:54:24 -07001223 if (!existingPorts.contains(port)) {
Piere99511d2018-04-19 16:47:06 +02001224 if (!existingPorts.isEmpty()) {
1225 log.warn("{} is not serving {} on port {}. Abort.", deviceId, mcastIp, port);
1226 return false;
1227 }
1228 return true;
Charles Chanc91c8782016-03-30 17:54:24 -07001229 }
1230 // Copy and modify the ImmutableSet
1231 existingPorts = Sets.newHashSet(existingPorts);
1232 existingPorts.remove(port);
Charles Chanc91c8782016-03-30 17:54:24 -07001233 NextObjective newNextObj;
Pier Luigi8cd46de2018-01-19 10:24:53 +01001234 ObjectiveContext context;
Charles Chanc91c8782016-03-30 17:54:24 -07001235 ForwardingObjective fwdObj;
1236 if (existingPorts.isEmpty()) {
Pier Luigi8cd46de2018-01-19 10:24:53 +01001237 context = new DefaultObjectiveContext(
Charles Chan72779502016-04-23 17:36:10 -07001238 (objective) -> log.debug("Successfully remove {} on {}/{}, vlan {}",
1239 mcastIp, deviceId, port.toLong(), assignedVlan),
Piere99511d2018-04-19 16:47:06 +02001240 (objective, error) -> log.warn("Failed to remove {} on {}/{}, vlan {}: {}",
Charles Chan72779502016-04-23 17:36:10 -07001241 mcastIp, deviceId, port.toLong(), assignedVlan, error));
Pier7b657162018-03-27 11:29:42 -07001242 fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan, nextObj.id()).remove(context);
Charles Chan72779502016-04-23 17:36:10 -07001243 mcastNextObjStore.remove(mcastStoreKey);
Charles Chanc91c8782016-03-30 17:54:24 -07001244 } else {
1245 // If this is not the last sink, update flows and groups
Pier Luigi8cd46de2018-01-19 10:24:53 +01001246 context = new DefaultObjectiveContext(
Charles Chan72779502016-04-23 17:36:10 -07001247 (objective) -> log.debug("Successfully update {} on {}/{}, vlan {}",
1248 mcastIp, deviceId, port.toLong(), assignedVlan),
Charles Chanfacfbef2018-08-23 14:30:33 -07001249 (objective, error) -> {
1250 log.warn("Failed to update {} on {}/{}, vlan {}: {}",
1251 mcastIp, deviceId, port.toLong(), assignedVlan, error);
1252 srManager.invalidateNextObj(objective.id());
1253 });
Pier Luigi8cd46de2018-01-19 10:24:53 +01001254 // Here we store the next objective with the remaining port
Pier7b657162018-03-27 11:29:42 -07001255 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigi8cd46de2018-01-19 10:24:53 +01001256 existingPorts, nextObj.id()).removeFromExisting();
Pier7b657162018-03-27 11:29:42 -07001257 fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan, newNextObj.id()).add(context);
Charles Chan72779502016-04-23 17:36:10 -07001258 mcastNextObjStore.put(mcastStoreKey, newNextObj);
Charles Chanc91c8782016-03-30 17:54:24 -07001259 }
Pier Luigi8cd46de2018-01-19 10:24:53 +01001260 // Let's modify the next objective removing the bucket
Pier7b657162018-03-27 11:29:42 -07001261 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigi8cd46de2018-01-19 10:24:53 +01001262 ImmutableSet.of(port), nextObj.id()).removeFromExisting();
1263 srManager.flowObjectiveService.next(deviceId, newNextObj);
1264 srManager.flowObjectiveService.forward(deviceId, fwdObj);
Charles Chanc91c8782016-03-30 17:54:24 -07001265 return existingPorts.isEmpty();
1266 }
1267
Charles Chan72779502016-04-23 17:36:10 -07001268 /**
1269 * Removes entire group on given device.
1270 *
1271 * @param deviceId device ID
1272 * @param mcastIp multicast group to be removed
1273 * @param assignedVlan assigned VLAN ID
1274 */
Charles Chanba59dd62018-05-10 22:19:49 +00001275 private void removeGroupFromDevice(DeviceId deviceId, IpAddress mcastIp,
1276 VlanId assignedVlan) {
Piere99511d2018-04-19 16:47:06 +02001277 McastStoreKey mcastStoreKey = new McastStoreKey(mcastIp, deviceId, assignedVlan);
Charles Chan72779502016-04-23 17:36:10 -07001278 // This device is not serving this multicast group
1279 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
1280 log.warn("{} is not serving {}. Abort.", deviceId, mcastIp);
1281 return;
1282 }
1283 NextObjective nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Charles Chan72779502016-04-23 17:36:10 -07001284 ObjectiveContext context = new DefaultObjectiveContext(
1285 (objective) -> log.debug("Successfully remove {} on {}, vlan {}",
1286 mcastIp, deviceId, assignedVlan),
Piere99511d2018-04-19 16:47:06 +02001287 (objective, error) -> log.warn("Failed to remove {} on {}, vlan {}: {}",
Charles Chan72779502016-04-23 17:36:10 -07001288 mcastIp, deviceId, assignedVlan, error));
Pier7b657162018-03-27 11:29:42 -07001289 ForwardingObjective fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan, nextObj.id()).remove(context);
Charles Chan72779502016-04-23 17:36:10 -07001290 srManager.flowObjectiveService.forward(deviceId, fwdObj);
1291 mcastNextObjStore.remove(mcastStoreKey);
Charles Chan72779502016-04-23 17:36:10 -07001292 }
1293
Pier Luigi580fd8a2018-01-16 10:47:50 +01001294 private void installPath(IpAddress mcastIp, ConnectPoint source, Path mcastPath) {
Pier Luigi580fd8a2018-01-16 10:47:50 +01001295 List<Link> links = mcastPath.links();
kezhiyong168fbba2018-12-03 16:14:29 +08001296 if (links.isEmpty()) {
1297 log.warn("There is no link that can be used. Stopping installation.");
1298 return;
1299 }
Pier1a7e0c02018-03-12 15:00:54 -07001300 // Setup new ingress mcast role
Piere99511d2018-04-19 16:47:06 +02001301 mcastRoleStore.put(new McastRoleStoreKey(mcastIp, links.get(0).src().deviceId(), source),
Pier1a7e0c02018-03-12 15:00:54 -07001302 INGRESS);
Pier Luigi580fd8a2018-01-16 10:47:50 +01001303 // For each link, modify the next on the source device adding the src port
1304 // and a new filter objective on the destination port
1305 links.forEach(link -> {
1306 addPortToDevice(link.src().deviceId(), link.src().port(), mcastIp,
Pier7b657162018-03-27 11:29:42 -07001307 mcastUtils.assignedVlan(link.src().deviceId().equals(source.deviceId()) ? source : null));
1308 mcastUtils.addFilterToDevice(link.dst().deviceId(), link.dst().port(),
1309 mcastUtils.assignedVlan(null), mcastIp, null);
Pier Luigi580fd8a2018-01-16 10:47:50 +01001310 });
Pier1a7e0c02018-03-12 15:00:54 -07001311 // Setup mcast role for the transit
1312 links.stream()
1313 .filter(link -> !link.src().deviceId().equals(source.deviceId()))
Piere99511d2018-04-19 16:47:06 +02001314 .forEach(link -> mcastRoleStore.put(new McastRoleStoreKey(mcastIp, link.src().deviceId(), source),
Pier1a7e0c02018-03-12 15:00:54 -07001315 TRANSIT));
Charles Chan72779502016-04-23 17:36:10 -07001316 }
1317
Charles Chanc91c8782016-03-30 17:54:24 -07001318 /**
Pier1f87aca2018-03-14 16:47:32 -07001319 * Go through all the paths, looking for shared links to be used
1320 * in the final path computation.
1321 *
1322 * @param egresses egress devices
1323 * @param availablePaths all the available paths towards the egress
1324 * @return shared links between egress devices
1325 */
Charles Chanba59dd62018-05-10 22:19:49 +00001326 private Set<Link> exploreMcastTree(Set<DeviceId> egresses,
1327 Map<DeviceId, List<Path>> availablePaths) {
Pier1f87aca2018-03-14 16:47:32 -07001328 int minLength = Integer.MAX_VALUE;
1329 int length;
Pier1f87aca2018-03-14 16:47:32 -07001330 List<Path> currentPaths;
1331 // Verify the source can still reach all the egresses
1332 for (DeviceId egress : egresses) {
1333 // From the source we cannot reach all the sinks
Pier7b657162018-03-27 11:29:42 -07001334 // just continue and let's figure out after
Pier1f87aca2018-03-14 16:47:32 -07001335 currentPaths = availablePaths.get(egress);
1336 if (currentPaths.isEmpty()) {
1337 continue;
1338 }
Piere99511d2018-04-19 16:47:06 +02001339 // Get the length of the first one available, update the min length
Pier1f87aca2018-03-14 16:47:32 -07001340 length = currentPaths.get(0).links().size();
1341 if (length < minLength) {
1342 minLength = length;
1343 }
Pier Luigi51ee7c02018-02-23 19:57:40 +01001344 }
Pier1f87aca2018-03-14 16:47:32 -07001345 // If there are no paths
1346 if (minLength == Integer.MAX_VALUE) {
1347 return Collections.emptySet();
1348 }
Pier1f87aca2018-03-14 16:47:32 -07001349 int index = 0;
Pier1f87aca2018-03-14 16:47:32 -07001350 Set<Link> sharedLinks = Sets.newHashSet();
1351 Set<Link> currentSharedLinks;
1352 Set<Link> currentLinks;
Pier7b657162018-03-27 11:29:42 -07001353 DeviceId egressToRemove = null;
Pier1f87aca2018-03-14 16:47:32 -07001354 // Let's find out the shared links
1355 while (index < minLength) {
1356 // Initialize the intersection with the paths related to the first egress
Piere99511d2018-04-19 16:47:06 +02001357 currentPaths = availablePaths.get(egresses.stream().findFirst().orElse(null));
Pier1f87aca2018-03-14 16:47:32 -07001358 currentSharedLinks = Sets.newHashSet();
1359 // Iterate over the paths and take the "index" links
1360 for (Path path : currentPaths) {
1361 currentSharedLinks.add(path.links().get(index));
1362 }
1363 // Iterate over the remaining egress
1364 for (DeviceId egress : egresses) {
1365 // Iterate over the paths and take the "index" links
1366 currentLinks = Sets.newHashSet();
1367 for (Path path : availablePaths.get(egress)) {
1368 currentLinks.add(path.links().get(index));
1369 }
1370 // Do intersection
1371 currentSharedLinks = Sets.intersection(currentSharedLinks, currentLinks);
1372 // If there are no shared paths exit and record the device to remove
1373 // we have to retry with a subset of sinks
1374 if (currentSharedLinks.isEmpty()) {
Pier7b657162018-03-27 11:29:42 -07001375 egressToRemove = egress;
Pier1f87aca2018-03-14 16:47:32 -07001376 index = minLength;
1377 break;
1378 }
1379 }
1380 sharedLinks.addAll(currentSharedLinks);
1381 index++;
1382 }
Piere99511d2018-04-19 16:47:06 +02001383 // If the shared links is empty and there are egress let's retry another time with less sinks,
1384 // we can still build optimal subtrees
Pier7b657162018-03-27 11:29:42 -07001385 if (sharedLinks.isEmpty() && egresses.size() > 1 && egressToRemove != null) {
1386 egresses.remove(egressToRemove);
Pier1f87aca2018-03-14 16:47:32 -07001387 sharedLinks = exploreMcastTree(egresses, availablePaths);
1388 }
1389 return sharedLinks;
1390 }
1391
1392 /**
1393 * Build Mcast tree having as root the given source and as leaves the given egress points.
1394 *
1395 * @param source source of the tree
1396 * @param sinks leaves of the tree
1397 * @return the computed Mcast tree
1398 */
Charles Chanba59dd62018-05-10 22:19:49 +00001399 private Map<ConnectPoint, List<Path>> computeSinkMcastTree(DeviceId source,
1400 Set<ConnectPoint> sinks) {
Pier1f87aca2018-03-14 16:47:32 -07001401 // Get the egress devices, remove source from the egress if present
Piere99511d2018-04-19 16:47:06 +02001402 Set<DeviceId> egresses = sinks.stream().map(ConnectPoint::deviceId)
1403 .filter(deviceId -> !deviceId.equals(source)).collect(Collectors.toSet());
Pier1f87aca2018-03-14 16:47:32 -07001404 Map<DeviceId, List<Path>> mcastTree = computeMcastTree(source, egresses);
Pier1f87aca2018-03-14 16:47:32 -07001405 final Map<ConnectPoint, List<Path>> finalTree = Maps.newHashMap();
Pier7b657162018-03-27 11:29:42 -07001406 // We need to put back the source if it was originally present
1407 sinks.forEach(sink -> {
1408 List<Path> sinkPaths = mcastTree.get(sink.deviceId());
1409 finalTree.put(sink, sinkPaths != null ? sinkPaths : ImmutableList.of());
1410 });
Pier1f87aca2018-03-14 16:47:32 -07001411 return finalTree;
1412 }
1413
1414 /**
1415 * Build Mcast tree having as root the given source and as leaves the given egress.
1416 *
1417 * @param source source of the tree
1418 * @param egresses leaves of the tree
1419 * @return the computed Mcast tree
1420 */
1421 private Map<DeviceId, List<Path>> computeMcastTree(DeviceId source,
1422 Set<DeviceId> egresses) {
1423 // Pre-compute all the paths
1424 Map<DeviceId, List<Path>> availablePaths = Maps.newHashMap();
Pier1f87aca2018-03-14 16:47:32 -07001425 egresses.forEach(egress -> availablePaths.put(egress, getPaths(source, egress,
1426 Collections.emptySet())));
1427 // Explore the topology looking for shared links amongst the egresses
1428 Set<Link> linksToEnforce = exploreMcastTree(Sets.newHashSet(egresses), availablePaths);
Pier1f87aca2018-03-14 16:47:32 -07001429 // Build the final paths enforcing the shared links between egress devices
Piere99511d2018-04-19 16:47:06 +02001430 availablePaths.clear();
Pier1f87aca2018-03-14 16:47:32 -07001431 egresses.forEach(egress -> availablePaths.put(egress, getPaths(source, egress,
1432 linksToEnforce)));
1433 return availablePaths;
1434 }
1435
1436 /**
1437 * Gets path from src to dst computed using the custom link weigher.
1438 *
1439 * @param src source device ID
1440 * @param dst destination device ID
1441 * @return list of paths from src to dst
1442 */
1443 private List<Path> getPaths(DeviceId src, DeviceId dst, Set<Link> linksToEnforce) {
Pier1f87aca2018-03-14 16:47:32 -07001444 final Topology currentTopology = topologyService.currentTopology();
Pier1f87aca2018-03-14 16:47:32 -07001445 final LinkWeigher linkWeigher = new SRLinkWeigher(srManager, src, linksToEnforce);
Piere99511d2018-04-19 16:47:06 +02001446 List<Path> allPaths = Lists.newArrayList(topologyService.getPaths(currentTopology, src, dst, linkWeigher));
Pier1f87aca2018-03-14 16:47:32 -07001447 log.debug("{} path(s) found from {} to {}", allPaths.size(), src, dst);
1448 return allPaths;
Pier Luigi51ee7c02018-02-23 19:57:40 +01001449 }
1450
Charles Chanc91c8782016-03-30 17:54:24 -07001451 /**
1452 * Gets a path from src to dst.
1453 * If a path was allocated before, returns the allocated path.
1454 * Otherwise, randomly pick one from available paths.
1455 *
1456 * @param src source device ID
1457 * @param dst destination device ID
1458 * @param mcastIp multicast group
Pier1f87aca2018-03-14 16:47:32 -07001459 * @param allPaths paths list
Charles Chanc91c8782016-03-30 17:54:24 -07001460 * @return an optional path from src to dst
1461 */
Piere99511d2018-04-19 16:47:06 +02001462 private Optional<Path> getPath(DeviceId src, DeviceId dst, IpAddress mcastIp,
1463 List<Path> allPaths, ConnectPoint source) {
Pier1f87aca2018-03-14 16:47:32 -07001464 if (allPaths == null) {
1465 allPaths = getPaths(src, dst, Collections.emptySet());
1466 }
Charles Chanc91c8782016-03-30 17:54:24 -07001467 if (allPaths.isEmpty()) {
Charles Chanc91c8782016-03-30 17:54:24 -07001468 return Optional.empty();
1469 }
Piere99511d2018-04-19 16:47:06 +02001470 // Create a map index of suitability-to-list of paths. For example
Pier Luigi91573e12018-01-23 16:06:38 +01001471 // a path in the list associated to the index 1 shares only the
1472 // first hop and it is less suitable of a path belonging to the index
1473 // 2 that shares leaf-spine.
1474 Map<Integer, List<Path>> eligiblePaths = Maps.newHashMap();
Pier Luigi91573e12018-01-23 16:06:38 +01001475 int nhop;
1476 McastStoreKey mcastStoreKey;
Pier Luigi91573e12018-01-23 16:06:38 +01001477 PortNumber srcPort;
1478 Set<PortNumber> existingPorts;
1479 NextObjective nextObj;
Pier Luigi91573e12018-01-23 16:06:38 +01001480 for (Path path : allPaths) {
Pier Luigi91573e12018-01-23 16:06:38 +01001481 if (!src.equals(path.links().get(0).src().deviceId())) {
1482 continue;
1483 }
1484 nhop = 0;
1485 // Iterate over the links
Piere99511d2018-04-19 16:47:06 +02001486 for (Link hop : path.links()) {
1487 VlanId assignedVlan = mcastUtils.assignedVlan(hop.src().deviceId().equals(src) ?
1488 source : null);
1489 mcastStoreKey = new McastStoreKey(mcastIp, hop.src().deviceId(), assignedVlan);
1490 // It does not exist in the store, go to the next link
Pier Luigi91573e12018-01-23 16:06:38 +01001491 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
Piere99511d2018-04-19 16:47:06 +02001492 continue;
Charles Chanc91c8782016-03-30 17:54:24 -07001493 }
Pier Luigi91573e12018-01-23 16:06:38 +01001494 nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Pier7b657162018-03-27 11:29:42 -07001495 existingPorts = mcastUtils.getPorts(nextObj.next());
Pier Luigi91573e12018-01-23 16:06:38 +01001496 srcPort = hop.src().port();
Piere99511d2018-04-19 16:47:06 +02001497 // the src port is not used as output, go to the next link
Pier Luigi91573e12018-01-23 16:06:38 +01001498 if (!existingPorts.contains(srcPort)) {
Piere99511d2018-04-19 16:47:06 +02001499 continue;
Pier Luigi91573e12018-01-23 16:06:38 +01001500 }
1501 nhop++;
1502 }
1503 // n_hop defines the index
1504 if (nhop > 0) {
1505 eligiblePaths.compute(nhop, (index, paths) -> {
1506 paths = paths == null ? Lists.newArrayList() : paths;
1507 paths.add(path);
1508 return paths;
1509 });
Charles Chanc91c8782016-03-30 17:54:24 -07001510 }
1511 }
Pier Luigi91573e12018-01-23 16:06:38 +01001512 if (eligiblePaths.isEmpty()) {
1513 log.debug("No eligiblePath(s) found from {} to {}", src, dst);
Pier Luigi91573e12018-01-23 16:06:38 +01001514 Collections.shuffle(allPaths);
1515 return allPaths.stream().findFirst();
1516 }
Pier Luigi91573e12018-01-23 16:06:38 +01001517 // Let's take the best ones
Piere99511d2018-04-19 16:47:06 +02001518 Integer bestIndex = eligiblePaths.keySet().stream()
1519 .sorted(Comparator.reverseOrder()).findFirst().orElse(null);
Pier Luigi91573e12018-01-23 16:06:38 +01001520 List<Path> bestPaths = eligiblePaths.get(bestIndex);
1521 log.debug("{} eligiblePath(s) found from {} to {}",
1522 bestPaths.size(), src, dst);
Pier Luigi91573e12018-01-23 16:06:38 +01001523 Collections.shuffle(bestPaths);
1524 return bestPaths.stream().findFirst();
Charles Chanc91c8782016-03-30 17:54:24 -07001525 }
1526
1527 /**
Piere99511d2018-04-19 16:47:06 +02001528 * Gets device(s) of given role and of given source in given multicast tree.
1529 *
1530 * @param mcastIp multicast IP
1531 * @param role multicast role
1532 * @param source source connect point
1533 * @return set of device ID or empty set if not found
1534 */
1535 private Set<DeviceId> getDevice(IpAddress mcastIp, McastRole role, ConnectPoint source) {
1536 return mcastRoleStore.entrySet().stream()
1537 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp) &&
Charles Chanba59dd62018-05-10 22:19:49 +00001538 entry.getKey().source().equals(source) &&
1539 entry.getValue().value() == role)
Piere99511d2018-04-19 16:47:06 +02001540 .map(Entry::getKey).map(McastRoleStoreKey::deviceId).collect(Collectors.toSet());
1541 }
1542
1543 /**
Charles Chan72779502016-04-23 17:36:10 -07001544 * Gets device(s) of given role in given multicast group.
1545 *
1546 * @param mcastIp multicast IP
1547 * @param role multicast role
1548 * @return set of device ID or empty set if not found
1549 */
1550 private Set<DeviceId> getDevice(IpAddress mcastIp, McastRole role) {
1551 return mcastRoleStore.entrySet().stream()
1552 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp) &&
1553 entry.getValue().value() == role)
Piere99511d2018-04-19 16:47:06 +02001554 .map(Entry::getKey).map(McastRoleStoreKey::deviceId).collect(Collectors.toSet());
1555 }
1556
1557 /**
1558 * Gets source(s) of given role, given device in given multicast group.
1559 *
1560 * @param mcastIp multicast IP
1561 * @param deviceId device id
1562 * @param role multicast role
1563 * @return set of device ID or empty set if not found
1564 */
1565 private Set<ConnectPoint> getSources(IpAddress mcastIp, DeviceId deviceId, McastRole role) {
1566 return mcastRoleStore.entrySet().stream()
1567 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp) &&
1568 entry.getKey().deviceId().equals(deviceId) && entry.getValue().value() == role)
1569 .map(Entry::getKey).map(McastRoleStoreKey::source).collect(Collectors.toSet());
1570 }
1571
1572 /**
1573 * Gets source(s) of given multicast group.
1574 *
1575 * @param mcastIp multicast IP
1576 * @return set of device ID or empty set if not found
1577 */
1578 private Set<ConnectPoint> getSources(IpAddress mcastIp) {
1579 return mcastRoleStore.entrySet().stream()
1580 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp))
1581 .map(Entry::getKey).map(McastRoleStoreKey::source).collect(Collectors.toSet());
Charles Chan72779502016-04-23 17:36:10 -07001582 }
1583
1584 /**
1585 * Gets groups which is affected by the link down event.
1586 *
1587 * @param link link going down
1588 * @return a set of multicast IpAddress
1589 */
1590 private Set<IpAddress> getAffectedGroups(Link link) {
1591 DeviceId deviceId = link.src().deviceId();
1592 PortNumber port = link.src().port();
1593 return mcastNextObjStore.entrySet().stream()
1594 .filter(entry -> entry.getKey().deviceId().equals(deviceId) &&
Piere99511d2018-04-19 16:47:06 +02001595 mcastUtils.getPorts(entry.getValue().value().next()).contains(port))
1596 .map(Entry::getKey).map(McastStoreKey::mcastIp).collect(Collectors.toSet());
Charles Chan72779502016-04-23 17:36:10 -07001597 }
1598
1599 /**
Pier Luigi580fd8a2018-01-16 10:47:50 +01001600 * Gets groups which are affected by the device down event.
1601 *
1602 * @param deviceId device going down
1603 * @return a set of multicast IpAddress
1604 */
1605 private Set<IpAddress> getAffectedGroups(DeviceId deviceId) {
1606 return mcastNextObjStore.entrySet().stream()
1607 .filter(entry -> entry.getKey().deviceId().equals(deviceId))
Pier1f87aca2018-03-14 16:47:32 -07001608 .map(Entry::getKey).map(McastStoreKey::mcastIp)
Pier Luigi580fd8a2018-01-16 10:47:50 +01001609 .collect(Collectors.toSet());
1610 }
1611
1612 /**
Charles Chan72779502016-04-23 17:36:10 -07001613 * Gets the spine-facing port on ingress device of given multicast group.
1614 *
1615 * @param mcastIp multicast IP
Piere99511d2018-04-19 16:47:06 +02001616 * @param ingressDevice the ingress device
1617 * @param source the source connect point
Charles Chan72779502016-04-23 17:36:10 -07001618 * @return spine-facing port on ingress device
1619 */
Charles Chanba59dd62018-05-10 22:19:49 +00001620 private Set<PortNumber> ingressTransitPort(IpAddress mcastIp, DeviceId ingressDevice,
1621 ConnectPoint source) {
Pier1a7e0c02018-03-12 15:00:54 -07001622 ImmutableSet.Builder<PortNumber> portBuilder = ImmutableSet.builder();
Charles Chan72779502016-04-23 17:36:10 -07001623 if (ingressDevice != null) {
Andrea Campanella5b4cd652018-06-05 14:19:21 +02001624 Versioned<NextObjective> nextObjVers = mcastNextObjStore.get(new McastStoreKey(mcastIp, ingressDevice,
1625 mcastUtils.assignedVlan(source)));
1626 if (nextObjVers == null) {
1627 log.warn("Absent next objective for {}", new McastStoreKey(mcastIp, ingressDevice,
1628 mcastUtils.assignedVlan(source)));
1629 return portBuilder.build();
1630 }
1631 NextObjective nextObj = nextObjVers.value();
Pier7b657162018-03-27 11:29:42 -07001632 Set<PortNumber> ports = mcastUtils.getPorts(nextObj.next());
Pier1a7e0c02018-03-12 15:00:54 -07001633 // Let's find out all the ingress-transit ports
Charles Chan72779502016-04-23 17:36:10 -07001634 for (PortNumber port : ports) {
1635 // Spine-facing port should have no subnet and no xconnect
Pier Luigi69f774d2018-02-28 12:10:50 +01001636 if (srManager.deviceConfiguration() != null &&
1637 srManager.deviceConfiguration().getPortSubnets(ingressDevice, port).isEmpty() &&
Charles Chan8d316332018-06-19 20:31:57 -07001638 (srManager.xconnectService == null ||
1639 !srManager.xconnectService.hasXconnect(new ConnectPoint(ingressDevice, port)))) {
Pier1a7e0c02018-03-12 15:00:54 -07001640 portBuilder.add(port);
Charles Chan72779502016-04-23 17:36:10 -07001641 }
1642 }
1643 }
Pier1a7e0c02018-03-12 15:00:54 -07001644 return portBuilder.build();
Charles Chan72779502016-04-23 17:36:10 -07001645 }
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07001646
1647 /**
Pier28164682018-04-17 15:50:43 +02001648 * Verify if a given connect point is sink for this group.
1649 *
1650 * @param mcastIp group address
1651 * @param connectPoint connect point to be verified
Piere99511d2018-04-19 16:47:06 +02001652 * @param source source connect point
Pier28164682018-04-17 15:50:43 +02001653 * @return true if the connect point is sink of the group
1654 */
Charles Chanba59dd62018-05-10 22:19:49 +00001655 private boolean isSinkForGroup(IpAddress mcastIp, ConnectPoint connectPoint,
1656 ConnectPoint source) {
Piere99511d2018-04-19 16:47:06 +02001657 VlanId assignedVlan = mcastUtils.assignedVlan(connectPoint.deviceId().equals(source.deviceId()) ?
1658 source : null);
1659 McastStoreKey mcastStoreKey = new McastStoreKey(mcastIp, connectPoint.deviceId(), assignedVlan);
Pier28164682018-04-17 15:50:43 +02001660 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
1661 return false;
1662 }
Pier28164682018-04-17 15:50:43 +02001663 NextObjective mcastNext = mcastNextObjStore.get(mcastStoreKey).value();
1664 return mcastUtils.getPorts(mcastNext.next()).contains(connectPoint.port());
1665 }
1666
1667 /**
Piere99511d2018-04-19 16:47:06 +02001668 * Verify if a given connect point is sink for this group and for this source.
1669 *
1670 * @param mcastIp group address
1671 * @param connectPoint connect point to be verified
1672 * @param source source connect point
1673 * @return true if the connect point is sink of the group
1674 */
Charles Chanba59dd62018-05-10 22:19:49 +00001675 private boolean isSinkForSource(IpAddress mcastIp, ConnectPoint connectPoint,
1676 ConnectPoint source) {
Piere99511d2018-04-19 16:47:06 +02001677 boolean isSink = isSinkForGroup(mcastIp, connectPoint, source);
1678 DeviceId device;
1679 if (connectPoint.deviceId().equals(source.deviceId())) {
1680 device = getDevice(mcastIp, INGRESS, source).stream()
1681 .filter(deviceId -> deviceId.equals(connectPoint.deviceId()))
1682 .findFirst().orElse(null);
1683 } else {
1684 device = getDevice(mcastIp, EGRESS, source).stream()
1685 .filter(deviceId -> deviceId.equals(connectPoint.deviceId()))
1686 .findFirst().orElse(null);
1687 }
1688 return isSink && device != null;
1689 }
1690
1691 /**
1692 * Verify if a sink is reachable from this source.
1693 *
1694 * @param mcastIp group address
1695 * @param sink connect point to be verified
1696 * @param source source connect point
1697 * @return true if the connect point is reachable from the source
1698 */
Charles Chanba59dd62018-05-10 22:19:49 +00001699 private boolean isSinkReachable(IpAddress mcastIp, ConnectPoint sink,
1700 ConnectPoint source) {
Piere99511d2018-04-19 16:47:06 +02001701 return sink.deviceId().equals(source.deviceId()) ||
1702 getPath(source.deviceId(), sink.deviceId(), mcastIp, null, source).isPresent();
1703 }
1704
1705 /**
Pier Luigi35dab3f2018-01-25 16:16:02 +01001706 * Updates filtering objective for given device and port.
1707 * It is called in general when the mcast config has been
1708 * changed.
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07001709 *
1710 * @param deviceId device ID
1711 * @param portNum ingress port number
1712 * @param vlanId assigned VLAN ID
1713 * @param install true to add, false to remove
1714 */
Charles Chanba59dd62018-05-10 22:19:49 +00001715 public void updateFilterToDevice(DeviceId deviceId, PortNumber portNum,
1716 VlanId vlanId, boolean install) {
Pier Luigi35dab3f2018-01-25 16:16:02 +01001717 lastMcastChange = Instant.now();
1718 mcastLock();
1719 try {
Piere99511d2018-04-19 16:47:06 +02001720 // Iterates over the route and updates properly the filtering objective on the source device.
Pier Luigi35dab3f2018-01-25 16:16:02 +01001721 srManager.multicastRouteService.getRoutes().forEach(mcastRoute -> {
Pierdb27b8d2018-04-17 16:29:56 +02001722 log.debug("Update filter for {}", mcastRoute.group());
Pierdb27b8d2018-04-17 16:29:56 +02001723 if (!mcastUtils.isLeader(mcastRoute.group())) {
1724 log.debug("Skip {} due to lack of leadership", mcastRoute.group());
1725 return;
1726 }
Piere99511d2018-04-19 16:47:06 +02001727 // Get the sources and for each one update properly the filtering objectives
1728 Set<ConnectPoint> sources = srManager.multicastRouteService.sources(mcastRoute);
1729 sources.forEach(source -> {
1730 if (source.deviceId().equals(deviceId) && source.port().equals(portNum)) {
1731 if (install) {
1732 mcastUtils.addFilterToDevice(deviceId, portNum, vlanId, mcastRoute.group(), INGRESS);
1733 } else {
1734 mcastUtils.removeFilterToDevice(deviceId, portNum, vlanId, mcastRoute.group(), null);
1735 }
Pier Luigi35dab3f2018-01-25 16:16:02 +01001736 }
Piere99511d2018-04-19 16:47:06 +02001737 });
Pier Luigi35dab3f2018-01-25 16:16:02 +01001738 });
1739 } finally {
1740 mcastUnlock();
1741 }
1742 }
1743
1744 /**
1745 * Performs bucket verification operation for all mcast groups in the devices.
1746 * Firstly, it verifies that mcast is stable before trying verification operation.
1747 * Verification consists in creating new nexts with VERIFY operation. Actually,
1748 * the operation is totally delegated to the driver.
1749 */
Piere99511d2018-04-19 16:47:06 +02001750 private final class McastBucketCorrector implements Runnable {
Pier Luigi35dab3f2018-01-25 16:16:02 +01001751
1752 @Override
1753 public void run() {
Pier Luigi35dab3f2018-01-25 16:16:02 +01001754 if (!isMcastStable()) {
1755 return;
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07001756 }
Pier Luigi35dab3f2018-01-25 16:16:02 +01001757 mcastLock();
1758 try {
1759 // Iterates over the routes and verify the related next objectives
1760 srManager.multicastRouteService.getRoutes()
Piere99511d2018-04-19 16:47:06 +02001761 .stream().map(McastRoute::group)
Pier Luigi35dab3f2018-01-25 16:16:02 +01001762 .forEach(mcastIp -> {
Piere99511d2018-04-19 16:47:06 +02001763 log.trace("Running mcast buckets corrector for mcast group: {}", mcastIp);
1764 // Verify leadership on the operation
1765 if (!mcastUtils.isLeader(mcastIp)) {
1766 log.trace("Skip {} due to lack of leadership", mcastIp);
1767 return;
1768 }
1769 // Get sources and sinks from Mcast Route Service and warn about errors
1770 Set<ConnectPoint> sources = mcastUtils.getSources(mcastIp);
Pier7b657162018-03-27 11:29:42 -07001771 Set<ConnectPoint> sinks = mcastUtils.getSinks(mcastIp).values().stream()
Piere99511d2018-04-19 16:47:06 +02001772 .flatMap(Collection::stream).collect(Collectors.toSet());
1773 // Do not proceed if sources of this group are missing
1774 if (sources.isEmpty()) {
Pier Luigi92e69be2018-03-02 12:53:37 +01001775 if (!sinks.isEmpty()) {
1776 log.warn("Unable to run buckets corrector. " +
Piere99511d2018-04-19 16:47:06 +02001777 "Missing source {} for group {}", sources, mcastIp);
Pier Luigi92e69be2018-03-02 12:53:37 +01001778 }
Pier Luigi35dab3f2018-01-25 16:16:02 +01001779 return;
1780 }
Piere99511d2018-04-19 16:47:06 +02001781 sources.forEach(source -> {
1782 // For each group we get current information in the store
1783 // and issue a check of the next objectives in place
1784 Set<DeviceId> ingressDevices = getDevice(mcastIp, INGRESS, source);
1785 Set<DeviceId> transitDevices = getDevice(mcastIp, TRANSIT, source);
1786 Set<DeviceId> egressDevices = getDevice(mcastIp, EGRESS, source);
1787 // Do not proceed if ingress devices are missing
1788 if (ingressDevices.isEmpty()) {
1789 if (!sinks.isEmpty()) {
1790 log.warn("Unable to run buckets corrector. " +
1791 "Missing ingress {} for source {} and for group {}",
1792 ingressDevices, source, mcastIp);
1793 }
1794 return;
Pier Luigi35dab3f2018-01-25 16:16:02 +01001795 }
Piere99511d2018-04-19 16:47:06 +02001796 // Create the set of the devices to be processed
1797 ImmutableSet.Builder<DeviceId> devicesBuilder = ImmutableSet.builder();
1798 if (!ingressDevices.isEmpty()) {
1799 devicesBuilder.addAll(ingressDevices);
1800 }
1801 if (!transitDevices.isEmpty()) {
1802 devicesBuilder.addAll(transitDevices);
1803 }
1804 if (!egressDevices.isEmpty()) {
1805 devicesBuilder.addAll(egressDevices);
1806 }
1807 Set<DeviceId> devicesToProcess = devicesBuilder.build();
1808 devicesToProcess.forEach(deviceId -> {
1809 VlanId assignedVlan = mcastUtils.assignedVlan(deviceId.equals(source.deviceId()) ?
1810 source : null);
1811 McastStoreKey currentKey = new McastStoreKey(mcastIp, deviceId, assignedVlan);
1812 if (mcastNextObjStore.containsKey(currentKey)) {
1813 NextObjective currentNext = mcastNextObjStore.get(currentKey).value();
1814 // Rebuild the next objective using assigned vlan
1815 currentNext = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
1816 mcastUtils.getPorts(currentNext.next()), currentNext.id()).verify();
1817 // Send to the flowobjective service
1818 srManager.flowObjectiveService.next(deviceId, currentNext);
1819 } else {
1820 log.warn("Unable to run buckets corrector. " +
1821 "Missing next for {}, for source {} and for group {}",
1822 deviceId, source, mcastIp);
1823 }
1824 });
Pier Luigi35dab3f2018-01-25 16:16:02 +01001825 });
Pier Luigi35dab3f2018-01-25 16:16:02 +01001826 });
1827 } finally {
Pier Luigi35dab3f2018-01-25 16:16:02 +01001828 mcastUnlock();
1829 }
1830
1831 }
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07001832 }
Pier Luigi0f9635b2018-01-15 18:06:43 +01001833
Piere99511d2018-04-19 16:47:06 +02001834 /**
1835 * Returns the associated next ids to the mcast groups or to the single
1836 * group if mcastIp is present.
1837 *
1838 * @param mcastIp the group ip
1839 * @return the mapping mcastIp-device to next id
1840 */
Charles Chan0b1dd7e2018-08-19 19:21:46 -07001841 public Map<McastStoreKey, Integer> getNextIds(IpAddress mcastIp) {
Pier Luigi0f9635b2018-01-15 18:06:43 +01001842 if (mcastIp != null) {
1843 return mcastNextObjStore.entrySet().stream()
1844 .filter(mcastEntry -> mcastIp.equals(mcastEntry.getKey().mcastIp()))
Piere99511d2018-04-19 16:47:06 +02001845 .collect(Collectors.toMap(Entry::getKey, entry -> entry.getValue().value().id()));
Pier Luigi0f9635b2018-01-15 18:06:43 +01001846 }
Pier Luigi0f9635b2018-01-15 18:06:43 +01001847 return mcastNextObjStore.entrySet().stream()
Piere99511d2018-04-19 16:47:06 +02001848 .collect(Collectors.toMap(Entry::getKey, entry -> entry.getValue().value().id()));
Pier Luigi0f9635b2018-01-15 18:06:43 +01001849 }
1850
Pier71c55772018-04-17 17:25:22 +02001851 /**
Charles Chan0b1dd7e2018-08-19 19:21:46 -07001852 * Removes given next ID from mcast next id store.
1853 *
1854 * @param nextId next id
1855 */
1856 public void removeNextId(int nextId) {
1857 mcastNextObjStore.entrySet().forEach(e -> {
1858 if (e.getValue().value().id() == nextId) {
1859 mcastNextObjStore.remove(e.getKey());
1860 }
1861 });
1862 }
1863
1864 /**
Pier71c55772018-04-17 17:25:22 +02001865 * Returns the associated roles to the mcast groups or to the single
1866 * group if mcastIp is present.
1867 *
1868 * @param mcastIp the group ip
1869 * @return the mapping mcastIp-device to mcast role
1870 *
1871 * @deprecated in 1.12 ("Magpie") release.
1872 */
1873 @Deprecated
Pier Luigi69f774d2018-02-28 12:10:50 +01001874 public Map<McastStoreKey, McastRole> getMcastRoles(IpAddress mcastIp) {
Pier Luigi0f9635b2018-01-15 18:06:43 +01001875 if (mcastIp != null) {
1876 return mcastRoleStore.entrySet().stream()
1877 .filter(mcastEntry -> mcastIp.equals(mcastEntry.getKey().mcastIp()))
Piere99511d2018-04-19 16:47:06 +02001878 .collect(Collectors.toMap(entry -> new McastStoreKey(entry.getKey().mcastIp(),
1879 entry.getKey().deviceId(), null), entry -> entry.getValue().value()));
Pier Luigi0f9635b2018-01-15 18:06:43 +01001880 }
Pier Luigi0f9635b2018-01-15 18:06:43 +01001881 return mcastRoleStore.entrySet().stream()
Piere99511d2018-04-19 16:47:06 +02001882 .collect(Collectors.toMap(entry -> new McastStoreKey(entry.getKey().mcastIp(),
1883 entry.getKey().deviceId(), null), entry -> entry.getValue().value()));
Pier Luigi0f9635b2018-01-15 18:06:43 +01001884 }
1885
Pier71c55772018-04-17 17:25:22 +02001886 /**
Piere99511d2018-04-19 16:47:06 +02001887 * Returns the associated roles to the mcast groups.
1888 *
1889 * @param mcastIp the group ip
1890 * @param sourcecp the source connect point
1891 * @return the mapping mcastIp-device to mcast role
1892 */
Charles Chanba59dd62018-05-10 22:19:49 +00001893 public Map<McastRoleStoreKey, McastRole> getMcastRoles(IpAddress mcastIp,
1894 ConnectPoint sourcecp) {
Piere99511d2018-04-19 16:47:06 +02001895 if (mcastIp != null) {
1896 Map<McastRoleStoreKey, McastRole> roles = mcastRoleStore.entrySet().stream()
1897 .filter(mcastEntry -> mcastIp.equals(mcastEntry.getKey().mcastIp()))
1898 .collect(Collectors.toMap(entry -> new McastRoleStoreKey(entry.getKey().mcastIp(),
1899 entry.getKey().deviceId(), entry.getKey().source()), entry -> entry.getValue().value()));
1900 if (sourcecp != null) {
1901 roles = roles.entrySet().stream()
1902 .filter(mcastEntry -> sourcecp.equals(mcastEntry.getKey().source()))
1903 .collect(Collectors.toMap(entry -> new McastRoleStoreKey(entry.getKey().mcastIp(),
1904 entry.getKey().deviceId(), entry.getKey().source()), Entry::getValue));
1905 }
1906 return roles;
1907 }
1908 return mcastRoleStore.entrySet().stream()
1909 .collect(Collectors.toMap(entry -> new McastRoleStoreKey(entry.getKey().mcastIp(),
1910 entry.getKey().deviceId(), entry.getKey().source()), entry -> entry.getValue().value()));
1911 }
1912
1913
1914 /**
Pier71c55772018-04-17 17:25:22 +02001915 * Returns the associated paths to the mcast group.
1916 *
1917 * @param mcastIp the group ip
1918 * @return the mapping egress point to mcast path
1919 *
1920 * @deprecated in 1.12 ("Magpie") release.
1921 */
1922 @Deprecated
Pier Luigi0f9635b2018-01-15 18:06:43 +01001923 public Map<ConnectPoint, List<ConnectPoint>> getMcastPaths(IpAddress mcastIp) {
1924 Map<ConnectPoint, List<ConnectPoint>> mcastPaths = Maps.newHashMap();
Pier7b657162018-03-27 11:29:42 -07001925 ConnectPoint source = mcastUtils.getSource(mcastIp);
Pier Luigi0f9635b2018-01-15 18:06:43 +01001926 if (source != null) {
Pier Luigi0f9635b2018-01-15 18:06:43 +01001927 Set<DeviceId> visited = Sets.newHashSet();
Piere99511d2018-04-19 16:47:06 +02001928 List<ConnectPoint> currentPath = Lists.newArrayList(source);
Charles Chan0b1dd7e2018-08-19 19:21:46 -07001929 mcastUtils.buildMcastPaths(mcastNextObjStore.asJavaMap(), source.deviceId(), visited, mcastPaths,
1930 currentPath, mcastIp, source);
Pier Luigi0f9635b2018-01-15 18:06:43 +01001931 }
1932 return mcastPaths;
1933 }
1934
Pier71c55772018-04-17 17:25:22 +02001935 /**
1936 * Returns the associated trees to the mcast group.
1937 *
1938 * @param mcastIp the group ip
1939 * @param sourcecp the source connect point
1940 * @return the mapping egress point to mcast path
1941 */
Charles Chanba59dd62018-05-10 22:19:49 +00001942 public Multimap<ConnectPoint, List<ConnectPoint>> getMcastTrees(IpAddress mcastIp,
1943 ConnectPoint sourcecp) {
Pier71c55772018-04-17 17:25:22 +02001944 Multimap<ConnectPoint, List<ConnectPoint>> mcastTrees = HashMultimap.create();
Pier71c55772018-04-17 17:25:22 +02001945 Set<ConnectPoint> sources = mcastUtils.getSources(mcastIp);
Pier71c55772018-04-17 17:25:22 +02001946 if (sourcecp != null) {
1947 sources = sources.stream()
Piere99511d2018-04-19 16:47:06 +02001948 .filter(source -> source.equals(sourcecp)).collect(Collectors.toSet());
Pier71c55772018-04-17 17:25:22 +02001949 }
Pier71c55772018-04-17 17:25:22 +02001950 if (!sources.isEmpty()) {
1951 sources.forEach(source -> {
Pier71c55772018-04-17 17:25:22 +02001952 Map<ConnectPoint, List<ConnectPoint>> mcastPaths = Maps.newHashMap();
1953 Set<DeviceId> visited = Sets.newHashSet();
1954 List<ConnectPoint> currentPath = Lists.newArrayList(source);
Charles Chan0b1dd7e2018-08-19 19:21:46 -07001955 mcastUtils.buildMcastPaths(mcastNextObjStore.asJavaMap(), source.deviceId(), visited, mcastPaths,
1956 currentPath, mcastIp, source);
Pier71c55772018-04-17 17:25:22 +02001957 mcastPaths.forEach(mcastTrees::put);
1958 });
1959 }
1960 return mcastTrees;
1961 }
1962
1963 /**
Pierdb27b8d2018-04-17 16:29:56 +02001964 * Return the leaders of the mcast groups.
1965 *
1966 * @param mcastIp the group ip
1967 * @return the mapping group-node
1968 */
1969 public Map<IpAddress, NodeId> getMcastLeaders(IpAddress mcastIp) {
1970 return mcastUtils.getMcastLeaders(mcastIp);
1971 }
Charles Chanc91c8782016-03-30 17:54:24 -07001972}