blob: 9db890d0bd5ec3790f0bbf3831a8b93735e35f49 [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
Vignesh Ethiraj75790122019-08-26 12:18:42 +00001160 if (!srManager.deviceConfiguration().isConfigured(deviceId)) {
1161 log.debug("Passing 0 as nextId for unconfigured device {}", deviceId);
1162 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
1163 portBuilder.build(), 0).add();
1164 } else {
1165 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
1166 portBuilder.build(), null).add();
1167 }
Pier Luigi4f0dd212018-01-19 10:24:53 +01001168 // Store the new port
1169 mcastNextObjStore.put(mcastStoreKey, newNextObj);
Charles Chanc91c8782016-03-30 17:54:24 -07001170 } else {
1171 // This device already serves some subscribers of this mcast group
Charles Chan72779502016-04-23 17:36:10 -07001172 NextObjective nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Charles Chanc91c8782016-03-30 17:54:24 -07001173 // Stop if the port is already in the nextobj
Pier7b657162018-03-27 11:29:42 -07001174 Set<PortNumber> existingPorts = mcastUtils.getPorts(nextObj.next());
Charles Chanc91c8782016-03-30 17:54:24 -07001175 if (existingPorts.contains(port)) {
1176 log.info("NextObj for {}/{} already exists. Abort", deviceId, port);
1177 return;
1178 }
Pier Luigi4f0dd212018-01-19 10:24:53 +01001179 // Let's add the port and reuse the previous one
Yuta HIGUCHIbef07b52018-02-09 18:05:23 -08001180 portBuilder.addAll(existingPorts).add(port);
Pier Luigi4f0dd212018-01-19 10:24:53 +01001181 // Reuse previous nextObj
Pier7b657162018-03-27 11:29:42 -07001182 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigi4f0dd212018-01-19 10:24:53 +01001183 portBuilder.build(), nextObj.id()).addToExisting();
1184 // Store the final next objective and send only the difference to the driver
1185 mcastNextObjStore.put(mcastStoreKey, newNextObj);
1186 // Add just the new port
1187 portBuilder = ImmutableSet.builder();
1188 portBuilder.add(port);
Pier7b657162018-03-27 11:29:42 -07001189 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigi4f0dd212018-01-19 10:24:53 +01001190 portBuilder.build(), nextObj.id()).addToExisting();
Charles Chanc91c8782016-03-30 17:54:24 -07001191 }
1192 // Create, store and apply the new nextObj and fwdObj
Charles Chan72779502016-04-23 17:36:10 -07001193 ObjectiveContext context = new DefaultObjectiveContext(
1194 (objective) -> log.debug("Successfully add {} on {}/{}, vlan {}",
1195 mcastIp, deviceId, port.toLong(), assignedVlan),
Charles Chanfacfbef2018-08-23 14:30:33 -07001196 (objective, error) -> {
1197 log.warn("Failed to add {} on {}/{}, vlan {}: {}",
1198 mcastIp, deviceId, port.toLong(), assignedVlan, error);
1199 srManager.invalidateNextObj(objective.id());
1200 });
Pier7b657162018-03-27 11:29:42 -07001201 ForwardingObjective fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan,
1202 newNextObj.id()).add(context);
Vignesh Ethiraj75790122019-08-26 12:18:42 +00001203 if (!srManager.deviceConfiguration().isConfigured(deviceId)) {
1204 log.debug("skip next and forward flowobjective addition for device: {}", deviceId);
1205 } else {
1206 srManager.flowObjectiveService.next(deviceId, newNextObj);
1207 srManager.flowObjectiveService.forward(deviceId, fwdObj);
1208 }
Charles Chanc91c8782016-03-30 17:54:24 -07001209 }
1210
1211 /**
1212 * Removes a port from given multicast group on given device.
1213 * This involves the update of L3 multicast group and multicast routing
1214 * table entry.
1215 *
1216 * @param deviceId device ID
1217 * @param port port to be added
1218 * @param mcastIp multicast group
1219 * @param assignedVlan assigned VLAN ID
1220 * @return true if this is the last sink on this device
1221 */
Charles Chanba59dd62018-05-10 22:19:49 +00001222 private boolean removePortFromDevice(DeviceId deviceId, PortNumber port,
1223 IpAddress mcastIp, VlanId assignedVlan) {
Charles Chan72779502016-04-23 17:36:10 -07001224 McastStoreKey mcastStoreKey =
Piere99511d2018-04-19 16:47:06 +02001225 new McastStoreKey(mcastIp, deviceId, assignedVlan);
Charles Chanc91c8782016-03-30 17:54:24 -07001226 // This device is not serving this multicast group
Charles Chan72779502016-04-23 17:36:10 -07001227 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
Piere99511d2018-04-19 16:47:06 +02001228 return true;
Charles Chanc91c8782016-03-30 17:54:24 -07001229 }
Charles Chan72779502016-04-23 17:36:10 -07001230 NextObjective nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Pier7b657162018-03-27 11:29:42 -07001231 Set<PortNumber> existingPorts = mcastUtils.getPorts(nextObj.next());
Charles Chan72779502016-04-23 17:36:10 -07001232 // This port does not serve this multicast group
Charles Chanc91c8782016-03-30 17:54:24 -07001233 if (!existingPorts.contains(port)) {
Piere99511d2018-04-19 16:47:06 +02001234 if (!existingPorts.isEmpty()) {
1235 log.warn("{} is not serving {} on port {}. Abort.", deviceId, mcastIp, port);
1236 return false;
1237 }
1238 return true;
Charles Chanc91c8782016-03-30 17:54:24 -07001239 }
1240 // Copy and modify the ImmutableSet
1241 existingPorts = Sets.newHashSet(existingPorts);
1242 existingPorts.remove(port);
Charles Chanc91c8782016-03-30 17:54:24 -07001243 NextObjective newNextObj;
Pier Luigi8cd46de2018-01-19 10:24:53 +01001244 ObjectiveContext context;
Charles Chanc91c8782016-03-30 17:54:24 -07001245 ForwardingObjective fwdObj;
1246 if (existingPorts.isEmpty()) {
Pier Luigi8cd46de2018-01-19 10:24:53 +01001247 context = new DefaultObjectiveContext(
Charles Chan72779502016-04-23 17:36:10 -07001248 (objective) -> log.debug("Successfully remove {} on {}/{}, vlan {}",
1249 mcastIp, deviceId, port.toLong(), assignedVlan),
Piere99511d2018-04-19 16:47:06 +02001250 (objective, error) -> log.warn("Failed to remove {} on {}/{}, vlan {}: {}",
Charles Chan72779502016-04-23 17:36:10 -07001251 mcastIp, deviceId, port.toLong(), assignedVlan, error));
Pier7b657162018-03-27 11:29:42 -07001252 fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan, nextObj.id()).remove(context);
Charles Chan72779502016-04-23 17:36:10 -07001253 mcastNextObjStore.remove(mcastStoreKey);
Charles Chanc91c8782016-03-30 17:54:24 -07001254 } else {
1255 // If this is not the last sink, update flows and groups
Pier Luigi8cd46de2018-01-19 10:24:53 +01001256 context = new DefaultObjectiveContext(
Charles Chan72779502016-04-23 17:36:10 -07001257 (objective) -> log.debug("Successfully update {} on {}/{}, vlan {}",
1258 mcastIp, deviceId, port.toLong(), assignedVlan),
Charles Chanfacfbef2018-08-23 14:30:33 -07001259 (objective, error) -> {
1260 log.warn("Failed to update {} on {}/{}, vlan {}: {}",
1261 mcastIp, deviceId, port.toLong(), assignedVlan, error);
1262 srManager.invalidateNextObj(objective.id());
1263 });
Pier Luigi8cd46de2018-01-19 10:24:53 +01001264 // Here we store the next objective with the remaining port
Pier7b657162018-03-27 11:29:42 -07001265 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigi8cd46de2018-01-19 10:24:53 +01001266 existingPorts, nextObj.id()).removeFromExisting();
Pier7b657162018-03-27 11:29:42 -07001267 fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan, newNextObj.id()).add(context);
Charles Chan72779502016-04-23 17:36:10 -07001268 mcastNextObjStore.put(mcastStoreKey, newNextObj);
Charles Chanc91c8782016-03-30 17:54:24 -07001269 }
Pier Luigi8cd46de2018-01-19 10:24:53 +01001270 // Let's modify the next objective removing the bucket
Pier7b657162018-03-27 11:29:42 -07001271 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigi8cd46de2018-01-19 10:24:53 +01001272 ImmutableSet.of(port), nextObj.id()).removeFromExisting();
Vignesh Ethiraj75790122019-08-26 12:18:42 +00001273 if (!srManager.deviceConfiguration().isConfigured(deviceId)) {
1274 log.debug("skip forward and next flow objectives from adding flows on device: {}", deviceId);
1275 } else {
1276 srManager.flowObjectiveService.next(deviceId, newNextObj);
1277 srManager.flowObjectiveService.forward(deviceId, fwdObj);
1278 }
Charles Chanc91c8782016-03-30 17:54:24 -07001279 return existingPorts.isEmpty();
1280 }
1281
Charles Chan72779502016-04-23 17:36:10 -07001282 /**
1283 * Removes entire group on given device.
1284 *
1285 * @param deviceId device ID
1286 * @param mcastIp multicast group to be removed
1287 * @param assignedVlan assigned VLAN ID
1288 */
Charles Chanba59dd62018-05-10 22:19:49 +00001289 private void removeGroupFromDevice(DeviceId deviceId, IpAddress mcastIp,
1290 VlanId assignedVlan) {
Piere99511d2018-04-19 16:47:06 +02001291 McastStoreKey mcastStoreKey = new McastStoreKey(mcastIp, deviceId, assignedVlan);
Charles Chan72779502016-04-23 17:36:10 -07001292 // This device is not serving this multicast group
1293 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
1294 log.warn("{} is not serving {}. Abort.", deviceId, mcastIp);
1295 return;
1296 }
1297 NextObjective nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Charles Chan72779502016-04-23 17:36:10 -07001298 ObjectiveContext context = new DefaultObjectiveContext(
1299 (objective) -> log.debug("Successfully remove {} on {}, vlan {}",
1300 mcastIp, deviceId, assignedVlan),
Piere99511d2018-04-19 16:47:06 +02001301 (objective, error) -> log.warn("Failed to remove {} on {}, vlan {}: {}",
Charles Chan72779502016-04-23 17:36:10 -07001302 mcastIp, deviceId, assignedVlan, error));
Vignesh Ethiraj75790122019-08-26 12:18:42 +00001303 if (!srManager.deviceConfiguration().isConfigured(deviceId)) {
1304 log.debug("skip flow changes on unconfigured device: {}", deviceId);
1305 } else {
1306 ForwardingObjective fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan, nextObj.id()).remove(context);
1307 srManager.flowObjectiveService.forward(deviceId, fwdObj);
1308 }
Charles Chan72779502016-04-23 17:36:10 -07001309 mcastNextObjStore.remove(mcastStoreKey);
Charles Chan72779502016-04-23 17:36:10 -07001310 }
1311
Pier Luigi580fd8a2018-01-16 10:47:50 +01001312 private void installPath(IpAddress mcastIp, ConnectPoint source, Path mcastPath) {
Pier Luigi580fd8a2018-01-16 10:47:50 +01001313 List<Link> links = mcastPath.links();
kezhiyong168fbba2018-12-03 16:14:29 +08001314 if (links.isEmpty()) {
1315 log.warn("There is no link that can be used. Stopping installation.");
1316 return;
1317 }
Pier1a7e0c02018-03-12 15:00:54 -07001318 // Setup new ingress mcast role
Piere99511d2018-04-19 16:47:06 +02001319 mcastRoleStore.put(new McastRoleStoreKey(mcastIp, links.get(0).src().deviceId(), source),
Pier1a7e0c02018-03-12 15:00:54 -07001320 INGRESS);
Pier Luigi580fd8a2018-01-16 10:47:50 +01001321 // For each link, modify the next on the source device adding the src port
1322 // and a new filter objective on the destination port
1323 links.forEach(link -> {
1324 addPortToDevice(link.src().deviceId(), link.src().port(), mcastIp,
Pier7b657162018-03-27 11:29:42 -07001325 mcastUtils.assignedVlan(link.src().deviceId().equals(source.deviceId()) ? source : null));
1326 mcastUtils.addFilterToDevice(link.dst().deviceId(), link.dst().port(),
1327 mcastUtils.assignedVlan(null), mcastIp, null);
Pier Luigi580fd8a2018-01-16 10:47:50 +01001328 });
Pier1a7e0c02018-03-12 15:00:54 -07001329 // Setup mcast role for the transit
1330 links.stream()
1331 .filter(link -> !link.src().deviceId().equals(source.deviceId()))
Piere99511d2018-04-19 16:47:06 +02001332 .forEach(link -> mcastRoleStore.put(new McastRoleStoreKey(mcastIp, link.src().deviceId(), source),
Pier1a7e0c02018-03-12 15:00:54 -07001333 TRANSIT));
Charles Chan72779502016-04-23 17:36:10 -07001334 }
1335
Charles Chanc91c8782016-03-30 17:54:24 -07001336 /**
Pier1f87aca2018-03-14 16:47:32 -07001337 * Go through all the paths, looking for shared links to be used
1338 * in the final path computation.
1339 *
1340 * @param egresses egress devices
1341 * @param availablePaths all the available paths towards the egress
1342 * @return shared links between egress devices
1343 */
Charles Chanba59dd62018-05-10 22:19:49 +00001344 private Set<Link> exploreMcastTree(Set<DeviceId> egresses,
1345 Map<DeviceId, List<Path>> availablePaths) {
Pier1f87aca2018-03-14 16:47:32 -07001346 int minLength = Integer.MAX_VALUE;
1347 int length;
Pier1f87aca2018-03-14 16:47:32 -07001348 List<Path> currentPaths;
1349 // Verify the source can still reach all the egresses
1350 for (DeviceId egress : egresses) {
1351 // From the source we cannot reach all the sinks
Pier7b657162018-03-27 11:29:42 -07001352 // just continue and let's figure out after
Pier1f87aca2018-03-14 16:47:32 -07001353 currentPaths = availablePaths.get(egress);
1354 if (currentPaths.isEmpty()) {
1355 continue;
1356 }
Piere99511d2018-04-19 16:47:06 +02001357 // Get the length of the first one available, update the min length
Pier1f87aca2018-03-14 16:47:32 -07001358 length = currentPaths.get(0).links().size();
1359 if (length < minLength) {
1360 minLength = length;
1361 }
Pier Luigi51ee7c02018-02-23 19:57:40 +01001362 }
Pier1f87aca2018-03-14 16:47:32 -07001363 // If there are no paths
1364 if (minLength == Integer.MAX_VALUE) {
1365 return Collections.emptySet();
1366 }
Pier1f87aca2018-03-14 16:47:32 -07001367 int index = 0;
Pier1f87aca2018-03-14 16:47:32 -07001368 Set<Link> sharedLinks = Sets.newHashSet();
1369 Set<Link> currentSharedLinks;
1370 Set<Link> currentLinks;
Pier7b657162018-03-27 11:29:42 -07001371 DeviceId egressToRemove = null;
Pier1f87aca2018-03-14 16:47:32 -07001372 // Let's find out the shared links
1373 while (index < minLength) {
1374 // Initialize the intersection with the paths related to the first egress
Piere99511d2018-04-19 16:47:06 +02001375 currentPaths = availablePaths.get(egresses.stream().findFirst().orElse(null));
Pier1f87aca2018-03-14 16:47:32 -07001376 currentSharedLinks = Sets.newHashSet();
1377 // Iterate over the paths and take the "index" links
1378 for (Path path : currentPaths) {
1379 currentSharedLinks.add(path.links().get(index));
1380 }
1381 // Iterate over the remaining egress
1382 for (DeviceId egress : egresses) {
1383 // Iterate over the paths and take the "index" links
1384 currentLinks = Sets.newHashSet();
1385 for (Path path : availablePaths.get(egress)) {
1386 currentLinks.add(path.links().get(index));
1387 }
1388 // Do intersection
1389 currentSharedLinks = Sets.intersection(currentSharedLinks, currentLinks);
1390 // If there are no shared paths exit and record the device to remove
1391 // we have to retry with a subset of sinks
1392 if (currentSharedLinks.isEmpty()) {
Pier7b657162018-03-27 11:29:42 -07001393 egressToRemove = egress;
Pier1f87aca2018-03-14 16:47:32 -07001394 index = minLength;
1395 break;
1396 }
1397 }
1398 sharedLinks.addAll(currentSharedLinks);
1399 index++;
1400 }
Piere99511d2018-04-19 16:47:06 +02001401 // If the shared links is empty and there are egress let's retry another time with less sinks,
1402 // we can still build optimal subtrees
Pier7b657162018-03-27 11:29:42 -07001403 if (sharedLinks.isEmpty() && egresses.size() > 1 && egressToRemove != null) {
1404 egresses.remove(egressToRemove);
Pier1f87aca2018-03-14 16:47:32 -07001405 sharedLinks = exploreMcastTree(egresses, availablePaths);
1406 }
1407 return sharedLinks;
1408 }
1409
1410 /**
1411 * Build Mcast tree having as root the given source and as leaves the given egress points.
1412 *
1413 * @param source source of the tree
1414 * @param sinks leaves of the tree
1415 * @return the computed Mcast tree
1416 */
Charles Chanba59dd62018-05-10 22:19:49 +00001417 private Map<ConnectPoint, List<Path>> computeSinkMcastTree(DeviceId source,
1418 Set<ConnectPoint> sinks) {
Pier1f87aca2018-03-14 16:47:32 -07001419 // Get the egress devices, remove source from the egress if present
Piere99511d2018-04-19 16:47:06 +02001420 Set<DeviceId> egresses = sinks.stream().map(ConnectPoint::deviceId)
1421 .filter(deviceId -> !deviceId.equals(source)).collect(Collectors.toSet());
Pier1f87aca2018-03-14 16:47:32 -07001422 Map<DeviceId, List<Path>> mcastTree = computeMcastTree(source, egresses);
Pier1f87aca2018-03-14 16:47:32 -07001423 final Map<ConnectPoint, List<Path>> finalTree = Maps.newHashMap();
Pier7b657162018-03-27 11:29:42 -07001424 // We need to put back the source if it was originally present
1425 sinks.forEach(sink -> {
1426 List<Path> sinkPaths = mcastTree.get(sink.deviceId());
1427 finalTree.put(sink, sinkPaths != null ? sinkPaths : ImmutableList.of());
1428 });
Pier1f87aca2018-03-14 16:47:32 -07001429 return finalTree;
1430 }
1431
1432 /**
1433 * Build Mcast tree having as root the given source and as leaves the given egress.
1434 *
1435 * @param source source of the tree
1436 * @param egresses leaves of the tree
1437 * @return the computed Mcast tree
1438 */
1439 private Map<DeviceId, List<Path>> computeMcastTree(DeviceId source,
1440 Set<DeviceId> egresses) {
1441 // Pre-compute all the paths
1442 Map<DeviceId, List<Path>> availablePaths = Maps.newHashMap();
Pier1f87aca2018-03-14 16:47:32 -07001443 egresses.forEach(egress -> availablePaths.put(egress, getPaths(source, egress,
1444 Collections.emptySet())));
1445 // Explore the topology looking for shared links amongst the egresses
1446 Set<Link> linksToEnforce = exploreMcastTree(Sets.newHashSet(egresses), availablePaths);
Pier1f87aca2018-03-14 16:47:32 -07001447 // Build the final paths enforcing the shared links between egress devices
Piere99511d2018-04-19 16:47:06 +02001448 availablePaths.clear();
Pier1f87aca2018-03-14 16:47:32 -07001449 egresses.forEach(egress -> availablePaths.put(egress, getPaths(source, egress,
1450 linksToEnforce)));
1451 return availablePaths;
1452 }
1453
1454 /**
1455 * Gets path from src to dst computed using the custom link weigher.
1456 *
1457 * @param src source device ID
1458 * @param dst destination device ID
1459 * @return list of paths from src to dst
1460 */
1461 private List<Path> getPaths(DeviceId src, DeviceId dst, Set<Link> linksToEnforce) {
Pier1f87aca2018-03-14 16:47:32 -07001462 final Topology currentTopology = topologyService.currentTopology();
Pier1f87aca2018-03-14 16:47:32 -07001463 final LinkWeigher linkWeigher = new SRLinkWeigher(srManager, src, linksToEnforce);
Piere99511d2018-04-19 16:47:06 +02001464 List<Path> allPaths = Lists.newArrayList(topologyService.getPaths(currentTopology, src, dst, linkWeigher));
Pier1f87aca2018-03-14 16:47:32 -07001465 log.debug("{} path(s) found from {} to {}", allPaths.size(), src, dst);
1466 return allPaths;
Pier Luigi51ee7c02018-02-23 19:57:40 +01001467 }
1468
Charles Chanc91c8782016-03-30 17:54:24 -07001469 /**
1470 * Gets a path from src to dst.
1471 * If a path was allocated before, returns the allocated path.
1472 * Otherwise, randomly pick one from available paths.
1473 *
1474 * @param src source device ID
1475 * @param dst destination device ID
1476 * @param mcastIp multicast group
Pier1f87aca2018-03-14 16:47:32 -07001477 * @param allPaths paths list
Charles Chanc91c8782016-03-30 17:54:24 -07001478 * @return an optional path from src to dst
1479 */
Piere99511d2018-04-19 16:47:06 +02001480 private Optional<Path> getPath(DeviceId src, DeviceId dst, IpAddress mcastIp,
1481 List<Path> allPaths, ConnectPoint source) {
Pier1f87aca2018-03-14 16:47:32 -07001482 if (allPaths == null) {
1483 allPaths = getPaths(src, dst, Collections.emptySet());
1484 }
Charles Chanc91c8782016-03-30 17:54:24 -07001485 if (allPaths.isEmpty()) {
Charles Chanc91c8782016-03-30 17:54:24 -07001486 return Optional.empty();
1487 }
Piere99511d2018-04-19 16:47:06 +02001488 // Create a map index of suitability-to-list of paths. For example
Pier Luigi91573e12018-01-23 16:06:38 +01001489 // a path in the list associated to the index 1 shares only the
1490 // first hop and it is less suitable of a path belonging to the index
1491 // 2 that shares leaf-spine.
1492 Map<Integer, List<Path>> eligiblePaths = Maps.newHashMap();
Pier Luigi91573e12018-01-23 16:06:38 +01001493 int nhop;
1494 McastStoreKey mcastStoreKey;
Pier Luigi91573e12018-01-23 16:06:38 +01001495 PortNumber srcPort;
1496 Set<PortNumber> existingPorts;
1497 NextObjective nextObj;
Pier Luigi91573e12018-01-23 16:06:38 +01001498 for (Path path : allPaths) {
Pier Luigi91573e12018-01-23 16:06:38 +01001499 if (!src.equals(path.links().get(0).src().deviceId())) {
1500 continue;
1501 }
1502 nhop = 0;
1503 // Iterate over the links
Piere99511d2018-04-19 16:47:06 +02001504 for (Link hop : path.links()) {
1505 VlanId assignedVlan = mcastUtils.assignedVlan(hop.src().deviceId().equals(src) ?
1506 source : null);
1507 mcastStoreKey = new McastStoreKey(mcastIp, hop.src().deviceId(), assignedVlan);
1508 // It does not exist in the store, go to the next link
Pier Luigi91573e12018-01-23 16:06:38 +01001509 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
Piere99511d2018-04-19 16:47:06 +02001510 continue;
Charles Chanc91c8782016-03-30 17:54:24 -07001511 }
Pier Luigi91573e12018-01-23 16:06:38 +01001512 nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Pier7b657162018-03-27 11:29:42 -07001513 existingPorts = mcastUtils.getPorts(nextObj.next());
Pier Luigi91573e12018-01-23 16:06:38 +01001514 srcPort = hop.src().port();
Piere99511d2018-04-19 16:47:06 +02001515 // the src port is not used as output, go to the next link
Pier Luigi91573e12018-01-23 16:06:38 +01001516 if (!existingPorts.contains(srcPort)) {
Piere99511d2018-04-19 16:47:06 +02001517 continue;
Pier Luigi91573e12018-01-23 16:06:38 +01001518 }
1519 nhop++;
1520 }
1521 // n_hop defines the index
1522 if (nhop > 0) {
1523 eligiblePaths.compute(nhop, (index, paths) -> {
1524 paths = paths == null ? Lists.newArrayList() : paths;
1525 paths.add(path);
1526 return paths;
1527 });
Charles Chanc91c8782016-03-30 17:54:24 -07001528 }
1529 }
Pier Luigi91573e12018-01-23 16:06:38 +01001530 if (eligiblePaths.isEmpty()) {
1531 log.debug("No eligiblePath(s) found from {} to {}", src, dst);
Pier Luigi91573e12018-01-23 16:06:38 +01001532 Collections.shuffle(allPaths);
1533 return allPaths.stream().findFirst();
1534 }
Pier Luigi91573e12018-01-23 16:06:38 +01001535 // Let's take the best ones
Piere99511d2018-04-19 16:47:06 +02001536 Integer bestIndex = eligiblePaths.keySet().stream()
1537 .sorted(Comparator.reverseOrder()).findFirst().orElse(null);
Pier Luigi91573e12018-01-23 16:06:38 +01001538 List<Path> bestPaths = eligiblePaths.get(bestIndex);
1539 log.debug("{} eligiblePath(s) found from {} to {}",
1540 bestPaths.size(), src, dst);
Pier Luigi91573e12018-01-23 16:06:38 +01001541 Collections.shuffle(bestPaths);
1542 return bestPaths.stream().findFirst();
Charles Chanc91c8782016-03-30 17:54:24 -07001543 }
1544
1545 /**
Piere99511d2018-04-19 16:47:06 +02001546 * Gets device(s) of given role and of given source in given multicast tree.
1547 *
1548 * @param mcastIp multicast IP
1549 * @param role multicast role
1550 * @param source source connect point
1551 * @return set of device ID or empty set if not found
1552 */
1553 private Set<DeviceId> getDevice(IpAddress mcastIp, McastRole role, ConnectPoint source) {
1554 return mcastRoleStore.entrySet().stream()
1555 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp) &&
Charles Chanba59dd62018-05-10 22:19:49 +00001556 entry.getKey().source().equals(source) &&
1557 entry.getValue().value() == role)
Piere99511d2018-04-19 16:47:06 +02001558 .map(Entry::getKey).map(McastRoleStoreKey::deviceId).collect(Collectors.toSet());
1559 }
1560
1561 /**
Charles Chan72779502016-04-23 17:36:10 -07001562 * Gets device(s) of given role in given multicast group.
1563 *
1564 * @param mcastIp multicast IP
1565 * @param role multicast role
1566 * @return set of device ID or empty set if not found
1567 */
1568 private Set<DeviceId> getDevice(IpAddress mcastIp, McastRole role) {
1569 return mcastRoleStore.entrySet().stream()
1570 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp) &&
1571 entry.getValue().value() == role)
Piere99511d2018-04-19 16:47:06 +02001572 .map(Entry::getKey).map(McastRoleStoreKey::deviceId).collect(Collectors.toSet());
1573 }
1574
1575 /**
1576 * Gets source(s) of given role, given device in given multicast group.
1577 *
1578 * @param mcastIp multicast IP
1579 * @param deviceId device id
1580 * @param role multicast role
1581 * @return set of device ID or empty set if not found
1582 */
1583 private Set<ConnectPoint> getSources(IpAddress mcastIp, DeviceId deviceId, McastRole role) {
1584 return mcastRoleStore.entrySet().stream()
1585 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp) &&
1586 entry.getKey().deviceId().equals(deviceId) && entry.getValue().value() == role)
1587 .map(Entry::getKey).map(McastRoleStoreKey::source).collect(Collectors.toSet());
1588 }
1589
1590 /**
1591 * Gets source(s) of given multicast group.
1592 *
1593 * @param mcastIp multicast IP
1594 * @return set of device ID or empty set if not found
1595 */
1596 private Set<ConnectPoint> getSources(IpAddress mcastIp) {
1597 return mcastRoleStore.entrySet().stream()
1598 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp))
1599 .map(Entry::getKey).map(McastRoleStoreKey::source).collect(Collectors.toSet());
Charles Chan72779502016-04-23 17:36:10 -07001600 }
1601
1602 /**
1603 * Gets groups which is affected by the link down event.
1604 *
1605 * @param link link going down
1606 * @return a set of multicast IpAddress
1607 */
1608 private Set<IpAddress> getAffectedGroups(Link link) {
1609 DeviceId deviceId = link.src().deviceId();
1610 PortNumber port = link.src().port();
1611 return mcastNextObjStore.entrySet().stream()
1612 .filter(entry -> entry.getKey().deviceId().equals(deviceId) &&
Piere99511d2018-04-19 16:47:06 +02001613 mcastUtils.getPorts(entry.getValue().value().next()).contains(port))
1614 .map(Entry::getKey).map(McastStoreKey::mcastIp).collect(Collectors.toSet());
Charles Chan72779502016-04-23 17:36:10 -07001615 }
1616
1617 /**
Pier Luigi580fd8a2018-01-16 10:47:50 +01001618 * Gets groups which are affected by the device down event.
1619 *
1620 * @param deviceId device going down
1621 * @return a set of multicast IpAddress
1622 */
1623 private Set<IpAddress> getAffectedGroups(DeviceId deviceId) {
1624 return mcastNextObjStore.entrySet().stream()
1625 .filter(entry -> entry.getKey().deviceId().equals(deviceId))
Pier1f87aca2018-03-14 16:47:32 -07001626 .map(Entry::getKey).map(McastStoreKey::mcastIp)
Pier Luigi580fd8a2018-01-16 10:47:50 +01001627 .collect(Collectors.toSet());
1628 }
1629
1630 /**
Charles Chan72779502016-04-23 17:36:10 -07001631 * Gets the spine-facing port on ingress device of given multicast group.
1632 *
1633 * @param mcastIp multicast IP
Piere99511d2018-04-19 16:47:06 +02001634 * @param ingressDevice the ingress device
1635 * @param source the source connect point
Charles Chan72779502016-04-23 17:36:10 -07001636 * @return spine-facing port on ingress device
1637 */
Charles Chanba59dd62018-05-10 22:19:49 +00001638 private Set<PortNumber> ingressTransitPort(IpAddress mcastIp, DeviceId ingressDevice,
1639 ConnectPoint source) {
Pier1a7e0c02018-03-12 15:00:54 -07001640 ImmutableSet.Builder<PortNumber> portBuilder = ImmutableSet.builder();
Charles Chan72779502016-04-23 17:36:10 -07001641 if (ingressDevice != null) {
Andrea Campanella5b4cd652018-06-05 14:19:21 +02001642 Versioned<NextObjective> nextObjVers = mcastNextObjStore.get(new McastStoreKey(mcastIp, ingressDevice,
1643 mcastUtils.assignedVlan(source)));
1644 if (nextObjVers == null) {
1645 log.warn("Absent next objective for {}", new McastStoreKey(mcastIp, ingressDevice,
1646 mcastUtils.assignedVlan(source)));
1647 return portBuilder.build();
1648 }
1649 NextObjective nextObj = nextObjVers.value();
Pier7b657162018-03-27 11:29:42 -07001650 Set<PortNumber> ports = mcastUtils.getPorts(nextObj.next());
Pier1a7e0c02018-03-12 15:00:54 -07001651 // Let's find out all the ingress-transit ports
Charles Chan72779502016-04-23 17:36:10 -07001652 for (PortNumber port : ports) {
1653 // Spine-facing port should have no subnet and no xconnect
Pier Luigi69f774d2018-02-28 12:10:50 +01001654 if (srManager.deviceConfiguration() != null &&
1655 srManager.deviceConfiguration().getPortSubnets(ingressDevice, port).isEmpty() &&
Charles Chan8d316332018-06-19 20:31:57 -07001656 (srManager.xconnectService == null ||
1657 !srManager.xconnectService.hasXconnect(new ConnectPoint(ingressDevice, port)))) {
Pier1a7e0c02018-03-12 15:00:54 -07001658 portBuilder.add(port);
Charles Chan72779502016-04-23 17:36:10 -07001659 }
1660 }
1661 }
Pier1a7e0c02018-03-12 15:00:54 -07001662 return portBuilder.build();
Charles Chan72779502016-04-23 17:36:10 -07001663 }
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07001664
1665 /**
Pier28164682018-04-17 15:50:43 +02001666 * Verify if a given connect point is sink for this group.
1667 *
1668 * @param mcastIp group address
1669 * @param connectPoint connect point to be verified
Piere99511d2018-04-19 16:47:06 +02001670 * @param source source connect point
Pier28164682018-04-17 15:50:43 +02001671 * @return true if the connect point is sink of the group
1672 */
Charles Chanba59dd62018-05-10 22:19:49 +00001673 private boolean isSinkForGroup(IpAddress mcastIp, ConnectPoint connectPoint,
1674 ConnectPoint source) {
Piere99511d2018-04-19 16:47:06 +02001675 VlanId assignedVlan = mcastUtils.assignedVlan(connectPoint.deviceId().equals(source.deviceId()) ?
1676 source : null);
1677 McastStoreKey mcastStoreKey = new McastStoreKey(mcastIp, connectPoint.deviceId(), assignedVlan);
Pier28164682018-04-17 15:50:43 +02001678 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
1679 return false;
1680 }
Pier28164682018-04-17 15:50:43 +02001681 NextObjective mcastNext = mcastNextObjStore.get(mcastStoreKey).value();
1682 return mcastUtils.getPorts(mcastNext.next()).contains(connectPoint.port());
1683 }
1684
1685 /**
Piere99511d2018-04-19 16:47:06 +02001686 * Verify if a given connect point is sink for this group and for this source.
1687 *
1688 * @param mcastIp group address
1689 * @param connectPoint connect point to be verified
1690 * @param source source connect point
1691 * @return true if the connect point is sink of the group
1692 */
Charles Chanba59dd62018-05-10 22:19:49 +00001693 private boolean isSinkForSource(IpAddress mcastIp, ConnectPoint connectPoint,
1694 ConnectPoint source) {
Piere99511d2018-04-19 16:47:06 +02001695 boolean isSink = isSinkForGroup(mcastIp, connectPoint, source);
1696 DeviceId device;
1697 if (connectPoint.deviceId().equals(source.deviceId())) {
1698 device = getDevice(mcastIp, INGRESS, source).stream()
1699 .filter(deviceId -> deviceId.equals(connectPoint.deviceId()))
1700 .findFirst().orElse(null);
1701 } else {
1702 device = getDevice(mcastIp, EGRESS, source).stream()
1703 .filter(deviceId -> deviceId.equals(connectPoint.deviceId()))
1704 .findFirst().orElse(null);
1705 }
1706 return isSink && device != null;
1707 }
1708
1709 /**
1710 * Verify if a sink is reachable from this source.
1711 *
1712 * @param mcastIp group address
1713 * @param sink connect point to be verified
1714 * @param source source connect point
1715 * @return true if the connect point is reachable from the source
1716 */
Charles Chanba59dd62018-05-10 22:19:49 +00001717 private boolean isSinkReachable(IpAddress mcastIp, ConnectPoint sink,
1718 ConnectPoint source) {
Piere99511d2018-04-19 16:47:06 +02001719 return sink.deviceId().equals(source.deviceId()) ||
1720 getPath(source.deviceId(), sink.deviceId(), mcastIp, null, source).isPresent();
1721 }
1722
1723 /**
Pier Luigi35dab3f2018-01-25 16:16:02 +01001724 * Updates filtering objective for given device and port.
1725 * It is called in general when the mcast config has been
1726 * changed.
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07001727 *
1728 * @param deviceId device ID
1729 * @param portNum ingress port number
1730 * @param vlanId assigned VLAN ID
1731 * @param install true to add, false to remove
1732 */
Charles Chanba59dd62018-05-10 22:19:49 +00001733 public void updateFilterToDevice(DeviceId deviceId, PortNumber portNum,
1734 VlanId vlanId, boolean install) {
Pier Luigi35dab3f2018-01-25 16:16:02 +01001735 lastMcastChange = Instant.now();
1736 mcastLock();
1737 try {
Piere99511d2018-04-19 16:47:06 +02001738 // Iterates over the route and updates properly the filtering objective on the source device.
Pier Luigi35dab3f2018-01-25 16:16:02 +01001739 srManager.multicastRouteService.getRoutes().forEach(mcastRoute -> {
Pierdb27b8d2018-04-17 16:29:56 +02001740 log.debug("Update filter for {}", mcastRoute.group());
Pierdb27b8d2018-04-17 16:29:56 +02001741 if (!mcastUtils.isLeader(mcastRoute.group())) {
1742 log.debug("Skip {} due to lack of leadership", mcastRoute.group());
1743 return;
1744 }
Piere99511d2018-04-19 16:47:06 +02001745 // Get the sources and for each one update properly the filtering objectives
1746 Set<ConnectPoint> sources = srManager.multicastRouteService.sources(mcastRoute);
1747 sources.forEach(source -> {
1748 if (source.deviceId().equals(deviceId) && source.port().equals(portNum)) {
1749 if (install) {
1750 mcastUtils.addFilterToDevice(deviceId, portNum, vlanId, mcastRoute.group(), INGRESS);
1751 } else {
1752 mcastUtils.removeFilterToDevice(deviceId, portNum, vlanId, mcastRoute.group(), null);
1753 }
Pier Luigi35dab3f2018-01-25 16:16:02 +01001754 }
Piere99511d2018-04-19 16:47:06 +02001755 });
Pier Luigi35dab3f2018-01-25 16:16:02 +01001756 });
1757 } finally {
1758 mcastUnlock();
1759 }
1760 }
1761
1762 /**
1763 * Performs bucket verification operation for all mcast groups in the devices.
1764 * Firstly, it verifies that mcast is stable before trying verification operation.
1765 * Verification consists in creating new nexts with VERIFY operation. Actually,
1766 * the operation is totally delegated to the driver.
1767 */
Piere99511d2018-04-19 16:47:06 +02001768 private final class McastBucketCorrector implements Runnable {
Pier Luigi35dab3f2018-01-25 16:16:02 +01001769
1770 @Override
1771 public void run() {
Pier Luigi35dab3f2018-01-25 16:16:02 +01001772 if (!isMcastStable()) {
1773 return;
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07001774 }
Pier Luigi35dab3f2018-01-25 16:16:02 +01001775 mcastLock();
1776 try {
1777 // Iterates over the routes and verify the related next objectives
1778 srManager.multicastRouteService.getRoutes()
Piere99511d2018-04-19 16:47:06 +02001779 .stream().map(McastRoute::group)
Pier Luigi35dab3f2018-01-25 16:16:02 +01001780 .forEach(mcastIp -> {
Piere99511d2018-04-19 16:47:06 +02001781 log.trace("Running mcast buckets corrector for mcast group: {}", mcastIp);
1782 // Verify leadership on the operation
1783 if (!mcastUtils.isLeader(mcastIp)) {
1784 log.trace("Skip {} due to lack of leadership", mcastIp);
1785 return;
1786 }
1787 // Get sources and sinks from Mcast Route Service and warn about errors
1788 Set<ConnectPoint> sources = mcastUtils.getSources(mcastIp);
Pier7b657162018-03-27 11:29:42 -07001789 Set<ConnectPoint> sinks = mcastUtils.getSinks(mcastIp).values().stream()
Piere99511d2018-04-19 16:47:06 +02001790 .flatMap(Collection::stream).collect(Collectors.toSet());
1791 // Do not proceed if sources of this group are missing
1792 if (sources.isEmpty()) {
Pier Luigi92e69be2018-03-02 12:53:37 +01001793 if (!sinks.isEmpty()) {
1794 log.warn("Unable to run buckets corrector. " +
Piere99511d2018-04-19 16:47:06 +02001795 "Missing source {} for group {}", sources, mcastIp);
Pier Luigi92e69be2018-03-02 12:53:37 +01001796 }
Pier Luigi35dab3f2018-01-25 16:16:02 +01001797 return;
1798 }
Piere99511d2018-04-19 16:47:06 +02001799 sources.forEach(source -> {
1800 // For each group we get current information in the store
1801 // and issue a check of the next objectives in place
1802 Set<DeviceId> ingressDevices = getDevice(mcastIp, INGRESS, source);
1803 Set<DeviceId> transitDevices = getDevice(mcastIp, TRANSIT, source);
1804 Set<DeviceId> egressDevices = getDevice(mcastIp, EGRESS, source);
1805 // Do not proceed if ingress devices are missing
1806 if (ingressDevices.isEmpty()) {
1807 if (!sinks.isEmpty()) {
1808 log.warn("Unable to run buckets corrector. " +
1809 "Missing ingress {} for source {} and for group {}",
1810 ingressDevices, source, mcastIp);
1811 }
1812 return;
Pier Luigi35dab3f2018-01-25 16:16:02 +01001813 }
Piere99511d2018-04-19 16:47:06 +02001814 // Create the set of the devices to be processed
1815 ImmutableSet.Builder<DeviceId> devicesBuilder = ImmutableSet.builder();
1816 if (!ingressDevices.isEmpty()) {
1817 devicesBuilder.addAll(ingressDevices);
1818 }
1819 if (!transitDevices.isEmpty()) {
1820 devicesBuilder.addAll(transitDevices);
1821 }
1822 if (!egressDevices.isEmpty()) {
1823 devicesBuilder.addAll(egressDevices);
1824 }
1825 Set<DeviceId> devicesToProcess = devicesBuilder.build();
1826 devicesToProcess.forEach(deviceId -> {
Vignesh Ethiraj75790122019-08-26 12:18:42 +00001827 if (!srManager.deviceConfiguration().isConfigured(deviceId)) {
1828 log.trace("Skipping Bucket corrector for unconfigured device {}", deviceId);
1829 return;
1830 }
Piere99511d2018-04-19 16:47:06 +02001831 VlanId assignedVlan = mcastUtils.assignedVlan(deviceId.equals(source.deviceId()) ?
1832 source : null);
1833 McastStoreKey currentKey = new McastStoreKey(mcastIp, deviceId, assignedVlan);
1834 if (mcastNextObjStore.containsKey(currentKey)) {
1835 NextObjective currentNext = mcastNextObjStore.get(currentKey).value();
1836 // Rebuild the next objective using assigned vlan
1837 currentNext = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
1838 mcastUtils.getPorts(currentNext.next()), currentNext.id()).verify();
1839 // Send to the flowobjective service
1840 srManager.flowObjectiveService.next(deviceId, currentNext);
1841 } else {
1842 log.warn("Unable to run buckets corrector. " +
1843 "Missing next for {}, for source {} and for group {}",
1844 deviceId, source, mcastIp);
1845 }
1846 });
Pier Luigi35dab3f2018-01-25 16:16:02 +01001847 });
Pier Luigi35dab3f2018-01-25 16:16:02 +01001848 });
1849 } finally {
Pier Luigi35dab3f2018-01-25 16:16:02 +01001850 mcastUnlock();
1851 }
1852
1853 }
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07001854 }
Pier Luigi0f9635b2018-01-15 18:06:43 +01001855
Piere99511d2018-04-19 16:47:06 +02001856 /**
1857 * Returns the associated next ids to the mcast groups or to the single
1858 * group if mcastIp is present.
1859 *
1860 * @param mcastIp the group ip
1861 * @return the mapping mcastIp-device to next id
1862 */
Charles Chan0b1dd7e2018-08-19 19:21:46 -07001863 public Map<McastStoreKey, Integer> getNextIds(IpAddress mcastIp) {
Pier Luigi0f9635b2018-01-15 18:06:43 +01001864 if (mcastIp != null) {
1865 return mcastNextObjStore.entrySet().stream()
1866 .filter(mcastEntry -> mcastIp.equals(mcastEntry.getKey().mcastIp()))
Piere99511d2018-04-19 16:47:06 +02001867 .collect(Collectors.toMap(Entry::getKey, entry -> entry.getValue().value().id()));
Pier Luigi0f9635b2018-01-15 18:06:43 +01001868 }
Pier Luigi0f9635b2018-01-15 18:06:43 +01001869 return mcastNextObjStore.entrySet().stream()
Piere99511d2018-04-19 16:47:06 +02001870 .collect(Collectors.toMap(Entry::getKey, entry -> entry.getValue().value().id()));
Pier Luigi0f9635b2018-01-15 18:06:43 +01001871 }
1872
Pier71c55772018-04-17 17:25:22 +02001873 /**
Charles Chan0b1dd7e2018-08-19 19:21:46 -07001874 * Removes given next ID from mcast next id store.
1875 *
1876 * @param nextId next id
1877 */
1878 public void removeNextId(int nextId) {
1879 mcastNextObjStore.entrySet().forEach(e -> {
1880 if (e.getValue().value().id() == nextId) {
1881 mcastNextObjStore.remove(e.getKey());
1882 }
1883 });
1884 }
1885
1886 /**
Pier71c55772018-04-17 17:25:22 +02001887 * Returns the associated roles to the mcast groups or to the single
1888 * group if mcastIp is present.
1889 *
1890 * @param mcastIp the group ip
1891 * @return the mapping mcastIp-device to mcast role
1892 *
1893 * @deprecated in 1.12 ("Magpie") release.
1894 */
1895 @Deprecated
Pier Luigi69f774d2018-02-28 12:10:50 +01001896 public Map<McastStoreKey, McastRole> getMcastRoles(IpAddress mcastIp) {
Pier Luigi0f9635b2018-01-15 18:06:43 +01001897 if (mcastIp != null) {
1898 return mcastRoleStore.entrySet().stream()
1899 .filter(mcastEntry -> mcastIp.equals(mcastEntry.getKey().mcastIp()))
Piere99511d2018-04-19 16:47:06 +02001900 .collect(Collectors.toMap(entry -> new McastStoreKey(entry.getKey().mcastIp(),
1901 entry.getKey().deviceId(), null), entry -> entry.getValue().value()));
Pier Luigi0f9635b2018-01-15 18:06:43 +01001902 }
Pier Luigi0f9635b2018-01-15 18:06:43 +01001903 return mcastRoleStore.entrySet().stream()
Piere99511d2018-04-19 16:47:06 +02001904 .collect(Collectors.toMap(entry -> new McastStoreKey(entry.getKey().mcastIp(),
1905 entry.getKey().deviceId(), null), entry -> entry.getValue().value()));
Pier Luigi0f9635b2018-01-15 18:06:43 +01001906 }
1907
Pier71c55772018-04-17 17:25:22 +02001908 /**
Piere99511d2018-04-19 16:47:06 +02001909 * Returns the associated roles to the mcast groups.
1910 *
1911 * @param mcastIp the group ip
1912 * @param sourcecp the source connect point
1913 * @return the mapping mcastIp-device to mcast role
1914 */
Charles Chanba59dd62018-05-10 22:19:49 +00001915 public Map<McastRoleStoreKey, McastRole> getMcastRoles(IpAddress mcastIp,
1916 ConnectPoint sourcecp) {
Piere99511d2018-04-19 16:47:06 +02001917 if (mcastIp != null) {
1918 Map<McastRoleStoreKey, McastRole> roles = mcastRoleStore.entrySet().stream()
1919 .filter(mcastEntry -> mcastIp.equals(mcastEntry.getKey().mcastIp()))
1920 .collect(Collectors.toMap(entry -> new McastRoleStoreKey(entry.getKey().mcastIp(),
1921 entry.getKey().deviceId(), entry.getKey().source()), entry -> entry.getValue().value()));
1922 if (sourcecp != null) {
1923 roles = roles.entrySet().stream()
1924 .filter(mcastEntry -> sourcecp.equals(mcastEntry.getKey().source()))
1925 .collect(Collectors.toMap(entry -> new McastRoleStoreKey(entry.getKey().mcastIp(),
1926 entry.getKey().deviceId(), entry.getKey().source()), Entry::getValue));
1927 }
1928 return roles;
1929 }
1930 return mcastRoleStore.entrySet().stream()
1931 .collect(Collectors.toMap(entry -> new McastRoleStoreKey(entry.getKey().mcastIp(),
1932 entry.getKey().deviceId(), entry.getKey().source()), entry -> entry.getValue().value()));
1933 }
1934
1935
1936 /**
Pier71c55772018-04-17 17:25:22 +02001937 * Returns the associated paths to the mcast group.
1938 *
1939 * @param mcastIp the group ip
1940 * @return the mapping egress point to mcast path
1941 *
1942 * @deprecated in 1.12 ("Magpie") release.
1943 */
1944 @Deprecated
Pier Luigi0f9635b2018-01-15 18:06:43 +01001945 public Map<ConnectPoint, List<ConnectPoint>> getMcastPaths(IpAddress mcastIp) {
1946 Map<ConnectPoint, List<ConnectPoint>> mcastPaths = Maps.newHashMap();
Pier7b657162018-03-27 11:29:42 -07001947 ConnectPoint source = mcastUtils.getSource(mcastIp);
Pier Luigi0f9635b2018-01-15 18:06:43 +01001948 if (source != null) {
Pier Luigi0f9635b2018-01-15 18:06:43 +01001949 Set<DeviceId> visited = Sets.newHashSet();
Piere99511d2018-04-19 16:47:06 +02001950 List<ConnectPoint> currentPath = Lists.newArrayList(source);
Charles Chan0b1dd7e2018-08-19 19:21:46 -07001951 mcastUtils.buildMcastPaths(mcastNextObjStore.asJavaMap(), source.deviceId(), visited, mcastPaths,
1952 currentPath, mcastIp, source);
Pier Luigi0f9635b2018-01-15 18:06:43 +01001953 }
1954 return mcastPaths;
1955 }
1956
Pier71c55772018-04-17 17:25:22 +02001957 /**
1958 * Returns the associated trees to the mcast group.
1959 *
1960 * @param mcastIp the group ip
1961 * @param sourcecp the source connect point
1962 * @return the mapping egress point to mcast path
1963 */
Charles Chanba59dd62018-05-10 22:19:49 +00001964 public Multimap<ConnectPoint, List<ConnectPoint>> getMcastTrees(IpAddress mcastIp,
1965 ConnectPoint sourcecp) {
Pier71c55772018-04-17 17:25:22 +02001966 Multimap<ConnectPoint, List<ConnectPoint>> mcastTrees = HashMultimap.create();
Pier71c55772018-04-17 17:25:22 +02001967 Set<ConnectPoint> sources = mcastUtils.getSources(mcastIp);
Pier71c55772018-04-17 17:25:22 +02001968 if (sourcecp != null) {
1969 sources = sources.stream()
Piere99511d2018-04-19 16:47:06 +02001970 .filter(source -> source.equals(sourcecp)).collect(Collectors.toSet());
Pier71c55772018-04-17 17:25:22 +02001971 }
Pier71c55772018-04-17 17:25:22 +02001972 if (!sources.isEmpty()) {
1973 sources.forEach(source -> {
Pier71c55772018-04-17 17:25:22 +02001974 Map<ConnectPoint, List<ConnectPoint>> mcastPaths = Maps.newHashMap();
1975 Set<DeviceId> visited = Sets.newHashSet();
1976 List<ConnectPoint> currentPath = Lists.newArrayList(source);
Charles Chan0b1dd7e2018-08-19 19:21:46 -07001977 mcastUtils.buildMcastPaths(mcastNextObjStore.asJavaMap(), source.deviceId(), visited, mcastPaths,
1978 currentPath, mcastIp, source);
Pier71c55772018-04-17 17:25:22 +02001979 mcastPaths.forEach(mcastTrees::put);
1980 });
1981 }
1982 return mcastTrees;
1983 }
1984
1985 /**
Pierdb27b8d2018-04-17 16:29:56 +02001986 * Return the leaders of the mcast groups.
1987 *
1988 * @param mcastIp the group ip
1989 * @return the mapping group-node
1990 */
1991 public Map<IpAddress, NodeId> getMcastLeaders(IpAddress mcastIp) {
1992 return mcastUtils.getMcastLeaders(mcastIp);
1993 }
Charles Chanc91c8782016-03-30 17:54:24 -07001994}