blob: 52ca18e8764ac63ae43d5b90c0f9813692ecdc81 [file] [log] [blame]
sanghob35a6192015-04-01 13:05:26 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
sanghob35a6192015-04-01 13:05:26 -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 */
16package org.onosproject.segmentrouting;
17
Jonathan Hart8ca2bc02017-11-30 18:23:42 -080018import com.google.common.collect.HashMultimap;
19import com.google.common.collect.ImmutableMap;
20import com.google.common.collect.Maps;
21import com.google.common.collect.Multimap;
Charles Chan9640c812017-08-23 13:55:39 -070022import com.google.common.collect.Sets;
sanghob35a6192015-04-01 13:05:26 -070023import org.apache.felix.scr.annotations.Activate;
24import org.apache.felix.scr.annotations.Component;
25import org.apache.felix.scr.annotations.Deactivate;
Charles Chan47933752017-11-30 15:37:50 -080026import org.apache.felix.scr.annotations.Modified;
27import org.apache.felix.scr.annotations.Property;
sanghob35a6192015-04-01 13:05:26 -070028import org.apache.felix.scr.annotations.Reference;
29import org.apache.felix.scr.annotations.ReferenceCardinality;
sangho1e575652015-05-14 00:39:53 -070030import org.apache.felix.scr.annotations.Service;
sanghob35a6192015-04-01 13:05:26 -070031import org.onlab.packet.Ethernet;
Pier Ventre735b8c82016-12-02 08:16:05 -080032import org.onlab.packet.ICMP6;
Charles Chanc42e84e2015-10-20 16:24:19 -070033import org.onlab.packet.IPv4;
Pier Ventre10bd8d12016-11-26 21:05:22 -080034import org.onlab.packet.IPv6;
Jonghwan Hyun42fe1052017-08-25 17:48:36 -070035import org.onlab.packet.IpAddress;
Charles Chanc42e84e2015-10-20 16:24:19 -070036import org.onlab.packet.IpPrefix;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070037import org.onlab.packet.VlanId;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070038import org.onlab.util.KryoNamespace;
Charles Chan47933752017-11-30 15:37:50 -080039import org.onlab.util.Tools;
Saurav Das80980c72016-03-23 11:22:49 -070040import org.onosproject.cfg.ComponentConfigService;
Saurav Das201762d2018-04-21 17:19:48 -070041import org.onosproject.cluster.ClusterEvent;
42import org.onosproject.cluster.ClusterEventListener;
Pier Luigieba73a02018-01-16 10:47:50 +010043import org.onosproject.cluster.ClusterService;
Jonghwan Hyun800d9d02018-04-09 09:40:50 -070044import org.onosproject.cluster.LeadershipService;
Pier96f63cb2018-04-17 16:29:56 +020045import org.onosproject.cluster.NodeId;
sanghob35a6192015-04-01 13:05:26 -070046import org.onosproject.core.ApplicationId;
47import org.onosproject.core.CoreService;
48import org.onosproject.event.Event;
Charles Chan50bb6ef2018-04-18 18:41:05 -070049import org.onosproject.mastership.MastershipEvent;
50import org.onosproject.mastership.MastershipListener;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070051import org.onosproject.mastership.MastershipService;
Pier3ee24552018-03-14 16:47:32 -070052import org.onosproject.mcast.api.McastEvent;
53import org.onosproject.mcast.api.McastListener;
54import org.onosproject.mcast.api.MulticastRouteService;
Pier Ventre10bd8d12016-11-26 21:05:22 -080055import org.onosproject.net.ConnectPoint;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070056import org.onosproject.net.Device;
57import org.onosproject.net.DeviceId;
Charles Chan9640c812017-08-23 13:55:39 -070058import org.onosproject.net.Host;
59import org.onosproject.net.HostId;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070060import org.onosproject.net.Link;
61import org.onosproject.net.Port;
Charles Chan68aa62d2015-11-09 16:37:23 -080062import org.onosproject.net.PortNumber;
Jonghwan Hyun42fe1052017-08-25 17:48:36 -070063import org.onosproject.net.config.ConfigException;
Charles Chand6832882015-10-05 17:50:33 -070064import org.onosproject.net.config.ConfigFactory;
65import org.onosproject.net.config.NetworkConfigEvent;
Charles Chand6832882015-10-05 17:50:33 -070066import org.onosproject.net.config.NetworkConfigListener;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070067import org.onosproject.net.config.NetworkConfigRegistry;
Ray Milkey6c1f0f02017-08-15 11:02:29 -070068import org.onosproject.net.config.basics.InterfaceConfig;
69import org.onosproject.net.config.basics.McastConfig;
Charles Chand6832882015-10-05 17:50:33 -070070import org.onosproject.net.config.basics.SubjectFactories;
Saurav Das45f48152018-01-18 12:07:33 -080071import org.onosproject.net.device.DeviceAdminService;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070072import org.onosproject.net.device.DeviceEvent;
73import org.onosproject.net.device.DeviceListener;
74import org.onosproject.net.device.DeviceService;
Charles Chan68aa62d2015-11-09 16:37:23 -080075import org.onosproject.net.flow.TrafficSelector;
76import org.onosproject.net.flow.TrafficTreatment;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070077import org.onosproject.net.flowobjective.FlowObjectiveService;
Charles Chan68aa62d2015-11-09 16:37:23 -080078import org.onosproject.net.host.HostEvent;
79import org.onosproject.net.host.HostListener;
Charles Chanff79dd92018-06-01 16:33:48 -070080import org.onosproject.net.host.HostProbingService;
Pier Ventre10bd8d12016-11-26 21:05:22 -080081import org.onosproject.net.host.HostService;
Jonghwan Hyun42fe1052017-08-25 17:48:36 -070082import org.onosproject.net.host.InterfaceIpAddress;
Pier96f63cb2018-04-17 16:29:56 +020083import org.onosproject.net.intent.WorkPartitionService;
Ray Milkey6c1f0f02017-08-15 11:02:29 -070084import org.onosproject.net.intf.Interface;
85import org.onosproject.net.intf.InterfaceService;
Pier Ventre10bd8d12016-11-26 21:05:22 -080086import org.onosproject.net.link.LinkEvent;
87import org.onosproject.net.link.LinkListener;
88import org.onosproject.net.link.LinkService;
Ray Milkey6c1f0f02017-08-15 11:02:29 -070089import org.onosproject.net.neighbour.NeighbourResolutionService;
Pier Ventre10bd8d12016-11-26 21:05:22 -080090import org.onosproject.net.packet.InboundPacket;
91import org.onosproject.net.packet.PacketContext;
92import org.onosproject.net.packet.PacketProcessor;
93import org.onosproject.net.packet.PacketService;
Pier Luigi83f919b2018-02-15 16:33:08 +010094import org.onosproject.net.topology.TopologyEvent;
95import org.onosproject.net.topology.TopologyListener;
Charles Chand55e84d2016-03-30 17:54:24 -070096import org.onosproject.net.topology.TopologyService;
Charles Chan9640c812017-08-23 13:55:39 -070097import org.onosproject.routeservice.ResolvedRoute;
Ray Milkey6c1f0f02017-08-15 11:02:29 -070098import org.onosproject.routeservice.RouteEvent;
99import org.onosproject.routeservice.RouteListener;
100import org.onosproject.routeservice.RouteService;
Charles Chand55e84d2016-03-30 17:54:24 -0700101import org.onosproject.segmentrouting.config.DeviceConfigNotFoundException;
102import org.onosproject.segmentrouting.config.DeviceConfiguration;
Pier Ventref34966c2016-11-07 16:21:04 -0800103import org.onosproject.segmentrouting.config.SegmentRoutingAppConfig;
Ray Milkey6c1f0f02017-08-15 11:02:29 -0700104import org.onosproject.segmentrouting.config.SegmentRoutingDeviceConfig;
Charles Chanfc5c7802016-05-17 13:13:55 -0700105import org.onosproject.segmentrouting.config.XConnectConfig;
Charles Chand55e84d2016-03-30 17:54:24 -0700106import org.onosproject.segmentrouting.grouphandler.DefaultGroupHandler;
Saurav Das7bcbe702017-06-13 15:35:54 -0700107import org.onosproject.segmentrouting.grouphandler.DestinationSet;
108import org.onosproject.segmentrouting.grouphandler.NextNeighbors;
Pier Luigi96fe0772018-02-28 12:10:50 +0100109import org.onosproject.segmentrouting.mcast.McastHandler;
110import org.onosproject.segmentrouting.mcast.McastRole;
Pier3e793752018-04-19 16:47:06 +0200111import org.onosproject.segmentrouting.mcast.McastRoleStoreKey;
Andreas Pantelopoulos27532cd2017-10-23 12:18:25 -0700112import org.onosproject.segmentrouting.pwaas.DefaultL2Tunnel;
Andreas Pantelopoulosffe69742018-03-20 13:58:49 -0700113import org.onosproject.segmentrouting.pwaas.DefaultL2TunnelDescription;
Andreas Pantelopoulosb21547d2018-02-22 12:32:42 -0800114import org.onosproject.segmentrouting.pwaas.DefaultL2TunnelHandler;
Andreas Pantelopoulos27532cd2017-10-23 12:18:25 -0700115import org.onosproject.segmentrouting.pwaas.DefaultL2TunnelPolicy;
Andreas Pantelopouloscd339592018-02-23 14:18:00 -0800116
Andreas Pantelopoulosb21547d2018-02-22 12:32:42 -0800117import org.onosproject.segmentrouting.pwaas.L2Tunnel;
Ray Milkey6c1f0f02017-08-15 11:02:29 -0700118import org.onosproject.segmentrouting.pwaas.L2TunnelHandler;
Andreas Pantelopoulosb21547d2018-02-22 12:32:42 -0800119import org.onosproject.segmentrouting.pwaas.L2TunnelPolicy;
Andreas Pantelopouloscd339592018-02-23 14:18:00 -0800120import org.onosproject.segmentrouting.pwaas.L2TunnelDescription;
121
Saurav Das7bcbe702017-06-13 15:35:54 -0700122import org.onosproject.segmentrouting.storekey.DestinationSetNextObjectiveStoreKey;
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700123import org.onosproject.segmentrouting.storekey.DummyVlanIdStoreKey;
Pier3e793752018-04-19 16:47:06 +0200124import org.onosproject.segmentrouting.mcast.McastStoreKey;
Charles Chand2990362016-04-18 13:44:03 -0700125import org.onosproject.segmentrouting.storekey.PortNextObjectiveStoreKey;
Charles Chan59cc16d2017-02-02 16:20:42 -0800126import org.onosproject.segmentrouting.storekey.VlanNextObjectiveStoreKey;
Charles Chanfc5c7802016-05-17 13:13:55 -0700127import org.onosproject.segmentrouting.storekey.XConnectStoreKey;
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700128import org.onosproject.store.serializers.KryoNamespaces;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700129import org.onosproject.store.service.EventuallyConsistentMap;
130import org.onosproject.store.service.EventuallyConsistentMapBuilder;
131import org.onosproject.store.service.StorageService;
132import org.onosproject.store.service.WallClockTimestamp;
Charles Chan47933752017-11-30 15:37:50 -0800133import org.osgi.service.component.ComponentContext;
sanghob35a6192015-04-01 13:05:26 -0700134import org.slf4j.Logger;
135import org.slf4j.LoggerFactory;
136
Saurav Das201762d2018-04-21 17:19:48 -0700137import java.time.Instant;
Andreas Pantelopoulos811bbae2018-03-15 16:56:09 -0700138import java.util.ArrayList;
Jonathan Hart8ca2bc02017-11-30 18:23:42 -0800139import java.util.Collections;
Charles Chan47933752017-11-30 15:37:50 -0800140import java.util.Dictionary;
Jonathan Hart8ca2bc02017-11-30 18:23:42 -0800141import java.util.HashSet;
142import java.util.List;
143import java.util.Map;
Jonathan Hart8ca2bc02017-11-30 18:23:42 -0800144import java.util.Optional;
145import java.util.Set;
Andrea Campanella6468e1f2018-04-17 12:09:34 +0200146import java.util.concurrent.CompletableFuture;
Jonathan Hart8ca2bc02017-11-30 18:23:42 -0800147import java.util.concurrent.ConcurrentHashMap;
Andrea Campanella6468e1f2018-04-17 12:09:34 +0200148import java.util.concurrent.CopyOnWriteArrayList;
Charles Chan07f15f22018-05-08 21:35:50 -0700149import java.util.concurrent.ExecutorService;
Jonathan Hart8ca2bc02017-11-30 18:23:42 -0800150import java.util.concurrent.Executors;
151import java.util.concurrent.ScheduledExecutorService;
Jonathan Hart8ca2bc02017-11-30 18:23:42 -0800152import java.util.concurrent.TimeUnit;
153import java.util.concurrent.atomic.AtomicBoolean;
154import java.util.stream.Collectors;
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700155import java.util.stream.IntStream;
sanghob35a6192015-04-01 13:05:26 -0700156
Charles Chan3e783d02016-02-26 22:19:52 -0800157import static com.google.common.base.Preconditions.checkState;
Pier Ventree0ae7a32016-11-23 09:57:42 -0800158import static org.onlab.packet.Ethernet.TYPE_ARP;
Yuta HIGUCHI1624df12016-07-21 16:54:33 -0700159import static org.onlab.util.Tools.groupedThreads;
Saurav Dase7f51012018-02-09 17:26:45 -0800160import static org.onosproject.net.config.NetworkConfigEvent.Type.CONFIG_REGISTERED;
161import static org.onosproject.net.config.NetworkConfigEvent.Type.CONFIG_UNREGISTERED;
Charles Chan3e783d02016-02-26 22:19:52 -0800162
Charles Chane849c192016-01-11 18:28:54 -0800163/**
164 * Segment routing manager.
165 */
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700166@Service
167@Component(immediate = true)
sangho1e575652015-05-14 00:39:53 -0700168public class SegmentRoutingManager implements SegmentRoutingService {
sanghob35a6192015-04-01 13:05:26 -0700169
Charles Chan2c15aca2016-11-09 20:51:44 -0800170 private static Logger log = LoggerFactory.getLogger(SegmentRoutingManager.class);
Charles Chan2fde6d42017-08-23 14:46:43 -0700171 private static final String NOT_MASTER = "Current instance is not the master of {}. Ignore.";
sanghob35a6192015-04-01 13:05:26 -0700172
173 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan03a73e02016-10-24 14:52:01 -0700174 private ComponentConfigService compCfgService;
sanghob35a6192015-04-01 13:05:26 -0700175
176 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Ventre10bd8d12016-11-26 21:05:22 -0800177 private NeighbourResolutionService neighbourResolutionService;
178
179 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Luigi96fe0772018-02-28 12:10:50 +0100180 public CoreService coreService;
sanghob35a6192015-04-01 13:05:26 -0700181
182 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan03a73e02016-10-24 14:52:01 -0700183 PacketService packetService;
sanghob35a6192015-04-01 13:05:26 -0700184
185 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan03a73e02016-10-24 14:52:01 -0700186 HostService hostService;
sanghob35a6192015-04-01 13:05:26 -0700187
188 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chanff79dd92018-06-01 16:33:48 -0700189 HostProbingService probingService;
Charles Chan47933752017-11-30 15:37:50 -0800190
191 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Luigi96fe0772018-02-28 12:10:50 +0100192 public DeviceService deviceService;
sanghob35a6192015-04-01 13:05:26 -0700193
194 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Saurav Das45f48152018-01-18 12:07:33 -0800195 DeviceAdminService deviceAdminService;
196
197 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Ventre42287df2016-11-09 14:17:26 -0800198 public FlowObjectiveService flowObjectiveService;
sanghob35a6192015-04-01 13:05:26 -0700199
200 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Luigi96fe0772018-02-28 12:10:50 +0100201 public LinkService linkService;
sangho1e575652015-05-14 00:39:53 -0700202
Charles Chan5270ed02016-01-30 23:22:37 -0800203 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Ventre42287df2016-11-09 14:17:26 -0800204 public MastershipService mastershipService;
Charles Chan03a73e02016-10-24 14:52:01 -0700205
206 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Ventre42287df2016-11-09 14:17:26 -0800207 public StorageService storageService;
Charles Chan03a73e02016-10-24 14:52:01 -0700208
209 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Luigi96fe0772018-02-28 12:10:50 +0100210 public MulticastRouteService multicastRouteService;
Charles Chan03a73e02016-10-24 14:52:01 -0700211
212 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chanf237e1b2018-01-09 13:45:07 -0800213 public TopologyService topologyService;
Charles Chan03a73e02016-10-24 14:52:01 -0700214
215 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan03a73e02016-10-24 14:52:01 -0700216 RouteService routeService;
Charles Chan5270ed02016-01-30 23:22:37 -0800217
218 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan2c15aca2016-11-09 20:51:44 -0800219 public NetworkConfigRegistry cfgService;
Charles Chan5270ed02016-01-30 23:22:37 -0800220
Saurav Das80980c72016-03-23 11:22:49 -0700221 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan2c15aca2016-11-09 20:51:44 -0800222 public InterfaceService interfaceService;
223
Pier Luigieba73a02018-01-16 10:47:50 +0100224 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
225 public ClusterService clusterService;
226
227 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier96f63cb2018-04-17 16:29:56 +0200228 public WorkPartitionService workPartitionService;
Pier Luigieba73a02018-01-16 10:47:50 +0100229
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700230 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
231 public LeadershipService leadershipService;
232
Charles Chan47933752017-11-30 15:37:50 -0800233 @Property(name = "activeProbing", boolValue = true,
234 label = "Enable active probing to discover dual-homed hosts.")
235 boolean activeProbing = true;
236
Saurav Das9a554292018-04-27 18:42:30 -0700237 @Property(name = "singleHomedDown", boolValue = false,
238 label = "Enable administratively taking down single-homed hosts "
239 + "when all uplinks are gone")
240 boolean singleHomedDown = false;
241
Charles Chan03a73e02016-10-24 14:52:01 -0700242 ArpHandler arpHandler = null;
243 IcmpHandler icmpHandler = null;
244 IpHandler ipHandler = null;
245 RoutingRulePopulator routingRulePopulator = null;
Ray Milkeye4afdb52017-04-05 09:42:04 -0700246 ApplicationId appId;
247 DeviceConfiguration deviceConfiguration = null;
sanghob35a6192015-04-01 13:05:26 -0700248
Charles Chan03a73e02016-10-24 14:52:01 -0700249 DefaultRoutingHandler defaultRoutingHandler = null;
sangho1e575652015-05-14 00:39:53 -0700250 private TunnelHandler tunnelHandler = null;
251 private PolicyHandler policyHandler = null;
Charles Chanb8e10c82015-10-14 11:24:40 -0700252 private InternalPacketProcessor processor = null;
253 private InternalLinkListener linkListener = null;
254 private InternalDeviceListener deviceListener = null;
Charles Chanfc5c7802016-05-17 13:13:55 -0700255 private AppConfigHandler appCfgHandler = null;
Pier Luigi96fe0772018-02-28 12:10:50 +0100256 public XConnectHandler xConnectHandler = null;
Saurav Das45f48152018-01-18 12:07:33 -0800257 McastHandler mcastHandler = null;
258 HostHandler hostHandler = null;
Pier Ventre10bd8d12016-11-26 21:05:22 -0800259 private RouteHandler routeHandler = null;
Saurav Das45f48152018-01-18 12:07:33 -0800260 LinkHandler linkHandler = null;
Pier Ventre735b8c82016-12-02 08:16:05 -0800261 private SegmentRoutingNeighbourDispatcher neighbourHandler = null;
Andreas Pantelopouloscd339592018-02-23 14:18:00 -0800262 private DefaultL2TunnelHandler l2TunnelHandler = null;
Pier Luigi83f919b2018-02-15 16:33:08 +0100263 private TopologyHandler topologyHandler = null;
Charles Chan5270ed02016-01-30 23:22:37 -0800264 private final InternalHostListener hostListener = new InternalHostListener();
Charles Chand55e84d2016-03-30 17:54:24 -0700265 private final InternalConfigListener cfgListener = new InternalConfigListener(this);
266 private final InternalMcastListener mcastListener = new InternalMcastListener();
Charles Chan03a73e02016-10-24 14:52:01 -0700267 private final InternalRouteEventListener routeListener = new InternalRouteEventListener();
Pier Luigi83f919b2018-02-15 16:33:08 +0100268 private final InternalTopologyListener topologyListener = new InternalTopologyListener();
Charles Chan50bb6ef2018-04-18 18:41:05 -0700269 private final InternalMastershipListener mastershipListener = new InternalMastershipListener();
Saurav Das201762d2018-04-21 17:19:48 -0700270 final InternalClusterListener clusterListener = new InternalClusterListener();
Andrea Campanella6468e1f2018-04-17 12:09:34 +0200271 //Completable future for network configuration process to buffer config events handling during activation
272 private CompletableFuture<Boolean> networkConfigCompletion = null;
Charles Chan10b2fee2018-04-21 00:44:29 -0700273 private List<Event> queuedEvents = new CopyOnWriteArrayList<>();
sanghob35a6192015-04-01 13:05:26 -0700274
Charles Chan9b7217c2018-04-05 16:31:15 -0700275 // Handles device, link, topology and network config events
Charles Chan50bb6ef2018-04-18 18:41:05 -0700276 private ScheduledExecutorService mainEventExecutor;
sanghob35a6192015-04-01 13:05:26 -0700277
Charles Chan50bb6ef2018-04-18 18:41:05 -0700278 // Handles host, route and mcast events respectively
279 private ScheduledExecutorService hostEventExecutor;
280 private ScheduledExecutorService routeEventExecutor;
281 private ScheduledExecutorService mcastEventExecutor;
Charles Chan07f15f22018-05-08 21:35:50 -0700282 private ExecutorService packetExecutor;
Charles Chan9b7217c2018-04-05 16:31:15 -0700283
284 Map<DeviceId, DefaultGroupHandler> groupHandlerMap = new ConcurrentHashMap<>();
Charles Chane849c192016-01-11 18:28:54 -0800285 /**
Saurav Das7bcbe702017-06-13 15:35:54 -0700286 * Per device next objective ID store with (device id + destination set) as key.
Charles Chan5bc32632017-08-22 15:07:34 -0700287 * Used to keep track on MPLS group information.
Charles Chane849c192016-01-11 18:28:54 -0800288 */
Charles Chan47933752017-11-30 15:37:50 -0800289 private EventuallyConsistentMap<DestinationSetNextObjectiveStoreKey, NextNeighbors>
Saurav Das7bcbe702017-06-13 15:35:54 -0700290 dsNextObjStore = null;
Charles Chane849c192016-01-11 18:28:54 -0800291 /**
Charles Chan5bc32632017-08-22 15:07:34 -0700292 * Per device next objective ID store with (device id + vlanid) as key.
293 * Used to keep track on L2 flood group information.
Charles Chane849c192016-01-11 18:28:54 -0800294 */
Charles Chan47933752017-11-30 15:37:50 -0800295 private EventuallyConsistentMap<VlanNextObjectiveStoreKey, Integer>
Charles Chan59cc16d2017-02-02 16:20:42 -0800296 vlanNextObjStore = null;
Charles Chane849c192016-01-11 18:28:54 -0800297 /**
Charles Chan5bc32632017-08-22 15:07:34 -0700298 * Per device next objective ID store with (device id + port + treatment + meta) as key.
299 * Used to keep track on L2 interface group and L3 unicast group information.
Charles Chane849c192016-01-11 18:28:54 -0800300 */
Charles Chan47933752017-11-30 15:37:50 -0800301 private EventuallyConsistentMap<PortNextObjectiveStoreKey, Integer>
Saurav Das4ce45962015-11-24 23:21:05 -0800302 portNextObjStore = null;
Charles Chan59cc16d2017-02-02 16:20:42 -0800303
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700304 /**
305 * Per port dummy VLAN ID store with (connect point + ip address) as key.
306 * Used to keep track on dummy VLAN ID allocation.
307 */
308 private EventuallyConsistentMap<DummyVlanIdStoreKey, VlanId>
309 dummyVlanIdStore = null;
310
Saurav Das4ce45962015-11-24 23:21:05 -0800311 private EventuallyConsistentMap<String, Tunnel> tunnelStore = null;
312 private EventuallyConsistentMap<String, Policy> policyStore = null;
sangho0b2b6d12015-05-20 22:16:38 -0700313
Saurav Das7bcbe702017-06-13 15:35:54 -0700314 private AtomicBoolean programmingScheduled = new AtomicBoolean();
315
Charles Chand55e84d2016-03-30 17:54:24 -0700316 private final ConfigFactory<DeviceId, SegmentRoutingDeviceConfig> deviceConfigFactory =
Charles Chanfc5c7802016-05-17 13:13:55 -0700317 new ConfigFactory<DeviceId, SegmentRoutingDeviceConfig>(
318 SubjectFactories.DEVICE_SUBJECT_FACTORY,
Charles Chand55e84d2016-03-30 17:54:24 -0700319 SegmentRoutingDeviceConfig.class, "segmentrouting") {
Charles Chand6832882015-10-05 17:50:33 -0700320 @Override
Charles Chan5270ed02016-01-30 23:22:37 -0800321 public SegmentRoutingDeviceConfig createConfig() {
322 return new SegmentRoutingDeviceConfig();
Charles Chand6832882015-10-05 17:50:33 -0700323 }
324 };
Pier Ventref34966c2016-11-07 16:21:04 -0800325
Charles Chand55e84d2016-03-30 17:54:24 -0700326 private final ConfigFactory<ApplicationId, SegmentRoutingAppConfig> appConfigFactory =
Charles Chanfc5c7802016-05-17 13:13:55 -0700327 new ConfigFactory<ApplicationId, SegmentRoutingAppConfig>(
328 SubjectFactories.APP_SUBJECT_FACTORY,
Charles Chand55e84d2016-03-30 17:54:24 -0700329 SegmentRoutingAppConfig.class, "segmentrouting") {
Charles Chan5270ed02016-01-30 23:22:37 -0800330 @Override
331 public SegmentRoutingAppConfig createConfig() {
332 return new SegmentRoutingAppConfig();
333 }
334 };
Pier Ventref34966c2016-11-07 16:21:04 -0800335
Charles Chanfc5c7802016-05-17 13:13:55 -0700336 private final ConfigFactory<ApplicationId, XConnectConfig> xConnectConfigFactory =
337 new ConfigFactory<ApplicationId, XConnectConfig>(
338 SubjectFactories.APP_SUBJECT_FACTORY,
339 XConnectConfig.class, "xconnect") {
340 @Override
341 public XConnectConfig createConfig() {
342 return new XConnectConfig();
343 }
344 };
Pier Ventref34966c2016-11-07 16:21:04 -0800345
Charles Chand55e84d2016-03-30 17:54:24 -0700346 private ConfigFactory<ApplicationId, McastConfig> mcastConfigFactory =
Charles Chanfc5c7802016-05-17 13:13:55 -0700347 new ConfigFactory<ApplicationId, McastConfig>(
348 SubjectFactories.APP_SUBJECT_FACTORY,
Charles Chand55e84d2016-03-30 17:54:24 -0700349 McastConfig.class, "multicast") {
350 @Override
351 public McastConfig createConfig() {
352 return new McastConfig();
353 }
354 };
355
Charles Chan116188d2016-02-18 14:22:42 -0800356 /**
357 * Segment Routing App ID.
358 */
Charles Chan2c15aca2016-11-09 20:51:44 -0800359 public static final String APP_NAME = "org.onosproject.segmentrouting";
Charles Chane849c192016-01-11 18:28:54 -0800360 /**
361 * The default VLAN ID assigned to the interfaces without subnet config.
362 */
Charles Chan59cc16d2017-02-02 16:20:42 -0800363 public static final VlanId INTERNAL_VLAN = VlanId.vlanId((short) 4094);
Andreas Pantelopoulos192284c2018-05-01 14:56:05 -0700364 /**
365 * The Vlan id used to transport pseudowire traffic across the network.
366 */
367 public static final VlanId PSEUDOWIRE_VLAN = VlanId.vlanId((short) 4093);
Saurav Das0e99e2b2015-10-28 12:39:42 -0700368
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700369 /**
370 * Minumum and maximum value of dummy VLAN ID to be allocated.
371 */
372 public static final int MIN_DUMMY_VLAN_ID = 2;
373 public static final int MAX_DUMMY_VLAN_ID = 4093;
374
Saurav Das9a554292018-04-27 18:42:30 -0700375 Instant lastEdgePortEvent = Instant.EPOCH;
376
sanghob35a6192015-04-01 13:05:26 -0700377 @Activate
Charles Chan47933752017-11-30 15:37:50 -0800378 protected void activate(ComponentContext context) {
Charles Chan2c15aca2016-11-09 20:51:44 -0800379 appId = coreService.registerApplication(APP_NAME);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700380
Charles Chan50bb6ef2018-04-18 18:41:05 -0700381 mainEventExecutor = Executors.newSingleThreadScheduledExecutor(groupedThreads("sr-event-main", "%d", log));
382 hostEventExecutor = Executors.newSingleThreadScheduledExecutor(groupedThreads("sr-event-host", "%d", log));
383 routeEventExecutor = Executors.newSingleThreadScheduledExecutor(groupedThreads("sr-event-route", "%d", log));
384 mcastEventExecutor = Executors.newSingleThreadScheduledExecutor(groupedThreads("sr-event-mcast", "%d", log));
Charles Chan07f15f22018-05-08 21:35:50 -0700385 packetExecutor = Executors.newSingleThreadExecutor(groupedThreads("sr-packet", "%d", log));
Charles Chan50bb6ef2018-04-18 18:41:05 -0700386
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700387 log.debug("Creating EC map nsnextobjectivestore");
Saurav Das7bcbe702017-06-13 15:35:54 -0700388 EventuallyConsistentMapBuilder<DestinationSetNextObjectiveStoreKey, NextNeighbors>
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700389 nsNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
Saurav Das7bcbe702017-06-13 15:35:54 -0700390 dsNextObjStore = nsNextObjMapBuilder
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700391 .withName("nsnextobjectivestore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700392 .withSerializer(createSerializer())
Madan Jampanibcf1a482015-06-24 19:05:56 -0700393 .withTimestampProvider((k, v) -> new WallClockTimestamp())
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700394 .build();
Saurav Das7bcbe702017-06-13 15:35:54 -0700395 log.trace("Current size {}", dsNextObjStore.size());
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700396
Charles Chan59cc16d2017-02-02 16:20:42 -0800397 log.debug("Creating EC map vlannextobjectivestore");
398 EventuallyConsistentMapBuilder<VlanNextObjectiveStoreKey, Integer>
399 vlanNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
400 vlanNextObjStore = vlanNextObjMapBuilder
401 .withName("vlannextobjectivestore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700402 .withSerializer(createSerializer())
Charles Chanc42e84e2015-10-20 16:24:19 -0700403 .withTimestampProvider((k, v) -> new WallClockTimestamp())
404 .build();
405
Saurav Das4ce45962015-11-24 23:21:05 -0800406 log.debug("Creating EC map subnetnextobjectivestore");
407 EventuallyConsistentMapBuilder<PortNextObjectiveStoreKey, Integer>
408 portNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
409 portNextObjStore = portNextObjMapBuilder
410 .withName("portnextobjectivestore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700411 .withSerializer(createSerializer())
Saurav Das4ce45962015-11-24 23:21:05 -0800412 .withTimestampProvider((k, v) -> new WallClockTimestamp())
413 .build();
414
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700415 EventuallyConsistentMapBuilder<DummyVlanIdStoreKey, VlanId>
416 dummyVlanIdMapBuilder = storageService.eventuallyConsistentMapBuilder();
417 dummyVlanIdStore = dummyVlanIdMapBuilder
418 .withName("dummyvlanidstore")
419 .withSerializer(createSerializer())
420 .withTimestampProvider((k, v) -> new WallClockTimestamp())
421 .build();
422
sangho0b2b6d12015-05-20 22:16:38 -0700423 EventuallyConsistentMapBuilder<String, Tunnel> tunnelMapBuilder =
424 storageService.eventuallyConsistentMapBuilder();
sangho0b2b6d12015-05-20 22:16:38 -0700425 tunnelStore = tunnelMapBuilder
426 .withName("tunnelstore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700427 .withSerializer(createSerializer())
Madan Jampanibcf1a482015-06-24 19:05:56 -0700428 .withTimestampProvider((k, v) -> new WallClockTimestamp())
sangho0b2b6d12015-05-20 22:16:38 -0700429 .build();
430
431 EventuallyConsistentMapBuilder<String, Policy> policyMapBuilder =
432 storageService.eventuallyConsistentMapBuilder();
sangho0b2b6d12015-05-20 22:16:38 -0700433 policyStore = policyMapBuilder
434 .withName("policystore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700435 .withSerializer(createSerializer())
Madan Jampanibcf1a482015-06-24 19:05:56 -0700436 .withTimestampProvider((k, v) -> new WallClockTimestamp())
sangho0b2b6d12015-05-20 22:16:38 -0700437 .build();
438
Saurav Das80980c72016-03-23 11:22:49 -0700439 compCfgService.preSetProperty("org.onosproject.net.group.impl.GroupManager",
Pier Luigi9e5c5ca2017-01-12 18:14:58 -0800440 "purgeOnDisconnection", "true");
Saurav Das80980c72016-03-23 11:22:49 -0700441 compCfgService.preSetProperty("org.onosproject.net.flow.impl.FlowRuleManager",
Pier Luigi9e5c5ca2017-01-12 18:14:58 -0800442 "purgeOnDisconnection", "true");
Pier Luigi9e5c5ca2017-01-12 18:14:58 -0800443 compCfgService.preSetProperty("org.onosproject.provider.host.impl.HostLocationProvider",
444 "requestInterceptsEnabled", "false");
Charles Chand3baaba2017-08-08 15:13:37 -0700445 compCfgService.preSetProperty("org.onosproject.net.neighbour.impl.NeighbourResolutionManager",
Pier Luigi7e415132017-01-12 22:46:39 -0800446 "requestInterceptsEnabled", "false");
Charles Chanc760f382017-07-24 15:56:10 -0700447 compCfgService.preSetProperty("org.onosproject.dhcprelay.DhcpRelayManager",
Pier Luigi7e415132017-01-12 22:46:39 -0800448 "arpEnabled", "false");
Pier Luigi9b1d6262017-02-02 22:31:34 -0800449 compCfgService.preSetProperty("org.onosproject.net.host.impl.HostManager",
450 "greedyLearningIpv6", "true");
Charles Chanc6d227e2017-02-28 15:15:17 -0800451 compCfgService.preSetProperty("org.onosproject.routing.cpr.ControlPlaneRedirectManager",
452 "forceUnprovision", "true");
Charles Chanef624ed2017-08-10 16:57:28 -0700453 compCfgService.preSetProperty("org.onosproject.routeservice.store.RouteStoreImpl",
Charles Chan73316522017-07-20 16:16:25 -0700454 "distributed", "true");
Charles Chan35a32322017-08-14 11:42:11 -0700455 compCfgService.preSetProperty("org.onosproject.provider.host.impl.HostLocationProvider",
456 "multihomingEnabled", "true");
Charles Chan807d87a2017-11-29 19:54:20 -0800457 compCfgService.preSetProperty("org.onosproject.provider.lldp.impl.LldpLinkProvider",
458 "staleLinkAge", "15000");
459 compCfgService.preSetProperty("org.onosproject.net.host.impl.HostManager",
460 "allowDuplicateIps", "false");
Charles Chan47933752017-11-30 15:37:50 -0800461 compCfgService.registerProperties(getClass());
462 modified(context);
Saurav Das80980c72016-03-23 11:22:49 -0700463
Charles Chanb8e10c82015-10-14 11:24:40 -0700464 processor = new InternalPacketProcessor();
465 linkListener = new InternalLinkListener();
466 deviceListener = new InternalDeviceListener();
Charles Chanfc5c7802016-05-17 13:13:55 -0700467 appCfgHandler = new AppConfigHandler(this);
468 xConnectHandler = new XConnectHandler(this);
Charles Chand2990362016-04-18 13:44:03 -0700469 mcastHandler = new McastHandler(this);
470 hostHandler = new HostHandler(this);
Saurav Das45f48152018-01-18 12:07:33 -0800471 linkHandler = new LinkHandler(this);
Charles Chan03a73e02016-10-24 14:52:01 -0700472 routeHandler = new RouteHandler(this);
Pier Ventre735b8c82016-12-02 08:16:05 -0800473 neighbourHandler = new SegmentRoutingNeighbourDispatcher(this);
Andreas Pantelopoulosb21547d2018-02-22 12:32:42 -0800474 l2TunnelHandler = new DefaultL2TunnelHandler(this);
Pier Luigi83f919b2018-02-15 16:33:08 +0100475 topologyHandler = new TopologyHandler(this);
Charles Chanb8e10c82015-10-14 11:24:40 -0700476
Charles Chan3e783d02016-02-26 22:19:52 -0800477 cfgService.addListener(cfgListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700478 cfgService.registerConfigFactory(deviceConfigFactory);
479 cfgService.registerConfigFactory(appConfigFactory);
Charles Chanfc5c7802016-05-17 13:13:55 -0700480 cfgService.registerConfigFactory(xConnectConfigFactory);
Charles Chand55e84d2016-03-30 17:54:24 -0700481 cfgService.registerConfigFactory(mcastConfigFactory);
Saurav Dase7f51012018-02-09 17:26:45 -0800482 log.info("Configuring network before adding listeners");
Andrea Campanella6468e1f2018-04-17 12:09:34 +0200483
Charles Chan132393a2018-01-04 14:26:07 -0800484 cfgListener.configureNetwork();
485
Charles Chan5270ed02016-01-30 23:22:37 -0800486 hostService.addListener(hostListener);
Charles Chanb8e10c82015-10-14 11:24:40 -0700487 packetService.addProcessor(processor, PacketProcessor.director(2));
488 linkService.addListener(linkListener);
489 deviceService.addListener(deviceListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700490 multicastRouteService.addListener(mcastListener);
Charles Chanc7a8a682017-06-19 00:43:31 -0700491 routeService.addListener(routeListener);
Pier Luigi83f919b2018-02-15 16:33:08 +0100492 topologyService.addListener(topologyListener);
Charles Chan50bb6ef2018-04-18 18:41:05 -0700493 mastershipService.addListener(mastershipListener);
Saurav Das201762d2018-04-21 17:19:48 -0700494 clusterService.addListener(clusterListener);
Charles Chanb8e10c82015-10-14 11:24:40 -0700495
Charles Chanb39777c2018-03-09 15:53:44 -0800496 linkHandler.init();
Andreas Pantelopoulos4a768c02018-01-11 07:53:48 -0800497 l2TunnelHandler.init();
498
Andrea Campanella6468e1f2018-04-17 12:09:34 +0200499 networkConfigCompletion.whenComplete((value, ex) -> {
500 //setting to null for easier fall through
501 networkConfigCompletion = null;
502 //process all queued events
Charles Chan10b2fee2018-04-21 00:44:29 -0700503 queuedEvents.forEach(event -> {
Andrea Campanella6468e1f2018-04-17 12:09:34 +0200504 mainEventExecutor.execute(new InternalEventHandler(event));
505 });
506 });
507
sanghob35a6192015-04-01 13:05:26 -0700508 log.info("Started");
509 }
510
Saurav Das45f48152018-01-18 12:07:33 -0800511 KryoNamespace.Builder createSerializer() {
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700512 return new KryoNamespace.Builder()
513 .register(KryoNamespaces.API)
Saurav Das7bcbe702017-06-13 15:35:54 -0700514 .register(DestinationSetNextObjectiveStoreKey.class,
Andreas Pantelopoulosb21547d2018-02-22 12:32:42 -0800515 VlanNextObjectiveStoreKey.class,
516 DestinationSet.class,
Andreas Pantelopoulos67e09ae2018-05-29 13:11:14 -0700517 DestinationSet.DestinationSetType.class,
Andreas Pantelopoulosb21547d2018-02-22 12:32:42 -0800518 NextNeighbors.class,
519 Tunnel.class,
520 DefaultTunnel.class,
521 Policy.class,
522 TunnelPolicy.class,
523 Policy.Type.class,
524 PortNextObjectiveStoreKey.class,
525 XConnectStoreKey.class,
526 L2Tunnel.class,
527 L2TunnelPolicy.class,
528 DefaultL2Tunnel.class,
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700529 DefaultL2TunnelPolicy.class,
530 DummyVlanIdStoreKey.class
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700531 );
532 }
533
sanghob35a6192015-04-01 13:05:26 -0700534 @Deactivate
535 protected void deactivate() {
Charles Chan50bb6ef2018-04-18 18:41:05 -0700536 mainEventExecutor.shutdown();
537 hostEventExecutor.shutdown();
538 routeEventExecutor.shutdown();
539 mcastEventExecutor.shutdown();
Charles Chan07f15f22018-05-08 21:35:50 -0700540 packetExecutor.shutdown();
Charles Chan50bb6ef2018-04-18 18:41:05 -0700541
Ray Milkey749996b2018-05-11 09:59:19 -0700542 mainEventExecutor = null;
543 hostEventExecutor = null;
544 routeEventExecutor = null;
545 mcastEventExecutor = null;
546 packetExecutor = null;
547
Charles Chand6832882015-10-05 17:50:33 -0700548 cfgService.removeListener(cfgListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700549 cfgService.unregisterConfigFactory(deviceConfigFactory);
550 cfgService.unregisterConfigFactory(appConfigFactory);
Charles Chan03a73e02016-10-24 14:52:01 -0700551 cfgService.unregisterConfigFactory(xConnectConfigFactory);
Charles Chand55e84d2016-03-30 17:54:24 -0700552 cfgService.unregisterConfigFactory(mcastConfigFactory);
Charles Chan47933752017-11-30 15:37:50 -0800553 compCfgService.unregisterProperties(getClass(), false);
Charles Chand6832882015-10-05 17:50:33 -0700554
Charles Chanc7a8a682017-06-19 00:43:31 -0700555 hostService.removeListener(hostListener);
sanghob35a6192015-04-01 13:05:26 -0700556 packetService.removeProcessor(processor);
Charles Chanb8e10c82015-10-14 11:24:40 -0700557 linkService.removeListener(linkListener);
558 deviceService.removeListener(deviceListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700559 multicastRouteService.removeListener(mcastListener);
Charles Chan03a73e02016-10-24 14:52:01 -0700560 routeService.removeListener(routeListener);
Pier Luigi83f919b2018-02-15 16:33:08 +0100561 topologyService.removeListener(topologyListener);
Charles Chan50bb6ef2018-04-18 18:41:05 -0700562 mastershipService.removeListener(mastershipListener);
Saurav Das201762d2018-04-21 17:19:48 -0700563 clusterService.removeListener(clusterListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700564
Charles Chan0aa674e2017-02-23 15:44:08 -0800565 neighbourResolutionService.unregisterNeighbourHandlers(appId);
566
sanghob35a6192015-04-01 13:05:26 -0700567 processor = null;
Charles Chanb8e10c82015-10-14 11:24:40 -0700568 linkListener = null;
Charles Chand55e84d2016-03-30 17:54:24 -0700569 deviceListener = null;
Charles Chan6577f612018-04-19 13:10:01 -0700570 groupHandlerMap.forEach((k, v) -> v.shutdown());
Charles Chanb8e10c82015-10-14 11:24:40 -0700571 groupHandlerMap.clear();
Saurav Dasc6ff8f02018-04-23 18:42:12 -0700572 defaultRoutingHandler.shutdown();
Charles Chanb8e10c82015-10-14 11:24:40 -0700573
Saurav Das7bcbe702017-06-13 15:35:54 -0700574 dsNextObjStore.destroy();
Charles Chan59cc16d2017-02-02 16:20:42 -0800575 vlanNextObjStore.destroy();
Charles Chand55e84d2016-03-30 17:54:24 -0700576 portNextObjStore.destroy();
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700577 dummyVlanIdStore.destroy();
Charles Chand55e84d2016-03-30 17:54:24 -0700578 tunnelStore.destroy();
579 policyStore.destroy();
Pier Luigib72201b2018-01-25 16:16:02 +0100580
581 mcastHandler.terminate();
sanghob35a6192015-04-01 13:05:26 -0700582 log.info("Stopped");
583 }
584
Charles Chan47933752017-11-30 15:37:50 -0800585 @Modified
586 private void modified(ComponentContext context) {
587 Dictionary<?, ?> properties = context.getProperties();
588 if (properties == null) {
589 return;
590 }
591
592 String strActiveProving = Tools.get(properties, "activeProbing");
593 boolean expectActiveProbing = Boolean.parseBoolean(strActiveProving);
Charles Chan47933752017-11-30 15:37:50 -0800594 if (expectActiveProbing != activeProbing) {
595 activeProbing = expectActiveProbing;
596 log.info("{} active probing", activeProbing ? "Enabling" : "Disabling");
597 }
Saurav Das9a554292018-04-27 18:42:30 -0700598
599 String strSingleHomedDown = Tools.get(properties, "singleHomedDown");
600 boolean expectSingleHomedDown = Boolean.parseBoolean(strSingleHomedDown);
601 if (expectSingleHomedDown != singleHomedDown) {
602 singleHomedDown = expectSingleHomedDown;
603 log.info("{} downing of single homed hosts for lost uplinks",
604 singleHomedDown ? "Enabling" : "Disabling");
605 if (singleHomedDown && linkHandler != null) {
606 hostService.getHosts().forEach(host -> host.locations()
607 .forEach(loc -> {
608 if (interfaceService.isConfigured(loc)) {
609 linkHandler.checkUplinksForHost(loc);
610 }
611 }));
612 } else {
613 log.warn("Disabling singleHomedDown does not re-enable already "
614 + "downed ports for single-homed hosts");
615 }
616 }
Charles Chan47933752017-11-30 15:37:50 -0800617 }
618
sangho1e575652015-05-14 00:39:53 -0700619 @Override
620 public List<Tunnel> getTunnels() {
621 return tunnelHandler.getTunnels();
622 }
623
624 @Override
sangho71abe1b2015-06-29 14:58:47 -0700625 public TunnelHandler.Result createTunnel(Tunnel tunnel) {
626 return tunnelHandler.createTunnel(tunnel);
sangho1e575652015-05-14 00:39:53 -0700627 }
628
629 @Override
sangho71abe1b2015-06-29 14:58:47 -0700630 public TunnelHandler.Result removeTunnel(Tunnel tunnel) {
sangho1e575652015-05-14 00:39:53 -0700631 for (Policy policy: policyHandler.getPolicies()) {
632 if (policy.type() == Policy.Type.TUNNEL_FLOW) {
633 TunnelPolicy tunnelPolicy = (TunnelPolicy) policy;
634 if (tunnelPolicy.tunnelId().equals(tunnel.id())) {
635 log.warn("Cannot remove the tunnel used by a policy");
sangho71abe1b2015-06-29 14:58:47 -0700636 return TunnelHandler.Result.TUNNEL_IN_USE;
sangho1e575652015-05-14 00:39:53 -0700637 }
638 }
639 }
sangho71abe1b2015-06-29 14:58:47 -0700640 return tunnelHandler.removeTunnel(tunnel);
sangho1e575652015-05-14 00:39:53 -0700641 }
642
643 @Override
sangho71abe1b2015-06-29 14:58:47 -0700644 public PolicyHandler.Result removePolicy(Policy policy) {
645 return policyHandler.removePolicy(policy);
sangho1e575652015-05-14 00:39:53 -0700646 }
647
648 @Override
sangho71abe1b2015-06-29 14:58:47 -0700649 public PolicyHandler.Result createPolicy(Policy policy) {
650 return policyHandler.createPolicy(policy);
sangho1e575652015-05-14 00:39:53 -0700651 }
652
653 @Override
654 public List<Policy> getPolicies() {
655 return policyHandler.getPolicies();
656 }
657
Saurav Das59232cf2016-04-27 18:35:50 -0700658 @Override
Andreas Pantelopoulos811bbae2018-03-15 16:56:09 -0700659 public Set<L2TunnelDescription> getL2TunnelDescriptions(boolean pending) {
660 return l2TunnelHandler.getL2Descriptions(pending);
Andreas Pantelopoulosff691b72018-03-12 16:30:20 -0700661 }
662
663 @Override
Andreas Pantelopoulosb21547d2018-02-22 12:32:42 -0800664 public List<L2Tunnel> getL2Tunnels() {
Andreas Pantelopoulos27532cd2017-10-23 12:18:25 -0700665 return l2TunnelHandler.getL2Tunnels();
666 }
667
668 @Override
Andreas Pantelopoulosb21547d2018-02-22 12:32:42 -0800669 public List<L2TunnelPolicy> getL2Policies() {
Andreas Pantelopoulos27532cd2017-10-23 12:18:25 -0700670 return l2TunnelHandler.getL2Policies();
671 }
672
Saurav Das5a356042018-04-06 20:16:01 -0700673 @Override
Andreas Pantelopoulosffe69742018-03-20 13:58:49 -0700674 @Deprecated
Andreas Pantelopoulosff691b72018-03-12 16:30:20 -0700675 public L2TunnelHandler.Result addPseudowiresBulk(List<DefaultL2TunnelDescription> bulkPseudowires) {
676
Andreas Pantelopoulos811bbae2018-03-15 16:56:09 -0700677 // get both added and pending pseudowires
678 List<L2TunnelDescription> pseudowires = new ArrayList<>();
679 pseudowires.addAll(l2TunnelHandler.getL2Descriptions(false));
680 pseudowires.addAll(l2TunnelHandler.getL2Descriptions(true));
Andreas Pantelopoulosff691b72018-03-12 16:30:20 -0700681 pseudowires.addAll(bulkPseudowires);
Andreas Pantelopoulos811bbae2018-03-15 16:56:09 -0700682
Andreas Pantelopoulosff691b72018-03-12 16:30:20 -0700683 Set<L2TunnelDescription> newPseudowires = new HashSet(bulkPseudowires);
684
Andreas Pantelopoulosffe69742018-03-20 13:58:49 -0700685 L2TunnelHandler.Result retRes = L2TunnelHandler.Result.SUCCESS;
686 L2TunnelHandler.Result res;
687 for (DefaultL2TunnelDescription pw : bulkPseudowires) {
688 res = addPseudowire(pw);
689 if (res != L2TunnelHandler.Result.SUCCESS) {
690 log.error("Pseudowire with id {} can not be instantiated !", res);
691 retRes = res;
692 }
Andreas Pantelopoulosff691b72018-03-12 16:30:20 -0700693 }
Andreas Pantelopoulosffe69742018-03-20 13:58:49 -0700694
695 return retRes;
Andreas Pantelopoulosff691b72018-03-12 16:30:20 -0700696 }
697
698 @Override
Andreas Pantelopouloscd339592018-02-23 14:18:00 -0800699 public L2TunnelHandler.Result addPseudowire(L2TunnelDescription l2TunnelDescription) {
Andreas Pantelopoulos935d59d2018-03-21 16:44:18 -0700700 return l2TunnelHandler.deployPseudowire(l2TunnelDescription);
Andreas Pantelopoulos27532cd2017-10-23 12:18:25 -0700701 }
702
703 @Override
Andreas Pantelopouloscd339592018-02-23 14:18:00 -0800704 public L2TunnelHandler.Result removePseudowire(Integer pwId) {
Andreas Pantelopoulos935d59d2018-03-21 16:44:18 -0700705 return l2TunnelHandler.tearDownPseudowire(pwId);
Andreas Pantelopoulos27532cd2017-10-23 12:18:25 -0700706 }
707
708 @Override
Saurav Das59232cf2016-04-27 18:35:50 -0700709 public void rerouteNetwork() {
710 cfgListener.configureNetwork();
Saurav Das59232cf2016-04-27 18:35:50 -0700711 }
712
Charles Chanc81c45b2016-10-20 17:02:44 -0700713 @Override
Pier Ventre10bd8d12016-11-26 21:05:22 -0800714 public Map<DeviceId, Set<IpPrefix>> getDeviceSubnetMap() {
715 Map<DeviceId, Set<IpPrefix>> deviceSubnetMap = Maps.newHashMap();
Jonathan Hart8ca2bc02017-11-30 18:23:42 -0800716 deviceConfiguration.getRouters().forEach(device ->
717 deviceSubnetMap.put(device, deviceConfiguration.getSubnets(device)));
Charles Chanc81c45b2016-10-20 17:02:44 -0700718 return deviceSubnetMap;
719 }
720
Saurav Dasc88d4662017-05-15 15:34:25 -0700721
722 @Override
723 public ImmutableMap<DeviceId, EcmpShortestPathGraph> getCurrentEcmpSpg() {
724 if (defaultRoutingHandler != null) {
725 return defaultRoutingHandler.getCurrentEmcpSpgMap();
726 } else {
727 return null;
728 }
729 }
730
731 @Override
Saurav Das7bcbe702017-06-13 15:35:54 -0700732 public ImmutableMap<DestinationSetNextObjectiveStoreKey, NextNeighbors> getDestinationSet() {
733 if (dsNextObjStore != null) {
734 return ImmutableMap.copyOf(dsNextObjStore.entrySet());
Saurav Dasc88d4662017-05-15 15:34:25 -0700735 } else {
736 return ImmutableMap.of();
737 }
738 }
739
Saurav Dasceccf242017-08-03 18:30:35 -0700740 @Override
741 public void verifyGroups(DeviceId id) {
742 DefaultGroupHandler gh = groupHandlerMap.get(id);
743 if (gh != null) {
744 gh.triggerBucketCorrector();
745 }
746 }
747
Saurav Dasc568c342018-01-25 09:49:01 -0800748 @Override
749 public ImmutableMap<Link, Boolean> getSeenLinks() {
750 return linkHandler.getSeenLinks();
751 }
752
753 @Override
754 public ImmutableMap<DeviceId, Set<PortNumber>> getDownedPortState() {
755 return linkHandler.getDownedPorts();
756 }
757
Pier Luigib29144d2018-01-15 18:06:43 +0100758 @Override
759 public Map<McastStoreKey, Integer> getMcastNextIds(IpAddress mcastIp) {
760 return mcastHandler.getMcastNextIds(mcastIp);
761 }
762
763 @Override
Pier Luigi96fe0772018-02-28 12:10:50 +0100764 public Map<McastStoreKey, McastRole> getMcastRoles(IpAddress mcastIp) {
Pier Luigib29144d2018-01-15 18:06:43 +0100765 return mcastHandler.getMcastRoles(mcastIp);
766 }
767
768 @Override
Pier3e793752018-04-19 16:47:06 +0200769 public Map<McastRoleStoreKey, McastRole> getMcastRoles(IpAddress mcastIp, ConnectPoint sourcecp) {
770 return mcastHandler.getMcastRoles(mcastIp, sourcecp);
771 }
772
773 @Override
Pier Luigib29144d2018-01-15 18:06:43 +0100774 public Map<ConnectPoint, List<ConnectPoint>> getMcastPaths(IpAddress mcastIp) {
775 return mcastHandler.getMcastPaths(mcastIp);
776 }
777
Pier96f63cb2018-04-17 16:29:56 +0200778 @Override
Pierb1fe7382018-04-17 17:25:22 +0200779 public Multimap<ConnectPoint, List<ConnectPoint>> getMcastTrees(IpAddress mcastIp,
780 ConnectPoint sourcecp) {
781 return mcastHandler.getMcastTrees(mcastIp, sourcecp);
782 }
783
784 @Override
Pier96f63cb2018-04-17 16:29:56 +0200785 public Map<IpAddress, NodeId> getMcastLeaders(IpAddress mcastIp) {
786 return mcastHandler.getMcastLeaders(mcastIp);
787 }
788
Charles Chan8bc75ee2018-04-17 18:56:53 -0700789 @Override
790 public Map<Set<DeviceId>, NodeId> getShouldProgram() {
791 return defaultRoutingHandler == null ? ImmutableMap.of() :
792 ImmutableMap.copyOf(defaultRoutingHandler.shouldProgram);
793 }
794
795 @Override
796 public Map<DeviceId, Boolean> getShouldProgramCache() {
797 return defaultRoutingHandler == null ? ImmutableMap.of() :
798 ImmutableMap.copyOf(defaultRoutingHandler.shouldProgramCache);
799 }
800
sanghof9d0bf12015-05-19 11:57:42 -0700801 /**
Ray Milkeye4afdb52017-04-05 09:42:04 -0700802 * Extracts the application ID from the manager.
803 *
804 * @return application ID
805 */
806 public ApplicationId appId() {
807 return appId;
808 }
809
810 /**
811 * Returns the device configuration.
812 *
813 * @return device configuration
814 */
815 public DeviceConfiguration deviceConfiguration() {
816 return deviceConfiguration;
817 }
818
819 /**
Saurav Das7bcbe702017-06-13 15:35:54 -0700820 * Per device next objective ID store with (device id + destination set) as key.
Charles Chan5bc32632017-08-22 15:07:34 -0700821 * Used to keep track on MPLS group information.
Ray Milkeye4afdb52017-04-05 09:42:04 -0700822 *
823 * @return next objective ID store
824 */
Saurav Das7bcbe702017-06-13 15:35:54 -0700825 public EventuallyConsistentMap<DestinationSetNextObjectiveStoreKey, NextNeighbors>
826 dsNextObjStore() {
827 return dsNextObjStore;
Ray Milkeye4afdb52017-04-05 09:42:04 -0700828 }
829
830 /**
Charles Chan5bc32632017-08-22 15:07:34 -0700831 * Per device next objective ID store with (device id + vlanid) as key.
832 * Used to keep track on L2 flood group information.
Ray Milkeye4afdb52017-04-05 09:42:04 -0700833 *
834 * @return vlan next object store
835 */
836 public EventuallyConsistentMap<VlanNextObjectiveStoreKey, Integer> vlanNextObjStore() {
837 return vlanNextObjStore;
838 }
839
840 /**
Charles Chan5bc32632017-08-22 15:07:34 -0700841 * Per device next objective ID store with (device id + port + treatment + meta) as key.
842 * Used to keep track on L2 interface group and L3 unicast group information.
Ray Milkeye4afdb52017-04-05 09:42:04 -0700843 *
844 * @return port next object store.
845 */
846 public EventuallyConsistentMap<PortNextObjectiveStoreKey, Integer> portNextObjStore() {
847 return portNextObjStore;
848 }
849
850 /**
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700851 * Per port dummy VLAN ID store with (connect point + ip address) as key.
852 * Used to keep track on dummy VLAN ID allocation.
853 *
854 * @return dummy vlan id store.
855 */
856 public EventuallyConsistentMap<DummyVlanIdStoreKey, VlanId> dummyVlanIdStore() {
857 return dummyVlanIdStore;
858 }
859
860 /**
Saurav Das7bcbe702017-06-13 15:35:54 -0700861 * Returns the MPLS-ECMP configuration which indicates whether ECMP on
862 * labeled packets should be programmed or not.
Pier Ventre98161782016-10-31 15:00:01 -0700863 *
864 * @return MPLS-ECMP value
865 */
866 public boolean getMplsEcmp() {
867 SegmentRoutingAppConfig segmentRoutingAppConfig = cfgService
868 .getConfig(this.appId, SegmentRoutingAppConfig.class);
869 return segmentRoutingAppConfig != null && segmentRoutingAppConfig.mplsEcmp();
870 }
871
872 /**
sanghof9d0bf12015-05-19 11:57:42 -0700873 * Returns the tunnel object with the tunnel ID.
874 *
875 * @param tunnelId Tunnel ID
876 * @return Tunnel reference
877 */
sangho1e575652015-05-14 00:39:53 -0700878 public Tunnel getTunnel(String tunnelId) {
879 return tunnelHandler.getTunnel(tunnelId);
880 }
881
Charles Chan7ffd81f2017-02-08 15:52:08 -0800882 /**
Charles Chanf9a52702017-06-16 15:19:24 -0700883 * Returns internal VLAN for untagged hosts on given connect point.
884 * <p>
885 * The internal VLAN is either vlan-untagged for an access port,
886 * or vlan-native for a trunk port.
887 *
888 * @param connectPoint connect point
889 * @return internal VLAN or null if both vlan-untagged and vlan-native are undefined
890 */
Pier Luigi96fe0772018-02-28 12:10:50 +0100891 public VlanId getInternalVlanId(ConnectPoint connectPoint) {
Charles Chan971d7ba2018-05-01 11:50:20 -0700892 VlanId untaggedVlanId = interfaceService.getUntaggedVlanId(connectPoint);
893 VlanId nativeVlanId = interfaceService.getNativeVlanId(connectPoint);
Charles Chanf9a52702017-06-16 15:19:24 -0700894 return untaggedVlanId != null ? untaggedVlanId : nativeVlanId;
895 }
896
897 /**
Charles Chan65238242017-06-22 18:03:14 -0700898 * Returns optional pair device ID of given device.
899 *
900 * @param deviceId device ID
901 * @return optional pair device ID. Might be empty if pair device is not configured
902 */
903 Optional<DeviceId> getPairDeviceId(DeviceId deviceId) {
904 SegmentRoutingDeviceConfig deviceConfig =
905 cfgService.getConfig(deviceId, SegmentRoutingDeviceConfig.class);
906 return Optional.ofNullable(deviceConfig).map(SegmentRoutingDeviceConfig::pairDeviceId);
907 }
908 /**
909 * Returns optional pair device local port of given device.
910 *
911 * @param deviceId device ID
912 * @return optional pair device ID. Might be empty if pair device is not configured
913 */
Saurav Das9a554292018-04-27 18:42:30 -0700914 public Optional<PortNumber> getPairLocalPort(DeviceId deviceId) {
Charles Chan65238242017-06-22 18:03:14 -0700915 SegmentRoutingDeviceConfig deviceConfig =
916 cfgService.getConfig(deviceId, SegmentRoutingDeviceConfig.class);
917 return Optional.ofNullable(deviceConfig).map(SegmentRoutingDeviceConfig::pairLocalPort);
918 }
919
920 /**
Charles Chan9640c812017-08-23 13:55:39 -0700921 * Returns locations of given resolved route.
922 *
923 * @param resolvedRoute resolved route
924 * @return locations of nexthop. Might be empty if next hop is not found
925 */
926 Set<ConnectPoint> nextHopLocations(ResolvedRoute resolvedRoute) {
927 HostId hostId = HostId.hostId(resolvedRoute.nextHopMac(), resolvedRoute.nextHopVlan());
928 return Optional.ofNullable(hostService.getHost(hostId))
929 .map(Host::locations).orElse(Sets.newHashSet())
930 .stream().map(l -> (ConnectPoint) l).collect(Collectors.toSet());
931 }
932
933 /**
Charles Chan7ffd81f2017-02-08 15:52:08 -0800934 * Returns vlan port map of given device.
935 *
936 * @param deviceId device id
937 * @return vlan-port multimap
938 */
939 public Multimap<VlanId, PortNumber> getVlanPortMap(DeviceId deviceId) {
940 HashMultimap<VlanId, PortNumber> vlanPortMap = HashMultimap.create();
941
942 interfaceService.getInterfaces().stream()
943 .filter(intf -> intf.connectPoint().deviceId().equals(deviceId))
944 .forEach(intf -> {
945 vlanPortMap.put(intf.vlanUntagged(), intf.connectPoint().port());
Charles Chan65238242017-06-22 18:03:14 -0700946 intf.vlanTagged().forEach(vlanTagged ->
947 vlanPortMap.put(vlanTagged, intf.connectPoint().port())
948 );
Charles Chan7ffd81f2017-02-08 15:52:08 -0800949 vlanPortMap.put(intf.vlanNative(), intf.connectPoint().port());
950 });
951 vlanPortMap.removeAll(VlanId.NONE);
952
953 return vlanPortMap;
954 }
955
956 /**
Charles Chan59cc16d2017-02-02 16:20:42 -0800957 * Returns the next objective ID for the given vlan id. It is expected
Saurav Das4ce45962015-11-24 23:21:05 -0800958 * that the next-objective has been pre-created from configuration.
Charles Chanc42e84e2015-10-20 16:24:19 -0700959 *
960 * @param deviceId Device ID
Charles Chan59cc16d2017-02-02 16:20:42 -0800961 * @param vlanId VLAN ID
Saurav Das4ce45962015-11-24 23:21:05 -0800962 * @return next objective ID or -1 if it was not found
Charles Chanc42e84e2015-10-20 16:24:19 -0700963 */
Charles Chan65238242017-06-22 18:03:14 -0700964 int getVlanNextObjectiveId(DeviceId deviceId, VlanId vlanId) {
Charles Chanc42e84e2015-10-20 16:24:19 -0700965 if (groupHandlerMap.get(deviceId) != null) {
Charles Chan59cc16d2017-02-02 16:20:42 -0800966 log.trace("getVlanNextObjectiveId query in device {}", deviceId);
967 return groupHandlerMap.get(deviceId).getVlanNextObjectiveId(vlanId);
Charles Chanc42e84e2015-10-20 16:24:19 -0700968 } else {
Charles Chan59cc16d2017-02-02 16:20:42 -0800969 log.warn("getVlanNextObjectiveId query - groupHandler for "
Saurav Das4ce45962015-11-24 23:21:05 -0800970 + "device {} not found", deviceId);
971 return -1;
972 }
973 }
974
975 /**
976 * Returns the next objective ID for the given portNumber, given the treatment.
977 * There could be multiple different treatments to the same outport, which
Saurav Das961beb22017-03-29 19:09:17 -0700978 * would result in different objectives. If the next object does not exist,
979 * and should be created, a new one is created and its id is returned.
Saurav Das4ce45962015-11-24 23:21:05 -0800980 *
981 * @param deviceId Device ID
982 * @param portNum port number on device for which NextObjective is queried
983 * @param treatment the actions to apply on the packets (should include outport)
984 * @param meta metadata passed into the creation of a Next Objective if necessary
Saurav Das961beb22017-03-29 19:09:17 -0700985 * @param createIfMissing true if a next object should be created if not found
Saurav Das59232cf2016-04-27 18:35:50 -0700986 * @return next objective ID or -1 if an error occurred during retrieval or creation
Saurav Das4ce45962015-11-24 23:21:05 -0800987 */
988 public int getPortNextObjectiveId(DeviceId deviceId, PortNumber portNum,
989 TrafficTreatment treatment,
Saurav Das961beb22017-03-29 19:09:17 -0700990 TrafficSelector meta,
991 boolean createIfMissing) {
Saurav Das4ce45962015-11-24 23:21:05 -0800992 DefaultGroupHandler ghdlr = groupHandlerMap.get(deviceId);
993 if (ghdlr != null) {
Saurav Das961beb22017-03-29 19:09:17 -0700994 return ghdlr.getPortNextObjectiveId(portNum, treatment, meta, createIfMissing);
Saurav Das4ce45962015-11-24 23:21:05 -0800995 } else {
Charles Chane849c192016-01-11 18:28:54 -0800996 log.warn("getPortNextObjectiveId query - groupHandler for device {}"
997 + " not found", deviceId);
998 return -1;
999 }
1000 }
1001
Saurav Dasc88d4662017-05-15 15:34:25 -07001002 /**
1003 * Returns the group handler object for the specified device id.
1004 *
1005 * @param devId the device identifier
1006 * @return the groupHandler object for the device id, or null if not found
1007 */
Charles Chan65238242017-06-22 18:03:14 -07001008 DefaultGroupHandler getGroupHandler(DeviceId devId) {
Saurav Dasc88d4662017-05-15 15:34:25 -07001009 return groupHandlerMap.get(devId);
1010 }
1011
1012 /**
Saurav Dasceccf242017-08-03 18:30:35 -07001013 * Returns the default routing handler object.
1014 *
1015 * @return the default routing handler object
1016 */
1017 public DefaultRoutingHandler getRoutingHandler() {
1018 return defaultRoutingHandler;
1019 }
1020
Jonghwan Hyun800d9d02018-04-09 09:40:50 -07001021 /**
1022 * Returns new dummy VLAN ID.
1023 * Dummy VLAN ID should be unique in each connect point.
1024 *
1025 * @param cp connect point
1026 * @param ipAddress IP address
1027 * @return new dummy VLAN ID. Returns VlanId.NONE if no VLAN ID is available.
1028 */
1029 public synchronized VlanId allocateDummyVlanId(ConnectPoint cp, IpAddress ipAddress) {
1030 Set<VlanId> usedVlanId = Sets.union(getVlanPortMap(cp.deviceId()).keySet(),
1031 dummyVlanIdStore.entrySet().stream().filter(entry ->
1032 (entry.getKey()).connectPoint().equals(cp))
1033 .map(Map.Entry::getValue)
1034 .collect(Collectors.toSet()));
1035
1036 VlanId dummyVlanId = IntStream.range(MIN_DUMMY_VLAN_ID, MAX_DUMMY_VLAN_ID).mapToObj(
1037 i -> VlanId.vlanId((short) (i & 0xFFFF))
1038 ).filter(vlanId -> !usedVlanId.contains(vlanId)).findFirst().orElse(VlanId.NONE);
1039
1040 if (!dummyVlanId.equals(VlanId.NONE)) {
1041 this.dummyVlanIdStore.put(new DummyVlanIdStoreKey(cp, ipAddress), dummyVlanId);
1042 log.debug("Dummy VLAN ID {} is allocated to {}, {}", dummyVlanId, cp, ipAddress);
1043 } else {
1044 log.error("Failed to allocate dummy VLAN ID for {}, {}", cp, ipAddress);
1045 }
1046 return dummyVlanId;
1047 }
1048
1049
sanghob35a6192015-04-01 13:05:26 -07001050 private class InternalPacketProcessor implements PacketProcessor {
sanghob35a6192015-04-01 13:05:26 -07001051 @Override
1052 public void process(PacketContext context) {
Charles Chan07f15f22018-05-08 21:35:50 -07001053 packetExecutor.execute(() -> processPacketInternal(context));
1054 }
sanghob35a6192015-04-01 13:05:26 -07001055
Charles Chan07f15f22018-05-08 21:35:50 -07001056 private void processPacketInternal(PacketContext context) {
sanghob35a6192015-04-01 13:05:26 -07001057 if (context.isHandled()) {
1058 return;
1059 }
1060
1061 InboundPacket pkt = context.inPacket();
1062 Ethernet ethernet = pkt.parsed();
Pier Luigi7dad71c2017-02-01 13:50:04 -08001063
1064 if (ethernet == null) {
1065 return;
1066 }
1067
Saurav Das7bcbe702017-06-13 15:35:54 -07001068 log.trace("Rcvd pktin from {}: {}", context.inPacket().receivedFrom(),
1069 ethernet);
Pier Ventree0ae7a32016-11-23 09:57:42 -08001070 if (ethernet.getEtherType() == TYPE_ARP) {
Saurav Dasc88d4662017-05-15 15:34:25 -07001071 log.warn("Received unexpected ARP packet on {}",
1072 context.inPacket().receivedFrom());
Saurav Das76ae6812017-03-15 15:15:14 -07001073 log.trace("{}", ethernet);
Pier Ventre968da122016-12-09 17:26:04 -08001074 return;
sanghob35a6192015-04-01 13:05:26 -07001075 } else if (ethernet.getEtherType() == Ethernet.TYPE_IPV4) {
Pier Ventre735b8c82016-12-02 08:16:05 -08001076 IPv4 ipv4Packet = (IPv4) ethernet.getPayload();
1077 //ipHandler.addToPacketBuffer(ipv4Packet);
1078 if (ipv4Packet.getProtocol() == IPv4.PROTOCOL_ICMP) {
1079 icmpHandler.processIcmp(ethernet, pkt.receivedFrom());
sanghob35a6192015-04-01 13:05:26 -07001080 } else {
Charles Chan50035632017-01-13 17:20:44 -08001081 // NOTE: We don't support IP learning at this moment so this
1082 // is not necessary. Also it causes duplication of DHCP packets.
Pier Ventre968da122016-12-09 17:26:04 -08001083 // ipHandler.processPacketIn(ipv4Packet, pkt.receivedFrom());
sanghob35a6192015-04-01 13:05:26 -07001084 }
Pier Ventre10bd8d12016-11-26 21:05:22 -08001085 } else if (ethernet.getEtherType() == Ethernet.TYPE_IPV6) {
1086 IPv6 ipv6Packet = (IPv6) ethernet.getPayload();
Pier Ventre735b8c82016-12-02 08:16:05 -08001087 //ipHandler.addToPacketBuffer(ipv6Packet);
Pier Luigi7dad71c2017-02-01 13:50:04 -08001088 // We deal with the packet only if the packet is a ICMP6 ECHO/REPLY
Pier Ventre735b8c82016-12-02 08:16:05 -08001089 if (ipv6Packet.getNextHeader() == IPv6.PROTOCOL_ICMP6) {
1090 ICMP6 icmp6Packet = (ICMP6) ipv6Packet.getPayload();
1091 if (icmp6Packet.getIcmpType() == ICMP6.ECHO_REQUEST ||
1092 icmp6Packet.getIcmpType() == ICMP6.ECHO_REPLY) {
1093 icmpHandler.processIcmpv6(ethernet, pkt.receivedFrom());
1094 } else {
Saurav Dasc88d4662017-05-15 15:34:25 -07001095 log.trace("Received ICMPv6 0x{} - not handled",
Charles Chan0ed44fb2017-03-13 13:10:30 -07001096 Integer.toHexString(icmp6Packet.getIcmpType() & 0xff));
Pier Ventre735b8c82016-12-02 08:16:05 -08001097 }
1098 } else {
1099 // NOTE: We don't support IP learning at this moment so this
1100 // is not necessary. Also it causes duplication of DHCPv6 packets.
1101 // ipHandler.processPacketIn(ipv6Packet, pkt.receivedFrom());
1102 }
sanghob35a6192015-04-01 13:05:26 -07001103 }
1104 }
1105 }
1106
sanghob35a6192015-04-01 13:05:26 -07001107 private class InternalEventHandler implements Runnable {
Charles Chan9b7217c2018-04-05 16:31:15 -07001108 private Event event;
1109
1110 InternalEventHandler(Event event) {
1111 this.event = event;
1112 }
1113
Srikanth Vavilapalli4db76e32015-04-07 15:12:32 -07001114 @Override
sanghob35a6192015-04-01 13:05:26 -07001115 public void run() {
Charles Chan9b7217c2018-04-05 16:31:15 -07001116 try {
1117 // TODO We should also change SR routing and PW to listen to TopologyEvents
1118 if (event.type() == LinkEvent.Type.LINK_ADDED ||
1119 event.type() == LinkEvent.Type.LINK_UPDATED) {
1120 linkHandler.processLinkAdded((Link) event.subject());
1121 } else if (event.type() == LinkEvent.Type.LINK_REMOVED) {
1122 linkHandler.processLinkRemoved((Link) event.subject());
1123 } else if (event.type() == DeviceEvent.Type.DEVICE_ADDED ||
1124 event.type() == DeviceEvent.Type.DEVICE_AVAILABILITY_CHANGED ||
1125 event.type() == DeviceEvent.Type.DEVICE_UPDATED) {
1126 DeviceId deviceId = ((Device) event.subject()).id();
1127 if (deviceService.isAvailable(deviceId)) {
1128 log.info("** DEVICE UP Processing device event {} "
1129 + "for available device {}",
1130 event.type(), ((Device) event.subject()).id());
1131 processDeviceAdded((Device) event.subject());
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001132 } else {
Charles Chan9b7217c2018-04-05 16:31:15 -07001133 log.info(" ** DEVICE DOWN Processing device event {}"
1134 + " for unavailable device {}",
1135 event.type(), ((Device) event.subject()).id());
1136 processDeviceRemoved((Device) event.subject());
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001137 }
Charles Chan9b7217c2018-04-05 16:31:15 -07001138 } else if (event.type() == DeviceEvent.Type.PORT_ADDED) {
1139 // typically these calls come when device is added first time
1140 // so port filtering rules are handled at the device_added event.
1141 // port added calls represent all ports on the device,
1142 // enabled or not.
1143 log.trace("** PORT ADDED {}/{} -> {}",
1144 ((DeviceEvent) event).subject().id(),
1145 ((DeviceEvent) event).port().number(),
1146 event.type());
1147 } else if (event.type() == DeviceEvent.Type.PORT_UPDATED) {
1148 // these calls happen for every subsequent event
1149 // ports enabled, disabled, switch goes away, comes back
1150 log.info("** PORT UPDATED {}/{} -> {}",
1151 event.subject(),
1152 ((DeviceEvent) event).port(),
1153 event.type());
Saurav Das9a554292018-04-27 18:42:30 -07001154 processPortUpdatedInternal(((Device) event.subject()),
Charles Chan9b7217c2018-04-05 16:31:15 -07001155 ((DeviceEvent) event).port());
1156 } else if (event.type() == TopologyEvent.Type.TOPOLOGY_CHANGED) {
1157 // Process topology event, needed for all modules relying on
1158 // topology service for path computation
1159 TopologyEvent topologyEvent = (TopologyEvent) event;
1160 log.info("Processing topology event {}, topology age {}, reasons {}",
1161 event.type(), topologyEvent.subject().time(),
1162 topologyEvent.reasons().size());
1163 topologyHandler.processTopologyChange(topologyEvent.reasons());
1164 } else if (event.type() == HostEvent.Type.HOST_ADDED) {
1165 hostHandler.processHostAddedEvent((HostEvent) event);
1166 } else if (event.type() == HostEvent.Type.HOST_MOVED) {
1167 hostHandler.processHostMovedEvent((HostEvent) event);
1168 routeHandler.processHostMovedEvent((HostEvent) event);
1169 } else if (event.type() == HostEvent.Type.HOST_REMOVED) {
1170 hostHandler.processHostRemovedEvent((HostEvent) event);
1171 } else if (event.type() == HostEvent.Type.HOST_UPDATED) {
1172 hostHandler.processHostUpdatedEvent((HostEvent) event);
1173 } else if (event.type() == RouteEvent.Type.ROUTE_ADDED) {
1174 routeHandler.processRouteAdded((RouteEvent) event);
1175 } else if (event.type() == RouteEvent.Type.ROUTE_UPDATED) {
1176 routeHandler.processRouteUpdated((RouteEvent) event);
1177 } else if (event.type() == RouteEvent.Type.ROUTE_REMOVED) {
1178 routeHandler.processRouteRemoved((RouteEvent) event);
1179 } else if (event.type() == RouteEvent.Type.ALTERNATIVE_ROUTES_CHANGED) {
1180 routeHandler.processAlternativeRoutesChanged((RouteEvent) event);
1181 } else if (event.type() == McastEvent.Type.SOURCES_ADDED ||
1182 event.type() == McastEvent.Type.SOURCES_REMOVED ||
1183 event.type() == McastEvent.Type.SINKS_ADDED ||
1184 event.type() == McastEvent.Type.SINKS_REMOVED ||
1185 event.type() == McastEvent.Type.ROUTE_ADDED ||
1186 event.type() == McastEvent.Type.ROUTE_REMOVED) {
1187 mcastHandler.processMcastEvent((McastEvent) event);
1188 } else if (event.type() == NetworkConfigEvent.Type.CONFIG_ADDED) {
1189 NetworkConfigEvent netcfgEvent = (NetworkConfigEvent) event;
1190 Class configClass = netcfgEvent.configClass();
1191 if (configClass.equals(SegmentRoutingAppConfig.class)) {
1192 appCfgHandler.processAppConfigAdded(netcfgEvent);
1193 log.info("App config event .. configuring network");
1194 cfgListener.configureNetwork();
1195 } else if (configClass.equals(SegmentRoutingDeviceConfig.class)) {
1196 log.info("Segment Routing Device Config added for {}", event.subject());
1197 cfgListener.configureNetwork();
1198 } else if (configClass.equals(XConnectConfig.class)) {
1199 xConnectHandler.processXConnectConfigAdded(netcfgEvent);
1200 } else if (configClass.equals(InterfaceConfig.class)) {
1201 log.info("Interface Config added for {}", event.subject());
1202 cfgListener.configureNetwork();
1203 } else {
1204 log.error("Unhandled config class: {}", configClass);
1205 }
1206 } else if (event.type() == NetworkConfigEvent.Type.CONFIG_UPDATED) {
1207 NetworkConfigEvent netcfgEvent = (NetworkConfigEvent) event;
1208 Class configClass = netcfgEvent.configClass();
1209 if (configClass.equals(SegmentRoutingAppConfig.class)) {
1210 appCfgHandler.processAppConfigUpdated(netcfgEvent);
1211 log.info("App config event .. configuring network");
1212 cfgListener.configureNetwork();
1213 } else if (configClass.equals(SegmentRoutingDeviceConfig.class)) {
1214 log.info("Segment Routing Device Config updated for {}", event.subject());
1215 createOrUpdateDeviceConfiguration();
1216 } else if (configClass.equals(XConnectConfig.class)) {
1217 xConnectHandler.processXConnectConfigUpdated(netcfgEvent);
1218 } else if (configClass.equals(InterfaceConfig.class)) {
1219 log.info("Interface Config updated for {}", event.subject());
1220 createOrUpdateDeviceConfiguration();
1221 updateInterface((InterfaceConfig) netcfgEvent.config().get(),
1222 (InterfaceConfig) netcfgEvent.prevConfig().get());
1223 } else {
1224 log.error("Unhandled config class: {}", configClass);
1225 }
1226 } else if (event.type() == NetworkConfigEvent.Type.CONFIG_REMOVED) {
1227 NetworkConfigEvent netcfgEvent = (NetworkConfigEvent) event;
1228 Class configClass = netcfgEvent.configClass();
1229 if (configClass.equals(SegmentRoutingAppConfig.class)) {
1230 appCfgHandler.processAppConfigRemoved(netcfgEvent);
1231 log.info("App config event .. configuring network");
1232 cfgListener.configureNetwork();
1233 } else if (configClass.equals(SegmentRoutingDeviceConfig.class)) {
1234 // TODO Handle sr device config removal
1235 log.info("SegmentRoutingDeviceConfig removal is not handled in current implementation");
1236 } else if (configClass.equals(XConnectConfig.class)) {
1237 xConnectHandler.processXConnectConfigRemoved(netcfgEvent);
1238 } else if (configClass.equals(InterfaceConfig.class)) {
1239 // TODO Handle interface removal
1240 log.info("InterfaceConfig removal is not handled in current implementation");
1241 } else {
1242 log.error("Unhandled config class: {}", configClass);
1243 }
Saurav Das201762d2018-04-21 17:19:48 -07001244 } else if (event.type() == MastershipEvent.Type.MASTER_CHANGED) {
1245 MastershipEvent me = (MastershipEvent) event;
1246 DeviceId deviceId = me.subject();
1247 Optional<DeviceId> pairDeviceId = getPairDeviceId(deviceId);
1248 log.info(" ** MASTERSHIP CHANGED Invalidating shouldProgram cache"
1249 + " for {}/pair={} due to change", deviceId, pairDeviceId);
1250 defaultRoutingHandler.invalidateShouldProgramCache(deviceId);
1251 pairDeviceId.ifPresent(defaultRoutingHandler::invalidateShouldProgramCache);
1252 defaultRoutingHandler.checkFullRerouteForMasterChange(deviceId, me);
Charles Chan9b7217c2018-04-05 16:31:15 -07001253 } else {
1254 log.warn("Unhandled event type: {}", event.type());
sanghob35a6192015-04-01 13:05:26 -07001255 }
Charles Chan9b7217c2018-04-05 16:31:15 -07001256 } catch (Exception e) {
1257 log.error("SegmentRouting event handler thread thrown an exception: {}",
1258 e.getMessage(), e);
sanghob35a6192015-04-01 13:05:26 -07001259 }
sanghob35a6192015-04-01 13:05:26 -07001260 }
1261 }
1262
Saurav Das45f48152018-01-18 12:07:33 -08001263 void processDeviceAdded(Device device) {
Saurav Dasb5c236e2016-06-07 10:08:06 -07001264 log.info("** DEVICE ADDED with ID {}", device.id());
Charles Chan91ccbf72017-06-27 18:48:32 -07001265
1266 // NOTE: Punt ARP/NDP even when the device is not configured.
1267 // Host learning without network config is required for CORD config generator.
1268 routingRulePopulator.populateIpPunts(device.id());
1269 routingRulePopulator.populateArpNdpPunts(device.id());
1270
Charles Chan0b4e6182015-11-03 10:42:14 -08001271 if (deviceConfiguration == null || !deviceConfiguration.isConfigured(device.id())) {
Saurav Das7bcbe702017-06-13 15:35:54 -07001272 log.warn("Device configuration unavailable. Device {} will be "
1273 + "processed after configuration.", device.id());
Saurav Das2857f382015-11-03 14:39:27 -08001274 return;
1275 }
Charles Chan2199c302016-04-23 17:36:10 -07001276 processDeviceAddedInternal(device.id());
1277 }
1278
1279 private void processDeviceAddedInternal(DeviceId deviceId) {
Saurav Das837e0bb2015-10-30 17:45:38 -07001280 // Irrespective of whether the local is a MASTER or not for this device,
1281 // we need to create a SR-group-handler instance. This is because in a
1282 // multi-instance setup, any instance can initiate forwarding/next-objectives
1283 // for any switch (even if this instance is a SLAVE or not even connected
1284 // to the switch). To handle this, a default-group-handler instance is necessary
1285 // per switch.
Charles Chan2199c302016-04-23 17:36:10 -07001286 log.debug("Current groupHandlerMap devs: {}", groupHandlerMap.keySet());
1287 if (groupHandlerMap.get(deviceId) == null) {
Charles Chan0b4e6182015-11-03 10:42:14 -08001288 DefaultGroupHandler groupHandler;
1289 try {
1290 groupHandler = DefaultGroupHandler.
Charles Chan2199c302016-04-23 17:36:10 -07001291 createGroupHandler(deviceId,
1292 appId,
1293 deviceConfiguration,
1294 linkService,
1295 flowObjectiveService,
1296 this);
Charles Chan0b4e6182015-11-03 10:42:14 -08001297 } catch (DeviceConfigNotFoundException e) {
1298 log.warn(e.getMessage() + " Aborting processDeviceAdded.");
1299 return;
1300 }
Saurav Dasf14d9ef2017-12-05 15:00:23 -08001301 log.debug("updating groupHandlerMap with new grpHdlr for device: {}",
Charles Chan2199c302016-04-23 17:36:10 -07001302 deviceId);
1303 groupHandlerMap.put(deviceId, groupHandler);
Saurav Das2857f382015-11-03 14:39:27 -08001304 }
Saurav Dasb5c236e2016-06-07 10:08:06 -07001305
Charles Chan2199c302016-04-23 17:36:10 -07001306 if (mastershipService.isLocalMaster(deviceId)) {
Saurav Das018605f2017-02-18 14:05:44 -08001307 defaultRoutingHandler.populatePortAddressingRules(deviceId);
Charles Chanfc5c7802016-05-17 13:13:55 -07001308 xConnectHandler.init(deviceId);
Charles Chan2199c302016-04-23 17:36:10 -07001309 DefaultGroupHandler groupHandler = groupHandlerMap.get(deviceId);
Charles Chan59cc16d2017-02-02 16:20:42 -08001310 groupHandler.createGroupsFromVlanConfig();
Charles Chan2199c302016-04-23 17:36:10 -07001311 routingRulePopulator.populateSubnetBroadcastRule(deviceId);
Charles Chanc42e84e2015-10-20 16:24:19 -07001312 }
Charles Chan5270ed02016-01-30 23:22:37 -08001313
Charles Chan03a73e02016-10-24 14:52:01 -07001314 appCfgHandler.init(deviceId);
Charles Chan94549652018-04-29 18:11:37 -07001315 hostEventExecutor.execute(() -> hostHandler.init(deviceId));
1316 routeEventExecutor.execute(() -> routeHandler.init(deviceId));
sanghob35a6192015-04-01 13:05:26 -07001317 }
1318
Saurav Das80980c72016-03-23 11:22:49 -07001319 private void processDeviceRemoved(Device device) {
Saurav Das7bcbe702017-06-13 15:35:54 -07001320 dsNextObjStore.entrySet().stream()
Saurav Das80980c72016-03-23 11:22:49 -07001321 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
Charles Chan47933752017-11-30 15:37:50 -08001322 .forEach(entry -> dsNextObjStore.remove(entry.getKey()));
Charles Chan59cc16d2017-02-02 16:20:42 -08001323 vlanNextObjStore.entrySet().stream()
Saurav Das80980c72016-03-23 11:22:49 -07001324 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
Charles Chan65238242017-06-22 18:03:14 -07001325 .forEach(entry -> vlanNextObjStore.remove(entry.getKey()));
Saurav Das80980c72016-03-23 11:22:49 -07001326 portNextObjStore.entrySet().stream()
1327 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
Charles Chan65238242017-06-22 18:03:14 -07001328 .forEach(entry -> portNextObjStore.remove(entry.getKey()));
Saurav Das45f48152018-01-18 12:07:33 -08001329 linkHandler.processDeviceRemoved(device);
Charles Chaned3742352017-06-15 00:44:51 -07001330
Saurav Dasceccf242017-08-03 18:30:35 -07001331 DefaultGroupHandler gh = groupHandlerMap.remove(device.id());
1332 if (gh != null) {
1333 gh.shutdown();
1334 }
Saurav Dasc88d4662017-05-15 15:34:25 -07001335 // Note that a switch going down is associated with all of its links
1336 // going down as well, but it is treated as a single switch down event
Saurav Das5a356042018-04-06 20:16:01 -07001337 // while the link-downs are ignored. We cannot rely on the ordering of
1338 // events - i.e we cannot expect all link-downs to come before the
1339 // switch down - so we purge all seen-links for the switch before
1340 // handling route-path changes for the switch-down
Saurav Dasc88d4662017-05-15 15:34:25 -07001341 defaultRoutingHandler
Saurav Das604ab3a2018-03-18 21:28:15 -07001342 .populateRoutingRulesForLinkStatusChange(null, null, device.id(), true);
Saurav Dasc568c342018-01-25 09:49:01 -08001343 defaultRoutingHandler.purgeEcmpGraph(device.id());
Charles Chanfc5c7802016-05-17 13:13:55 -07001344 xConnectHandler.removeDevice(device.id());
Saurav Dasa4020382018-02-14 14:14:54 -08001345
1346 // Cleanup all internal groupHandler stores for this device. Should be
1347 // done after all rerouting or rehashing has been completed
1348 groupHandlerMap.entrySet()
1349 .forEach(entry -> entry.getValue().cleanUpForNeighborDown(device.id()));
Saurav Das80980c72016-03-23 11:22:49 -07001350 }
1351
Saurav Dasc6ff8f02018-04-23 18:42:12 -07001352 /**
1353 * Purge the destinationSet nextObjective store of entries with this device
1354 * as key. Erases app-level knowledge of hashed groups in this device.
1355 *
1356 * @param devId the device identifier
1357 */
Saurav Das201762d2018-04-21 17:19:48 -07001358 void purgeHashedNextObjectiveStore(DeviceId devId) {
Saurav Dasc6ff8f02018-04-23 18:42:12 -07001359 log.debug("Purging hashed next-obj store for dev:{}", devId);
Saurav Das201762d2018-04-21 17:19:48 -07001360 dsNextObjStore.entrySet().stream()
1361 .filter(entry -> entry.getKey().deviceId().equals(devId))
1362 .forEach(entry -> dsNextObjStore.remove(entry.getKey()));
1363 }
1364
Saurav Das9a554292018-04-27 18:42:30 -07001365 private void processPortUpdatedInternal(Device device, Port port) {
Saurav Das1a129a02016-11-18 15:21:57 -08001366 if (deviceConfiguration == null || !deviceConfiguration.isConfigured(device.id())) {
1367 log.warn("Device configuration uploading. Not handling port event for"
1368 + "dev: {} port: {}", device.id(), port.number());
1369 return;
1370 }
Saurav Das018605f2017-02-18 14:05:44 -08001371
Saurav Das9a554292018-04-27 18:42:30 -07001372 if (interfaceService.isConfigured(new ConnectPoint(device.id(), port.number()))) {
1373 lastEdgePortEvent = Instant.now();
1374 }
1375
Saurav Das018605f2017-02-18 14:05:44 -08001376 if (!mastershipService.isLocalMaster(device.id())) {
1377 log.debug("Not master for dev:{} .. not handling port updated event"
1378 + "for port {}", device.id(), port.number());
1379 return;
1380 }
Saurav Das9a554292018-04-27 18:42:30 -07001381 processPortUpdated(device.id(), port);
1382 }
Saurav Das018605f2017-02-18 14:05:44 -08001383
Saurav Das9a554292018-04-27 18:42:30 -07001384 /**
1385 * Adds or remove filtering rules for the given switchport. If switchport is
1386 * an edge facing port, additionally handles host probing and broadcast
1387 * rules. Must be called by local master of device.
1388 *
1389 * @param deviceId the device identifier
1390 * @param port the port to update
1391 */
1392 void processPortUpdated(DeviceId deviceId, Port port) {
Saurav Das018605f2017-02-18 14:05:44 -08001393 // first we handle filtering rules associated with the port
1394 if (port.isEnabled()) {
1395 log.info("Switchport {}/{} enabled..programming filters",
Saurav Das9a554292018-04-27 18:42:30 -07001396 deviceId, port.number());
1397 routingRulePopulator.processSinglePortFilters(deviceId, port.number(), true);
Saurav Das018605f2017-02-18 14:05:44 -08001398 } else {
1399 log.info("Switchport {}/{} disabled..removing filters",
Saurav Das9a554292018-04-27 18:42:30 -07001400 deviceId, port.number());
1401 routingRulePopulator.processSinglePortFilters(deviceId, port.number(), false);
Saurav Das018605f2017-02-18 14:05:44 -08001402 }
Saurav Das1a129a02016-11-18 15:21:57 -08001403
1404 // portUpdated calls are for ports that have gone down or up. For switch
1405 // to switch ports, link-events should take care of any re-routing or
1406 // group editing necessary for port up/down. Here we only process edge ports
1407 // that are already configured.
Saurav Das9a554292018-04-27 18:42:30 -07001408 ConnectPoint cp = new ConnectPoint(deviceId, port.number());
Charles Chan971d7ba2018-05-01 11:50:20 -07001409 VlanId untaggedVlan = interfaceService.getUntaggedVlanId(cp);
1410 VlanId nativeVlan = interfaceService.getNativeVlanId(cp);
1411 Set<VlanId> taggedVlans = interfaceService.getTaggedVlanId(cp);
Charles Chan59cc16d2017-02-02 16:20:42 -08001412
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001413 if (untaggedVlan == null && nativeVlan == null && taggedVlans.isEmpty()) {
Saurav Dasc88d4662017-05-15 15:34:25 -07001414 log.debug("Not handling port updated event for non-edge port (unconfigured) "
Saurav Das9a554292018-04-27 18:42:30 -07001415 + "dev/port: {}/{}", deviceId, port.number());
Saurav Das1a129a02016-11-18 15:21:57 -08001416 return;
1417 }
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001418 if (untaggedVlan != null) {
Saurav Das9a554292018-04-27 18:42:30 -07001419 processEdgePort(deviceId, port, untaggedVlan, true);
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001420 }
1421 if (nativeVlan != null) {
Saurav Das9a554292018-04-27 18:42:30 -07001422 processEdgePort(deviceId, port, nativeVlan, true);
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001423 }
1424 if (!taggedVlans.isEmpty()) {
Saurav Das9a554292018-04-27 18:42:30 -07001425 taggedVlans.forEach(tag -> processEdgePort(deviceId, port, tag, false));
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001426 }
Saurav Das1a129a02016-11-18 15:21:57 -08001427 }
1428
Saurav Das9a554292018-04-27 18:42:30 -07001429 private void processEdgePort(DeviceId deviceId, Port port, VlanId vlanId,
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001430 boolean popVlan) {
Saurav Das1a129a02016-11-18 15:21:57 -08001431 boolean portUp = port.isEnabled();
1432 if (portUp) {
Saurav Das9a554292018-04-27 18:42:30 -07001433 log.info("Device:EdgePort {}:{} is enabled in vlan: {}", deviceId,
Charles Chan59cc16d2017-02-02 16:20:42 -08001434 port.number(), vlanId);
Charles Chan94549652018-04-29 18:11:37 -07001435 hostEventExecutor.execute(() -> hostHandler.processPortUp(new ConnectPoint(deviceId, port.number())));
Saurav Das1a129a02016-11-18 15:21:57 -08001436 } else {
Saurav Das9a554292018-04-27 18:42:30 -07001437 log.info("Device:EdgePort {}:{} is disabled in vlan: {}", deviceId,
Charles Chan59cc16d2017-02-02 16:20:42 -08001438 port.number(), vlanId);
Saurav Das1a129a02016-11-18 15:21:57 -08001439 }
1440
Saurav Das9a554292018-04-27 18:42:30 -07001441 DefaultGroupHandler groupHandler = groupHandlerMap.get(deviceId);
sanghob35a6192015-04-01 13:05:26 -07001442 if (groupHandler != null) {
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001443 groupHandler.processEdgePort(port.number(), vlanId, popVlan, portUp);
Saurav Das1a129a02016-11-18 15:21:57 -08001444 } else {
1445 log.warn("Group handler not found for dev:{}. Not handling edge port"
Saurav Das9a554292018-04-27 18:42:30 -07001446 + " {} event for port:{}", deviceId,
Saurav Das1a129a02016-11-18 15:21:57 -08001447 (portUp) ? "UP" : "DOWN", port.number());
sanghob35a6192015-04-01 13:05:26 -07001448 }
1449 }
sangho1e575652015-05-14 00:39:53 -07001450
Charles Chan27fe1a52017-10-20 16:06:55 -07001451 private void createOrUpdateDeviceConfiguration() {
1452 if (deviceConfiguration == null) {
Saurav Dase7f51012018-02-09 17:26:45 -08001453 log.info("Creating new DeviceConfiguration");
Charles Chan27fe1a52017-10-20 16:06:55 -07001454 deviceConfiguration = new DeviceConfiguration(this);
1455 } else {
Saurav Dase7f51012018-02-09 17:26:45 -08001456 log.info("Updating DeviceConfiguration");
Charles Chan27fe1a52017-10-20 16:06:55 -07001457 deviceConfiguration.updateConfig();
1458 }
1459 }
1460
Charles Chan50bb6ef2018-04-18 18:41:05 -07001461 private void createOrUpdateDefaultRoutingHandler() {
1462 if (defaultRoutingHandler == null) {
1463 log.info("Creating new DefaultRoutingHandler");
1464 defaultRoutingHandler = new DefaultRoutingHandler(this);
1465 } else {
1466 log.info("Updating DefaultRoutingHandler");
1467 defaultRoutingHandler.update(this);
1468 }
1469 }
1470
Pier Ventre10bd8d12016-11-26 21:05:22 -08001471 /**
1472 * Registers the given connect point with the NRS, this is necessary
1473 * to receive the NDP and ARP packets from the NRS.
1474 *
1475 * @param portToRegister connect point to register
1476 */
1477 public void registerConnectPoint(ConnectPoint portToRegister) {
Charles Chan0aa674e2017-02-23 15:44:08 -08001478 neighbourResolutionService.registerNeighbourHandler(
Pier Ventre10bd8d12016-11-26 21:05:22 -08001479 portToRegister,
1480 neighbourHandler,
1481 appId
1482 );
1483 }
1484
Charles Chand6832882015-10-05 17:50:33 -07001485 private class InternalConfigListener implements NetworkConfigListener {
Saurav Das7bcbe702017-06-13 15:35:54 -07001486 private static final long PROGRAM_DELAY = 2;
Charles Chan2c15aca2016-11-09 20:51:44 -08001487 SegmentRoutingManager srManager;
Charles Chan4636be02015-10-07 14:21:45 -07001488
Charles Chane849c192016-01-11 18:28:54 -08001489 /**
1490 * Constructs the internal network config listener.
1491 *
Charles Chan2c15aca2016-11-09 20:51:44 -08001492 * @param srManager segment routing manager
Charles Chane849c192016-01-11 18:28:54 -08001493 */
Charles Chan65238242017-06-22 18:03:14 -07001494 InternalConfigListener(SegmentRoutingManager srManager) {
Charles Chan2c15aca2016-11-09 20:51:44 -08001495 this.srManager = srManager;
Charles Chan4636be02015-10-07 14:21:45 -07001496 }
1497
Charles Chane849c192016-01-11 18:28:54 -08001498 /**
1499 * Reads network config and initializes related data structure accordingly.
1500 */
Charles Chan47933752017-11-30 15:37:50 -08001501 void configureNetwork() {
Saurav Dase7f51012018-02-09 17:26:45 -08001502 log.info("Configuring network ...");
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001503
1504 // Setting handling of network configuration events completable future
1505 // The completable future is needed because of the async behaviour of the configureNetwork,
1506 // listener registration and event arrival
1507 // Enables us to buffer the events and execute them when the configure network is done.
1508 networkConfigCompletion = new CompletableFuture<>();
1509
1510 // add a small delay to absorb multiple network config added notifications
1511 if (!programmingScheduled.get()) {
1512 log.info("Buffering config calls for {} secs", PROGRAM_DELAY);
1513 programmingScheduled.set(true);
1514 mainEventExecutor.schedule(new ConfigChange(), PROGRAM_DELAY, TimeUnit.SECONDS);
1515 }
1516
Charles Chan27fe1a52017-10-20 16:06:55 -07001517 createOrUpdateDeviceConfiguration();
Charles Chan4636be02015-10-07 14:21:45 -07001518
Charles Chan2c15aca2016-11-09 20:51:44 -08001519 arpHandler = new ArpHandler(srManager);
1520 icmpHandler = new IcmpHandler(srManager);
1521 ipHandler = new IpHandler(srManager);
1522 routingRulePopulator = new RoutingRulePopulator(srManager);
Charles Chan50bb6ef2018-04-18 18:41:05 -07001523 createOrUpdateDefaultRoutingHandler();
Charles Chan4636be02015-10-07 14:21:45 -07001524
1525 tunnelHandler = new TunnelHandler(linkService, deviceConfiguration,
1526 groupHandlerMap, tunnelStore);
1527 policyHandler = new PolicyHandler(appId, deviceConfiguration,
1528 flowObjectiveService,
1529 tunnelHandler, policyStore);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001530 networkConfigCompletion.complete(true);
1531
Charles Chan2199c302016-04-23 17:36:10 -07001532 mcastHandler.init();
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001533
Charles Chan4636be02015-10-07 14:21:45 -07001534 }
1535
Charles Chand6832882015-10-05 17:50:33 -07001536 @Override
1537 public void event(NetworkConfigEvent event) {
Ray Milkey749996b2018-05-11 09:59:19 -07001538 if (mainEventExecutor == null) {
1539 return;
1540 }
Charles Chan7a888e82018-03-21 16:57:47 -07001541 checkState(appCfgHandler != null, "NetworkConfigEventHandler is not initialized");
1542 checkState(xConnectHandler != null, "XConnectHandler is not initialized");
1543 switch (event.type()) {
1544 case CONFIG_ADDED:
1545 case CONFIG_UPDATED:
1546 case CONFIG_REMOVED:
1547 log.trace("Schedule Network Config event {}", event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001548 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1549 mainEventExecutor.execute(new InternalEventHandler(event));
1550 } else {
Charles Chan10b2fee2018-04-21 00:44:29 -07001551 queuedEvents.add(event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001552 }
Charles Chan7a888e82018-03-21 16:57:47 -07001553 break;
1554 default:
1555 break;
Charles Chand6832882015-10-05 17:50:33 -07001556 }
1557 }
Saurav Das7bcbe702017-06-13 15:35:54 -07001558
Charles Chan50443e82018-01-03 16:26:32 -08001559 @Override
1560 public boolean isRelevant(NetworkConfigEvent event) {
Saurav Dase7f51012018-02-09 17:26:45 -08001561 if (event.type() == CONFIG_REGISTERED ||
1562 event.type() == CONFIG_UNREGISTERED) {
1563 log.debug("Ignore event {} due to type mismatch", event);
1564 return false;
Charles Chan50443e82018-01-03 16:26:32 -08001565 }
Saurav Dase7f51012018-02-09 17:26:45 -08001566
1567 if (!event.configClass().equals(SegmentRoutingDeviceConfig.class) &&
1568 !event.configClass().equals(SegmentRoutingAppConfig.class) &&
1569 !event.configClass().equals(InterfaceConfig.class) &&
Andreas Pantelopouloscd339592018-02-23 14:18:00 -08001570 !event.configClass().equals(XConnectConfig.class)) {
Saurav Dase7f51012018-02-09 17:26:45 -08001571 log.debug("Ignore event {} due to class mismatch", event);
1572 return false;
1573 }
1574
1575 return true;
Charles Chan50443e82018-01-03 16:26:32 -08001576 }
1577
Saurav Das7bcbe702017-06-13 15:35:54 -07001578 private final class ConfigChange implements Runnable {
1579 @Override
1580 public void run() {
1581 programmingScheduled.set(false);
Saurav Dase7f51012018-02-09 17:26:45 -08001582 log.info("Reacting to config changes after buffer delay");
Saurav Das7bcbe702017-06-13 15:35:54 -07001583 for (Device device : deviceService.getDevices()) {
1584 processDeviceAdded(device);
1585 }
1586 defaultRoutingHandler.startPopulationProcess();
1587 }
1588 }
Charles Chand6832882015-10-05 17:50:33 -07001589 }
Charles Chan68aa62d2015-11-09 16:37:23 -08001590
Charles Chan7a888e82018-03-21 16:57:47 -07001591 private class InternalLinkListener implements LinkListener {
1592 @Override
1593 public void event(LinkEvent event) {
Ray Milkey749996b2018-05-11 09:59:19 -07001594 if (mainEventExecutor == null) {
1595 return;
1596 }
Charles Chan7a888e82018-03-21 16:57:47 -07001597 if (event.type() == LinkEvent.Type.LINK_ADDED ||
1598 event.type() == LinkEvent.Type.LINK_UPDATED ||
1599 event.type() == LinkEvent.Type.LINK_REMOVED) {
1600 log.trace("Schedule Link event {}", event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001601 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1602 mainEventExecutor.execute(new InternalEventHandler(event));
1603 } else {
Charles Chan10b2fee2018-04-21 00:44:29 -07001604 queuedEvents.add(event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001605 }
Charles Chan7a888e82018-03-21 16:57:47 -07001606 }
1607 }
1608 }
1609
1610 private class InternalDeviceListener implements DeviceListener {
1611 @Override
1612 public void event(DeviceEvent event) {
Ray Milkey749996b2018-05-11 09:59:19 -07001613 if (mainEventExecutor == null) {
1614 return;
1615 }
Charles Chan7a888e82018-03-21 16:57:47 -07001616 switch (event.type()) {
1617 case DEVICE_ADDED:
1618 case PORT_UPDATED:
1619 case PORT_ADDED:
1620 case DEVICE_UPDATED:
1621 case DEVICE_AVAILABILITY_CHANGED:
1622 log.trace("Schedule Device event {}", event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001623 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1624 mainEventExecutor.execute(new InternalEventHandler(event));
1625 } else {
Charles Chan10b2fee2018-04-21 00:44:29 -07001626 queuedEvents.add(event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001627 }
Charles Chan7a888e82018-03-21 16:57:47 -07001628 break;
1629 default:
1630 }
1631 }
1632 }
1633
1634 private class InternalTopologyListener implements TopologyListener {
1635 @Override
1636 public void event(TopologyEvent event) {
Ray Milkey749996b2018-05-11 09:59:19 -07001637 if (mainEventExecutor == null) {
1638 return;
1639 }
Charles Chan7a888e82018-03-21 16:57:47 -07001640 switch (event.type()) {
1641 case TOPOLOGY_CHANGED:
1642 log.trace("Schedule Topology event {}", event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001643 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1644 mainEventExecutor.execute(new InternalEventHandler(event));
1645 } else {
Charles Chan10b2fee2018-04-21 00:44:29 -07001646 queuedEvents.add(event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001647 }
Charles Chan7a888e82018-03-21 16:57:47 -07001648 break;
1649 default:
1650 }
1651 }
1652 }
1653
Charles Chan68aa62d2015-11-09 16:37:23 -08001654 private class InternalHostListener implements HostListener {
Charles Chan68aa62d2015-11-09 16:37:23 -08001655 @Override
1656 public void event(HostEvent event) {
Ray Milkey749996b2018-05-11 09:59:19 -07001657 if (hostEventExecutor == null) {
1658 return;
1659 }
Charles Chan68aa62d2015-11-09 16:37:23 -08001660 switch (event.type()) {
1661 case HOST_ADDED:
Charles Chan68aa62d2015-11-09 16:37:23 -08001662 case HOST_MOVED:
Charles Chan68aa62d2015-11-09 16:37:23 -08001663 case HOST_REMOVED:
Charles Chan68aa62d2015-11-09 16:37:23 -08001664 case HOST_UPDATED:
Charles Chan7a888e82018-03-21 16:57:47 -07001665 log.trace("Schedule Host event {}", event);
Charles Chan4e49df82018-04-07 11:35:08 -07001666 hostEventExecutor.execute(new InternalEventHandler(event));
Charles Chan68aa62d2015-11-09 16:37:23 -08001667 break;
1668 default:
1669 log.warn("Unsupported host event type: {}", event.type());
1670 break;
1671 }
1672 }
1673 }
1674
Charles Chand55e84d2016-03-30 17:54:24 -07001675 private class InternalMcastListener implements McastListener {
1676 @Override
1677 public void event(McastEvent event) {
Ray Milkey749996b2018-05-11 09:59:19 -07001678 if (mcastEventExecutor == null) {
1679 return;
1680 }
Charles Chand55e84d2016-03-30 17:54:24 -07001681 switch (event.type()) {
Pier3ee24552018-03-14 16:47:32 -07001682 case SOURCES_ADDED:
1683 case SOURCES_REMOVED:
1684 case SINKS_ADDED:
1685 case SINKS_REMOVED:
Charles Chand55e84d2016-03-30 17:54:24 -07001686 case ROUTE_REMOVED:
Pier96f63cb2018-04-17 16:29:56 +02001687 case ROUTE_ADDED:
Charles Chan7a888e82018-03-21 16:57:47 -07001688 log.trace("Schedule Mcast event {}", event);
Charles Chan4e49df82018-04-07 11:35:08 -07001689 mcastEventExecutor.execute(new InternalEventHandler(event));
Pier Luigi9930da52018-02-02 16:19:11 +01001690 break;
Charles Chand55e84d2016-03-30 17:54:24 -07001691 default:
Charles Chan7a888e82018-03-21 16:57:47 -07001692 log.warn("Unsupported mcast event type: {}", event.type());
Charles Chand55e84d2016-03-30 17:54:24 -07001693 break;
1694 }
1695 }
1696 }
Charles Chan35fd1a72016-06-13 18:54:31 -07001697
Charles Chan03a73e02016-10-24 14:52:01 -07001698 private class InternalRouteEventListener implements RouteListener {
1699 @Override
1700 public void event(RouteEvent event) {
Ray Milkey749996b2018-05-11 09:59:19 -07001701 if (routeEventExecutor == null) {
1702 return;
1703 }
Charles Chan03a73e02016-10-24 14:52:01 -07001704 switch (event.type()) {
1705 case ROUTE_ADDED:
Charles Chan03a73e02016-10-24 14:52:01 -07001706 case ROUTE_UPDATED:
Charles Chan03a73e02016-10-24 14:52:01 -07001707 case ROUTE_REMOVED:
Charles Chan2fde6d42017-08-23 14:46:43 -07001708 case ALTERNATIVE_ROUTES_CHANGED:
Charles Chan7a888e82018-03-21 16:57:47 -07001709 log.trace("Schedule Route event {}", event);
Charles Chan4e49df82018-04-07 11:35:08 -07001710 routeEventExecutor.execute(new InternalEventHandler(event));
Charles Chan2fde6d42017-08-23 14:46:43 -07001711 break;
Charles Chan03a73e02016-10-24 14:52:01 -07001712 default:
Charles Chan7a888e82018-03-21 16:57:47 -07001713 log.warn("Unsupported route event type: {}", event.type());
Charles Chan03a73e02016-10-24 14:52:01 -07001714 break;
1715 }
1716 }
1717 }
Saurav Dasc88d4662017-05-15 15:34:25 -07001718
Charles Chan50bb6ef2018-04-18 18:41:05 -07001719 private class InternalMastershipListener implements MastershipListener {
1720 @Override
1721 public void event(MastershipEvent event) {
Ray Milkey749996b2018-05-11 09:59:19 -07001722 if (mainEventExecutor == null) {
1723 return;
1724 }
Charles Chan50bb6ef2018-04-18 18:41:05 -07001725 switch (event.type()) {
Saurav Das201762d2018-04-21 17:19:48 -07001726 case MASTER_CHANGED:
1727 log.debug("Mastership event: {}/{}", event.subject(),
1728 event.roleInfo());
1729 mainEventExecutor.execute(new InternalEventHandler(event));
1730 break;
1731 case BACKUPS_CHANGED:
1732 case SUSPENDED:
1733 default:
1734 log.debug("Mastership event type {} not handled", event.type());
1735 break;
Charles Chan50bb6ef2018-04-18 18:41:05 -07001736 }
1737 }
1738 }
1739
Saurav Das201762d2018-04-21 17:19:48 -07001740 class InternalClusterListener implements ClusterEventListener {
1741 private Instant lastClusterEvent = Instant.EPOCH;
1742
1743 long timeSinceLastClusterEvent() {
1744 return Instant.now().toEpochMilli() - lastClusterEvent.toEpochMilli();
1745 }
1746
1747 @Override
1748 public void event(ClusterEvent event) {
1749 switch (event.type()) {
1750 case INSTANCE_ACTIVATED:
1751 case INSTANCE_ADDED:
1752 case INSTANCE_READY:
1753 log.debug("Cluster event {} ignored", event.type());
1754 break;
1755 case INSTANCE_DEACTIVATED:
1756 case INSTANCE_REMOVED:
1757 log.info("** Cluster event {}", event.type());
1758 lastClusterEvent = Instant.now();
1759 break;
1760 default:
1761 break;
1762 }
1763
1764 }
1765
1766 }
1767
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001768 private void updateInterface(InterfaceConfig conf, InterfaceConfig prevConf) {
1769 try {
1770 Set<Interface> intfs = conf.getInterfaces();
1771 Set<Interface> prevIntfs = prevConf.getInterfaces();
1772
1773 // Now we only handle one interface config at each port.
1774 if (intfs.size() != 1 || prevIntfs.size() != 1) {
1775 log.warn("Interface update aborted - one at a time is allowed, " +
1776 "but {} / {}(prev) received.", intfs.size(), prevIntfs.size());
1777 return;
1778 }
1779
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001780 //The system is in an incoherent state, abort
1781 if (defaultRoutingHandler == null) {
1782 log.warn("Interface update aborted, defaultRoutingHandler is null");
1783 return;
1784 }
1785
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001786 Interface intf = intfs.stream().findFirst().get();
1787 Interface prevIntf = prevIntfs.stream().findFirst().get();
1788
1789 DeviceId deviceId = intf.connectPoint().deviceId();
1790 PortNumber portNum = intf.connectPoint().port();
1791
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001792 removeSubnetConfig(prevIntf.connectPoint(),
1793 Sets.difference(new HashSet<>(prevIntf.ipAddressesList()),
1794 new HashSet<>(intf.ipAddressesList())));
1795
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001796 if (!prevIntf.vlanNative().equals(VlanId.NONE)
1797 && !prevIntf.vlanNative().equals(intf.vlanUntagged())
1798 && !prevIntf.vlanNative().equals(intf.vlanNative())) {
1799 if (intf.vlanTagged().contains(prevIntf.vlanNative())) {
1800 // Update filtering objective and L2IG group bucket
1801 updatePortVlanTreatment(deviceId, portNum, prevIntf.vlanNative(), false);
1802 } else {
1803 // RemoveVlanNative
1804 updateVlanConfigInternal(deviceId, portNum, prevIntf.vlanNative(), true, false);
1805 }
1806 }
1807
1808 if (!prevIntf.vlanUntagged().equals(VlanId.NONE)
1809 && !prevIntf.vlanUntagged().equals(intf.vlanUntagged())
1810 && !prevIntf.vlanUntagged().equals(intf.vlanNative())) {
1811 if (intf.vlanTagged().contains(prevIntf.vlanUntagged())) {
1812 // Update filtering objective and L2IG group bucket
1813 updatePortVlanTreatment(deviceId, portNum, prevIntf.vlanUntagged(), false);
1814 } else {
1815 // RemoveVlanUntagged
1816 updateVlanConfigInternal(deviceId, portNum, prevIntf.vlanUntagged(), true, false);
1817 }
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001818 }
1819
1820 if (!prevIntf.vlanTagged().isEmpty() && !intf.vlanTagged().equals(prevIntf.vlanTagged())) {
1821 // RemoveVlanTagged
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001822 Sets.difference(prevIntf.vlanTagged(), intf.vlanTagged()).stream()
1823 .filter(i -> !intf.vlanUntagged().equals(i))
1824 .filter(i -> !intf.vlanNative().equals(i))
1825 .forEach(vlanId -> updateVlanConfigInternal(
1826 deviceId, portNum, vlanId, false, false));
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001827 }
1828
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001829 if (!intf.vlanNative().equals(VlanId.NONE)
1830 && !prevIntf.vlanNative().equals(intf.vlanNative())
1831 && !prevIntf.vlanUntagged().equals(intf.vlanNative())) {
1832 if (prevIntf.vlanTagged().contains(intf.vlanNative())) {
1833 // Update filtering objective and L2IG group bucket
1834 updatePortVlanTreatment(deviceId, portNum, intf.vlanNative(), true);
1835 } else {
1836 // AddVlanNative
1837 updateVlanConfigInternal(deviceId, portNum, intf.vlanNative(), true, true);
1838 }
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001839 }
1840
1841 if (!intf.vlanTagged().isEmpty() && !intf.vlanTagged().equals(prevIntf.vlanTagged())) {
1842 // AddVlanTagged
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001843 Sets.difference(intf.vlanTagged(), prevIntf.vlanTagged()).stream()
1844 .filter(i -> !prevIntf.vlanUntagged().equals(i))
1845 .filter(i -> !prevIntf.vlanNative().equals(i))
1846 .forEach(vlanId -> updateVlanConfigInternal(
1847 deviceId, portNum, vlanId, false, true)
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001848 );
1849 }
1850
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001851 if (!intf.vlanUntagged().equals(VlanId.NONE)
1852 && !prevIntf.vlanUntagged().equals(intf.vlanUntagged())
1853 && !prevIntf.vlanNative().equals(intf.vlanUntagged())) {
1854 if (prevIntf.vlanTagged().contains(intf.vlanUntagged())) {
1855 // Update filtering objective and L2IG group bucket
1856 updatePortVlanTreatment(deviceId, portNum, intf.vlanUntagged(), true);
1857 } else {
1858 // AddVlanUntagged
1859 updateVlanConfigInternal(deviceId, portNum, intf.vlanUntagged(), true, true);
1860 }
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001861 }
1862 addSubnetConfig(prevIntf.connectPoint(),
1863 Sets.difference(new HashSet<>(intf.ipAddressesList()),
1864 new HashSet<>(prevIntf.ipAddressesList())));
1865 } catch (ConfigException e) {
1866 log.error("Error in configuration");
1867 }
1868 }
1869
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001870 private void updatePortVlanTreatment(DeviceId deviceId, PortNumber portNum,
1871 VlanId vlanId, boolean pushVlan) {
1872 DefaultGroupHandler grpHandler = getGroupHandler(deviceId);
1873 if (grpHandler == null) {
1874 log.warn("Failed to retrieve group handler for device {}", deviceId);
1875 return;
1876 }
1877
1878 // Update filtering objective for a single port
1879 routingRulePopulator.updateSinglePortFilters(deviceId, portNum, !pushVlan, vlanId, false);
1880 routingRulePopulator.updateSinglePortFilters(deviceId, portNum, pushVlan, vlanId, true);
1881
1882 if (getVlanNextObjectiveId(deviceId, vlanId) != -1) {
1883 // Update L2IG bucket of the port
1884 grpHandler.updateL2InterfaceGroupBucket(portNum, vlanId, pushVlan);
1885 } else {
1886 log.warn("Failed to retrieve next objective for vlan {} in device {}:{}", vlanId, deviceId, portNum);
1887 }
1888 }
1889
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001890 private void updateVlanConfigInternal(DeviceId deviceId, PortNumber portNum,
1891 VlanId vlanId, boolean pushVlan, boolean install) {
1892 DefaultGroupHandler grpHandler = getGroupHandler(deviceId);
1893 if (grpHandler == null) {
1894 log.warn("Failed to retrieve group handler for device {}", deviceId);
1895 return;
1896 }
1897
1898 // Update filtering objective for a single port
1899 routingRulePopulator.updateSinglePortFilters(deviceId, portNum, pushVlan, vlanId, install);
1900
1901 // Update filtering objective for multicast ingress port
1902 mcastHandler.updateFilterToDevice(deviceId, portNum, vlanId, install);
1903
1904 int nextId = getVlanNextObjectiveId(deviceId, vlanId);
1905
1906 if (nextId != -1 && !install) {
1907 // Update next objective for a single port as an output port
1908 // Remove a single port from L2FG
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001909 grpHandler.updateGroupFromVlanConfiguration(vlanId, portNum, nextId, install);
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001910 // Remove L2 Bridging rule and L3 Unicast rule to the host
Charles Chan94549652018-04-29 18:11:37 -07001911 hostEventExecutor.execute(() -> hostHandler.processIntfVlanUpdatedEvent(deviceId, portNum,
1912 vlanId, pushVlan, install));
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001913 // Remove broadcast forwarding rule and corresponding L2FG for VLAN
1914 // only if there is no port configured on that VLAN ID
1915 if (!getVlanPortMap(deviceId).containsKey(vlanId)) {
1916 // Remove broadcast forwarding rule for the VLAN
1917 routingRulePopulator.updateSubnetBroadcastRule(deviceId, vlanId, install);
1918 // Remove L2FG for VLAN
1919 grpHandler.removeBcastGroupFromVlan(deviceId, portNum, vlanId, pushVlan);
1920 } else {
1921 // Remove L2IG of the port
1922 grpHandler.removePortNextObjective(deviceId, portNum, vlanId, pushVlan);
1923 }
1924 } else if (install) {
1925 if (nextId != -1) {
1926 // Add a single port to L2FG
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001927 grpHandler.updateGroupFromVlanConfiguration(vlanId, portNum, nextId, install);
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001928 } else {
1929 // Create L2FG for VLAN
1930 grpHandler.createBcastGroupFromVlan(vlanId, Collections.singleton(portNum));
1931 routingRulePopulator.updateSubnetBroadcastRule(deviceId, vlanId, install);
1932 }
Charles Chan94549652018-04-29 18:11:37 -07001933 hostEventExecutor.execute(() -> hostHandler.processIntfVlanUpdatedEvent(deviceId, portNum,
1934 vlanId, pushVlan, install));
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001935 } else {
1936 log.warn("Failed to retrieve next objective for vlan {} in device {}:{}", vlanId, deviceId, portNum);
1937 }
1938 }
1939
1940 private void removeSubnetConfig(ConnectPoint cp, Set<InterfaceIpAddress> ipAddressSet) {
1941 Set<IpPrefix> ipPrefixSet = ipAddressSet.stream().
1942 map(InterfaceIpAddress::subnetAddress).collect(Collectors.toSet());
1943
1944 Set<InterfaceIpAddress> deviceIntfIpAddrs = interfaceService.getInterfaces().stream()
1945 .filter(intf -> intf.connectPoint().deviceId().equals(cp.deviceId()))
1946 .filter(intf -> !intf.connectPoint().equals(cp))
1947 .flatMap(intf -> intf.ipAddressesList().stream())
1948 .collect(Collectors.toSet());
1949 // 1. Partial subnet population
1950 // Remove routing rules for removed subnet from previous configuration,
1951 // which does not also exist in other interfaces in the same device
1952 Set<IpPrefix> deviceIpPrefixSet = deviceIntfIpAddrs.stream()
1953 .map(InterfaceIpAddress::subnetAddress)
1954 .collect(Collectors.toSet());
1955
1956 defaultRoutingHandler.revokeSubnet(
1957 ipPrefixSet.stream()
1958 .filter(ipPrefix -> !deviceIpPrefixSet.contains(ipPrefix))
1959 .collect(Collectors.toSet()));
1960
1961 // 2. Interface IP punts
1962 // Remove IP punts for old Intf address
1963 Set<IpAddress> deviceIpAddrs = deviceIntfIpAddrs.stream()
1964 .map(InterfaceIpAddress::ipAddress)
1965 .collect(Collectors.toSet());
1966 ipAddressSet.stream()
1967 .map(InterfaceIpAddress::ipAddress)
1968 .filter(interfaceIpAddress -> !deviceIpAddrs.contains(interfaceIpAddress))
1969 .forEach(interfaceIpAddress ->
1970 routingRulePopulator.revokeSingleIpPunts(
1971 cp.deviceId(), interfaceIpAddress));
1972
1973 // 3. Host unicast routing rule
1974 // Remove unicast routing rule
Charles Chan94549652018-04-29 18:11:37 -07001975 hostEventExecutor.execute(() -> hostHandler.processIntfIpUpdatedEvent(cp, ipPrefixSet, false));
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001976 }
1977
1978 private void addSubnetConfig(ConnectPoint cp, Set<InterfaceIpAddress> ipAddressSet) {
1979 Set<IpPrefix> ipPrefixSet = ipAddressSet.stream().
1980 map(InterfaceIpAddress::subnetAddress).collect(Collectors.toSet());
1981
1982 Set<InterfaceIpAddress> deviceIntfIpAddrs = interfaceService.getInterfaces().stream()
1983 .filter(intf -> intf.connectPoint().deviceId().equals(cp.deviceId()))
1984 .filter(intf -> !intf.connectPoint().equals(cp))
1985 .flatMap(intf -> intf.ipAddressesList().stream())
1986 .collect(Collectors.toSet());
1987 // 1. Partial subnet population
1988 // Add routing rules for newly added subnet, which does not also exist in
1989 // other interfaces in the same device
1990 Set<IpPrefix> deviceIpPrefixSet = deviceIntfIpAddrs.stream()
1991 .map(InterfaceIpAddress::subnetAddress)
1992 .collect(Collectors.toSet());
1993
1994 defaultRoutingHandler.populateSubnet(
1995 Collections.singleton(cp),
1996 ipPrefixSet.stream()
1997 .filter(ipPrefix -> !deviceIpPrefixSet.contains(ipPrefix))
1998 .collect(Collectors.toSet()));
1999
2000 // 2. Interface IP punts
2001 // Add IP punts for new Intf address
2002 Set<IpAddress> deviceIpAddrs = deviceIntfIpAddrs.stream()
2003 .map(InterfaceIpAddress::ipAddress)
2004 .collect(Collectors.toSet());
2005 ipAddressSet.stream()
2006 .map(InterfaceIpAddress::ipAddress)
2007 .filter(interfaceIpAddress -> !deviceIpAddrs.contains(interfaceIpAddress))
2008 .forEach(interfaceIpAddress ->
2009 routingRulePopulator.populateSingleIpPunts(
2010 cp.deviceId(), interfaceIpAddress));
2011
2012 // 3. Host unicast routing rule
2013 // Add unicast routing rule
Charles Chan94549652018-04-29 18:11:37 -07002014 hostEventExecutor.execute(() -> hostHandler.processIntfIpUpdatedEvent(cp, ipPrefixSet, true));
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07002015 }
sanghob35a6192015-04-01 13:05:26 -07002016}