blob: 156240a884684bfd85448d3325f81fb6b8e96219 [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 Chan47933752017-11-30 15:37:50 -080080import org.onosproject.net.host.HostLocationProbingService;
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;
Jonathan Hart8ca2bc02017-11-30 18:23:42 -0800149import java.util.concurrent.Executors;
150import java.util.concurrent.ScheduledExecutorService;
Jonathan Hart8ca2bc02017-11-30 18:23:42 -0800151import java.util.concurrent.TimeUnit;
152import java.util.concurrent.atomic.AtomicBoolean;
153import java.util.stream.Collectors;
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700154import java.util.stream.IntStream;
sanghob35a6192015-04-01 13:05:26 -0700155
Charles Chan3e783d02016-02-26 22:19:52 -0800156import static com.google.common.base.Preconditions.checkState;
Pier Ventree0ae7a32016-11-23 09:57:42 -0800157import static org.onlab.packet.Ethernet.TYPE_ARP;
Yuta HIGUCHI1624df12016-07-21 16:54:33 -0700158import static org.onlab.util.Tools.groupedThreads;
Saurav Dase7f51012018-02-09 17:26:45 -0800159import static org.onosproject.net.config.NetworkConfigEvent.Type.CONFIG_REGISTERED;
160import static org.onosproject.net.config.NetworkConfigEvent.Type.CONFIG_UNREGISTERED;
Charles Chan3e783d02016-02-26 22:19:52 -0800161
Charles Chane849c192016-01-11 18:28:54 -0800162/**
163 * Segment routing manager.
164 */
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700165@Service
166@Component(immediate = true)
sangho1e575652015-05-14 00:39:53 -0700167public class SegmentRoutingManager implements SegmentRoutingService {
sanghob35a6192015-04-01 13:05:26 -0700168
Charles Chan2c15aca2016-11-09 20:51:44 -0800169 private static Logger log = LoggerFactory.getLogger(SegmentRoutingManager.class);
Charles Chan2fde6d42017-08-23 14:46:43 -0700170 private static final String NOT_MASTER = "Current instance is not the master of {}. Ignore.";
sanghob35a6192015-04-01 13:05:26 -0700171
172 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan03a73e02016-10-24 14:52:01 -0700173 private ComponentConfigService compCfgService;
sanghob35a6192015-04-01 13:05:26 -0700174
175 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Ventre10bd8d12016-11-26 21:05:22 -0800176 private NeighbourResolutionService neighbourResolutionService;
177
178 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Luigi96fe0772018-02-28 12:10:50 +0100179 public CoreService coreService;
sanghob35a6192015-04-01 13:05:26 -0700180
181 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan03a73e02016-10-24 14:52:01 -0700182 PacketService packetService;
sanghob35a6192015-04-01 13:05:26 -0700183
184 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan03a73e02016-10-24 14:52:01 -0700185 HostService hostService;
sanghob35a6192015-04-01 13:05:26 -0700186
187 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan47933752017-11-30 15:37:50 -0800188 HostLocationProbingService probingService;
189
190 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Luigi96fe0772018-02-28 12:10:50 +0100191 public DeviceService deviceService;
sanghob35a6192015-04-01 13:05:26 -0700192
193 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Saurav Das45f48152018-01-18 12:07:33 -0800194 DeviceAdminService deviceAdminService;
195
196 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Ventre42287df2016-11-09 14:17:26 -0800197 public FlowObjectiveService flowObjectiveService;
sanghob35a6192015-04-01 13:05:26 -0700198
199 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Luigi96fe0772018-02-28 12:10:50 +0100200 public LinkService linkService;
sangho1e575652015-05-14 00:39:53 -0700201
Charles Chan5270ed02016-01-30 23:22:37 -0800202 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Ventre42287df2016-11-09 14:17:26 -0800203 public MastershipService mastershipService;
Charles Chan03a73e02016-10-24 14:52:01 -0700204
205 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Ventre42287df2016-11-09 14:17:26 -0800206 public StorageService storageService;
Charles Chan03a73e02016-10-24 14:52:01 -0700207
208 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier Luigi96fe0772018-02-28 12:10:50 +0100209 public MulticastRouteService multicastRouteService;
Charles Chan03a73e02016-10-24 14:52:01 -0700210
211 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chanf237e1b2018-01-09 13:45:07 -0800212 public TopologyService topologyService;
Charles Chan03a73e02016-10-24 14:52:01 -0700213
214 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan03a73e02016-10-24 14:52:01 -0700215 RouteService routeService;
Charles Chan5270ed02016-01-30 23:22:37 -0800216
217 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan2c15aca2016-11-09 20:51:44 -0800218 public NetworkConfigRegistry cfgService;
Charles Chan5270ed02016-01-30 23:22:37 -0800219
Saurav Das80980c72016-03-23 11:22:49 -0700220 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan2c15aca2016-11-09 20:51:44 -0800221 public InterfaceService interfaceService;
222
Pier Luigieba73a02018-01-16 10:47:50 +0100223 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
224 public ClusterService clusterService;
225
226 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Pier96f63cb2018-04-17 16:29:56 +0200227 public WorkPartitionService workPartitionService;
Pier Luigieba73a02018-01-16 10:47:50 +0100228
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700229 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
230 public LeadershipService leadershipService;
231
Charles Chan47933752017-11-30 15:37:50 -0800232 @Property(name = "activeProbing", boolValue = true,
233 label = "Enable active probing to discover dual-homed hosts.")
234 boolean activeProbing = true;
235
Saurav Das9a554292018-04-27 18:42:30 -0700236 @Property(name = "singleHomedDown", boolValue = false,
237 label = "Enable administratively taking down single-homed hosts "
238 + "when all uplinks are gone")
239 boolean singleHomedDown = false;
240
Charles Chan03a73e02016-10-24 14:52:01 -0700241 ArpHandler arpHandler = null;
242 IcmpHandler icmpHandler = null;
243 IpHandler ipHandler = null;
244 RoutingRulePopulator routingRulePopulator = null;
Ray Milkeye4afdb52017-04-05 09:42:04 -0700245 ApplicationId appId;
246 DeviceConfiguration deviceConfiguration = null;
sanghob35a6192015-04-01 13:05:26 -0700247
Charles Chan03a73e02016-10-24 14:52:01 -0700248 DefaultRoutingHandler defaultRoutingHandler = null;
sangho1e575652015-05-14 00:39:53 -0700249 private TunnelHandler tunnelHandler = null;
250 private PolicyHandler policyHandler = null;
Charles Chanb8e10c82015-10-14 11:24:40 -0700251 private InternalPacketProcessor processor = null;
252 private InternalLinkListener linkListener = null;
253 private InternalDeviceListener deviceListener = null;
Charles Chanfc5c7802016-05-17 13:13:55 -0700254 private AppConfigHandler appCfgHandler = null;
Pier Luigi96fe0772018-02-28 12:10:50 +0100255 public XConnectHandler xConnectHandler = null;
Saurav Das45f48152018-01-18 12:07:33 -0800256 McastHandler mcastHandler = null;
257 HostHandler hostHandler = null;
Pier Ventre10bd8d12016-11-26 21:05:22 -0800258 private RouteHandler routeHandler = null;
Saurav Das45f48152018-01-18 12:07:33 -0800259 LinkHandler linkHandler = null;
Pier Ventre735b8c82016-12-02 08:16:05 -0800260 private SegmentRoutingNeighbourDispatcher neighbourHandler = null;
Andreas Pantelopouloscd339592018-02-23 14:18:00 -0800261 private DefaultL2TunnelHandler l2TunnelHandler = null;
Pier Luigi83f919b2018-02-15 16:33:08 +0100262 private TopologyHandler topologyHandler = null;
Charles Chan5270ed02016-01-30 23:22:37 -0800263 private final InternalHostListener hostListener = new InternalHostListener();
Charles Chand55e84d2016-03-30 17:54:24 -0700264 private final InternalConfigListener cfgListener = new InternalConfigListener(this);
265 private final InternalMcastListener mcastListener = new InternalMcastListener();
Charles Chan03a73e02016-10-24 14:52:01 -0700266 private final InternalRouteEventListener routeListener = new InternalRouteEventListener();
Pier Luigi83f919b2018-02-15 16:33:08 +0100267 private final InternalTopologyListener topologyListener = new InternalTopologyListener();
Charles Chan50bb6ef2018-04-18 18:41:05 -0700268 private final InternalMastershipListener mastershipListener = new InternalMastershipListener();
Saurav Das201762d2018-04-21 17:19:48 -0700269 final InternalClusterListener clusterListener = new InternalClusterListener();
Andrea Campanella6468e1f2018-04-17 12:09:34 +0200270 //Completable future for network configuration process to buffer config events handling during activation
271 private CompletableFuture<Boolean> networkConfigCompletion = null;
Charles Chan10b2fee2018-04-21 00:44:29 -0700272 private List<Event> queuedEvents = new CopyOnWriteArrayList<>();
sanghob35a6192015-04-01 13:05:26 -0700273
Charles Chan9b7217c2018-04-05 16:31:15 -0700274 // Handles device, link, topology and network config events
Charles Chan50bb6ef2018-04-18 18:41:05 -0700275 private ScheduledExecutorService mainEventExecutor;
sanghob35a6192015-04-01 13:05:26 -0700276
Charles Chan50bb6ef2018-04-18 18:41:05 -0700277 // Handles host, route and mcast events respectively
278 private ScheduledExecutorService hostEventExecutor;
279 private ScheduledExecutorService routeEventExecutor;
280 private ScheduledExecutorService mcastEventExecutor;
Charles Chan9b7217c2018-04-05 16:31:15 -0700281
282 Map<DeviceId, DefaultGroupHandler> groupHandlerMap = new ConcurrentHashMap<>();
Charles Chane849c192016-01-11 18:28:54 -0800283 /**
Saurav Das7bcbe702017-06-13 15:35:54 -0700284 * Per device next objective ID store with (device id + destination set) as key.
Charles Chan5bc32632017-08-22 15:07:34 -0700285 * Used to keep track on MPLS group information.
Charles Chane849c192016-01-11 18:28:54 -0800286 */
Charles Chan47933752017-11-30 15:37:50 -0800287 private EventuallyConsistentMap<DestinationSetNextObjectiveStoreKey, NextNeighbors>
Saurav Das7bcbe702017-06-13 15:35:54 -0700288 dsNextObjStore = null;
Charles Chane849c192016-01-11 18:28:54 -0800289 /**
Charles Chan5bc32632017-08-22 15:07:34 -0700290 * Per device next objective ID store with (device id + vlanid) as key.
291 * Used to keep track on L2 flood group information.
Charles Chane849c192016-01-11 18:28:54 -0800292 */
Charles Chan47933752017-11-30 15:37:50 -0800293 private EventuallyConsistentMap<VlanNextObjectiveStoreKey, Integer>
Charles Chan59cc16d2017-02-02 16:20:42 -0800294 vlanNextObjStore = null;
Charles Chane849c192016-01-11 18:28:54 -0800295 /**
Charles Chan5bc32632017-08-22 15:07:34 -0700296 * Per device next objective ID store with (device id + port + treatment + meta) as key.
297 * Used to keep track on L2 interface group and L3 unicast group information.
Charles Chane849c192016-01-11 18:28:54 -0800298 */
Charles Chan47933752017-11-30 15:37:50 -0800299 private EventuallyConsistentMap<PortNextObjectiveStoreKey, Integer>
Saurav Das4ce45962015-11-24 23:21:05 -0800300 portNextObjStore = null;
Charles Chan59cc16d2017-02-02 16:20:42 -0800301
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700302 /**
303 * Per port dummy VLAN ID store with (connect point + ip address) as key.
304 * Used to keep track on dummy VLAN ID allocation.
305 */
306 private EventuallyConsistentMap<DummyVlanIdStoreKey, VlanId>
307 dummyVlanIdStore = null;
308
Saurav Das4ce45962015-11-24 23:21:05 -0800309 private EventuallyConsistentMap<String, Tunnel> tunnelStore = null;
310 private EventuallyConsistentMap<String, Policy> policyStore = null;
sangho0b2b6d12015-05-20 22:16:38 -0700311
Saurav Das7bcbe702017-06-13 15:35:54 -0700312 private AtomicBoolean programmingScheduled = new AtomicBoolean();
313
Charles Chand55e84d2016-03-30 17:54:24 -0700314 private final ConfigFactory<DeviceId, SegmentRoutingDeviceConfig> deviceConfigFactory =
Charles Chanfc5c7802016-05-17 13:13:55 -0700315 new ConfigFactory<DeviceId, SegmentRoutingDeviceConfig>(
316 SubjectFactories.DEVICE_SUBJECT_FACTORY,
Charles Chand55e84d2016-03-30 17:54:24 -0700317 SegmentRoutingDeviceConfig.class, "segmentrouting") {
Charles Chand6832882015-10-05 17:50:33 -0700318 @Override
Charles Chan5270ed02016-01-30 23:22:37 -0800319 public SegmentRoutingDeviceConfig createConfig() {
320 return new SegmentRoutingDeviceConfig();
Charles Chand6832882015-10-05 17:50:33 -0700321 }
322 };
Pier Ventref34966c2016-11-07 16:21:04 -0800323
Charles Chand55e84d2016-03-30 17:54:24 -0700324 private final ConfigFactory<ApplicationId, SegmentRoutingAppConfig> appConfigFactory =
Charles Chanfc5c7802016-05-17 13:13:55 -0700325 new ConfigFactory<ApplicationId, SegmentRoutingAppConfig>(
326 SubjectFactories.APP_SUBJECT_FACTORY,
Charles Chand55e84d2016-03-30 17:54:24 -0700327 SegmentRoutingAppConfig.class, "segmentrouting") {
Charles Chan5270ed02016-01-30 23:22:37 -0800328 @Override
329 public SegmentRoutingAppConfig createConfig() {
330 return new SegmentRoutingAppConfig();
331 }
332 };
Pier Ventref34966c2016-11-07 16:21:04 -0800333
Charles Chanfc5c7802016-05-17 13:13:55 -0700334 private final ConfigFactory<ApplicationId, XConnectConfig> xConnectConfigFactory =
335 new ConfigFactory<ApplicationId, XConnectConfig>(
336 SubjectFactories.APP_SUBJECT_FACTORY,
337 XConnectConfig.class, "xconnect") {
338 @Override
339 public XConnectConfig createConfig() {
340 return new XConnectConfig();
341 }
342 };
Pier Ventref34966c2016-11-07 16:21:04 -0800343
Charles Chand55e84d2016-03-30 17:54:24 -0700344 private ConfigFactory<ApplicationId, McastConfig> mcastConfigFactory =
Charles Chanfc5c7802016-05-17 13:13:55 -0700345 new ConfigFactory<ApplicationId, McastConfig>(
346 SubjectFactories.APP_SUBJECT_FACTORY,
Charles Chand55e84d2016-03-30 17:54:24 -0700347 McastConfig.class, "multicast") {
348 @Override
349 public McastConfig createConfig() {
350 return new McastConfig();
351 }
352 };
353
Charles Chan116188d2016-02-18 14:22:42 -0800354 /**
355 * Segment Routing App ID.
356 */
Charles Chan2c15aca2016-11-09 20:51:44 -0800357 public static final String APP_NAME = "org.onosproject.segmentrouting";
Charles Chan59cc16d2017-02-02 16:20:42 -0800358
Charles Chane849c192016-01-11 18:28:54 -0800359 /**
360 * The default VLAN ID assigned to the interfaces without subnet config.
361 */
Charles Chan59cc16d2017-02-02 16:20:42 -0800362 public static final VlanId INTERNAL_VLAN = VlanId.vlanId((short) 4094);
Saurav Das0e99e2b2015-10-28 12:39:42 -0700363
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700364 /**
365 * Minumum and maximum value of dummy VLAN ID to be allocated.
366 */
367 public static final int MIN_DUMMY_VLAN_ID = 2;
368 public static final int MAX_DUMMY_VLAN_ID = 4093;
369
Saurav Das9a554292018-04-27 18:42:30 -0700370 Instant lastEdgePortEvent = Instant.EPOCH;
371
sanghob35a6192015-04-01 13:05:26 -0700372 @Activate
Charles Chan47933752017-11-30 15:37:50 -0800373 protected void activate(ComponentContext context) {
Charles Chan2c15aca2016-11-09 20:51:44 -0800374 appId = coreService.registerApplication(APP_NAME);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700375
Charles Chan50bb6ef2018-04-18 18:41:05 -0700376 mainEventExecutor = Executors.newSingleThreadScheduledExecutor(groupedThreads("sr-event-main", "%d", log));
377 hostEventExecutor = Executors.newSingleThreadScheduledExecutor(groupedThreads("sr-event-host", "%d", log));
378 routeEventExecutor = Executors.newSingleThreadScheduledExecutor(groupedThreads("sr-event-route", "%d", log));
379 mcastEventExecutor = Executors.newSingleThreadScheduledExecutor(groupedThreads("sr-event-mcast", "%d", log));
380
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700381 log.debug("Creating EC map nsnextobjectivestore");
Saurav Das7bcbe702017-06-13 15:35:54 -0700382 EventuallyConsistentMapBuilder<DestinationSetNextObjectiveStoreKey, NextNeighbors>
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700383 nsNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
Saurav Das7bcbe702017-06-13 15:35:54 -0700384 dsNextObjStore = nsNextObjMapBuilder
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700385 .withName("nsnextobjectivestore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700386 .withSerializer(createSerializer())
Madan Jampanibcf1a482015-06-24 19:05:56 -0700387 .withTimestampProvider((k, v) -> new WallClockTimestamp())
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700388 .build();
Saurav Das7bcbe702017-06-13 15:35:54 -0700389 log.trace("Current size {}", dsNextObjStore.size());
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700390
Charles Chan59cc16d2017-02-02 16:20:42 -0800391 log.debug("Creating EC map vlannextobjectivestore");
392 EventuallyConsistentMapBuilder<VlanNextObjectiveStoreKey, Integer>
393 vlanNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
394 vlanNextObjStore = vlanNextObjMapBuilder
395 .withName("vlannextobjectivestore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700396 .withSerializer(createSerializer())
Charles Chanc42e84e2015-10-20 16:24:19 -0700397 .withTimestampProvider((k, v) -> new WallClockTimestamp())
398 .build();
399
Saurav Das4ce45962015-11-24 23:21:05 -0800400 log.debug("Creating EC map subnetnextobjectivestore");
401 EventuallyConsistentMapBuilder<PortNextObjectiveStoreKey, Integer>
402 portNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
403 portNextObjStore = portNextObjMapBuilder
404 .withName("portnextobjectivestore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700405 .withSerializer(createSerializer())
Saurav Das4ce45962015-11-24 23:21:05 -0800406 .withTimestampProvider((k, v) -> new WallClockTimestamp())
407 .build();
408
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700409 EventuallyConsistentMapBuilder<DummyVlanIdStoreKey, VlanId>
410 dummyVlanIdMapBuilder = storageService.eventuallyConsistentMapBuilder();
411 dummyVlanIdStore = dummyVlanIdMapBuilder
412 .withName("dummyvlanidstore")
413 .withSerializer(createSerializer())
414 .withTimestampProvider((k, v) -> new WallClockTimestamp())
415 .build();
416
sangho0b2b6d12015-05-20 22:16:38 -0700417 EventuallyConsistentMapBuilder<String, Tunnel> tunnelMapBuilder =
418 storageService.eventuallyConsistentMapBuilder();
sangho0b2b6d12015-05-20 22:16:38 -0700419 tunnelStore = tunnelMapBuilder
420 .withName("tunnelstore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700421 .withSerializer(createSerializer())
Madan Jampanibcf1a482015-06-24 19:05:56 -0700422 .withTimestampProvider((k, v) -> new WallClockTimestamp())
sangho0b2b6d12015-05-20 22:16:38 -0700423 .build();
424
425 EventuallyConsistentMapBuilder<String, Policy> policyMapBuilder =
426 storageService.eventuallyConsistentMapBuilder();
sangho0b2b6d12015-05-20 22:16:38 -0700427 policyStore = policyMapBuilder
428 .withName("policystore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700429 .withSerializer(createSerializer())
Madan Jampanibcf1a482015-06-24 19:05:56 -0700430 .withTimestampProvider((k, v) -> new WallClockTimestamp())
sangho0b2b6d12015-05-20 22:16:38 -0700431 .build();
432
Saurav Das80980c72016-03-23 11:22:49 -0700433 compCfgService.preSetProperty("org.onosproject.net.group.impl.GroupManager",
Pier Luigi9e5c5ca2017-01-12 18:14:58 -0800434 "purgeOnDisconnection", "true");
Saurav Das80980c72016-03-23 11:22:49 -0700435 compCfgService.preSetProperty("org.onosproject.net.flow.impl.FlowRuleManager",
Pier Luigi9e5c5ca2017-01-12 18:14:58 -0800436 "purgeOnDisconnection", "true");
Pier Luigi9e5c5ca2017-01-12 18:14:58 -0800437 compCfgService.preSetProperty("org.onosproject.provider.host.impl.HostLocationProvider",
438 "requestInterceptsEnabled", "false");
Charles Chand3baaba2017-08-08 15:13:37 -0700439 compCfgService.preSetProperty("org.onosproject.net.neighbour.impl.NeighbourResolutionManager",
Pier Luigi7e415132017-01-12 22:46:39 -0800440 "requestInterceptsEnabled", "false");
Charles Chanc760f382017-07-24 15:56:10 -0700441 compCfgService.preSetProperty("org.onosproject.dhcprelay.DhcpRelayManager",
Pier Luigi7e415132017-01-12 22:46:39 -0800442 "arpEnabled", "false");
Pier Luigi9b1d6262017-02-02 22:31:34 -0800443 compCfgService.preSetProperty("org.onosproject.net.host.impl.HostManager",
444 "greedyLearningIpv6", "true");
Charles Chanc6d227e2017-02-28 15:15:17 -0800445 compCfgService.preSetProperty("org.onosproject.routing.cpr.ControlPlaneRedirectManager",
446 "forceUnprovision", "true");
Charles Chanef624ed2017-08-10 16:57:28 -0700447 compCfgService.preSetProperty("org.onosproject.routeservice.store.RouteStoreImpl",
Charles Chan73316522017-07-20 16:16:25 -0700448 "distributed", "true");
Charles Chan35a32322017-08-14 11:42:11 -0700449 compCfgService.preSetProperty("org.onosproject.provider.host.impl.HostLocationProvider",
450 "multihomingEnabled", "true");
Charles Chan807d87a2017-11-29 19:54:20 -0800451 compCfgService.preSetProperty("org.onosproject.provider.lldp.impl.LldpLinkProvider",
452 "staleLinkAge", "15000");
453 compCfgService.preSetProperty("org.onosproject.net.host.impl.HostManager",
454 "allowDuplicateIps", "false");
Charles Chan47933752017-11-30 15:37:50 -0800455 compCfgService.registerProperties(getClass());
456 modified(context);
Saurav Das80980c72016-03-23 11:22:49 -0700457
Charles Chanb8e10c82015-10-14 11:24:40 -0700458 processor = new InternalPacketProcessor();
459 linkListener = new InternalLinkListener();
460 deviceListener = new InternalDeviceListener();
Charles Chanfc5c7802016-05-17 13:13:55 -0700461 appCfgHandler = new AppConfigHandler(this);
462 xConnectHandler = new XConnectHandler(this);
Charles Chand2990362016-04-18 13:44:03 -0700463 mcastHandler = new McastHandler(this);
464 hostHandler = new HostHandler(this);
Saurav Das45f48152018-01-18 12:07:33 -0800465 linkHandler = new LinkHandler(this);
Charles Chan03a73e02016-10-24 14:52:01 -0700466 routeHandler = new RouteHandler(this);
Pier Ventre735b8c82016-12-02 08:16:05 -0800467 neighbourHandler = new SegmentRoutingNeighbourDispatcher(this);
Andreas Pantelopoulosb21547d2018-02-22 12:32:42 -0800468 l2TunnelHandler = new DefaultL2TunnelHandler(this);
Pier Luigi83f919b2018-02-15 16:33:08 +0100469 topologyHandler = new TopologyHandler(this);
Charles Chanb8e10c82015-10-14 11:24:40 -0700470
Charles Chan3e783d02016-02-26 22:19:52 -0800471 cfgService.addListener(cfgListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700472 cfgService.registerConfigFactory(deviceConfigFactory);
473 cfgService.registerConfigFactory(appConfigFactory);
Charles Chanfc5c7802016-05-17 13:13:55 -0700474 cfgService.registerConfigFactory(xConnectConfigFactory);
Charles Chand55e84d2016-03-30 17:54:24 -0700475 cfgService.registerConfigFactory(mcastConfigFactory);
Saurav Dase7f51012018-02-09 17:26:45 -0800476 log.info("Configuring network before adding listeners");
Andrea Campanella6468e1f2018-04-17 12:09:34 +0200477
Charles Chan132393a2018-01-04 14:26:07 -0800478 cfgListener.configureNetwork();
479
Charles Chan5270ed02016-01-30 23:22:37 -0800480 hostService.addListener(hostListener);
Charles Chanb8e10c82015-10-14 11:24:40 -0700481 packetService.addProcessor(processor, PacketProcessor.director(2));
482 linkService.addListener(linkListener);
483 deviceService.addListener(deviceListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700484 multicastRouteService.addListener(mcastListener);
Charles Chanc7a8a682017-06-19 00:43:31 -0700485 routeService.addListener(routeListener);
Pier Luigi83f919b2018-02-15 16:33:08 +0100486 topologyService.addListener(topologyListener);
Charles Chan50bb6ef2018-04-18 18:41:05 -0700487 mastershipService.addListener(mastershipListener);
Saurav Das201762d2018-04-21 17:19:48 -0700488 clusterService.addListener(clusterListener);
Charles Chanb8e10c82015-10-14 11:24:40 -0700489
Charles Chanb39777c2018-03-09 15:53:44 -0800490 linkHandler.init();
Andreas Pantelopoulos4a768c02018-01-11 07:53:48 -0800491 l2TunnelHandler.init();
492
Andrea Campanella6468e1f2018-04-17 12:09:34 +0200493 networkConfigCompletion.whenComplete((value, ex) -> {
494 //setting to null for easier fall through
495 networkConfigCompletion = null;
496 //process all queued events
Charles Chan10b2fee2018-04-21 00:44:29 -0700497 queuedEvents.forEach(event -> {
Andrea Campanella6468e1f2018-04-17 12:09:34 +0200498 mainEventExecutor.execute(new InternalEventHandler(event));
499 });
500 });
501
sanghob35a6192015-04-01 13:05:26 -0700502 log.info("Started");
503 }
504
Saurav Das45f48152018-01-18 12:07:33 -0800505 KryoNamespace.Builder createSerializer() {
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700506 return new KryoNamespace.Builder()
507 .register(KryoNamespaces.API)
Saurav Das7bcbe702017-06-13 15:35:54 -0700508 .register(DestinationSetNextObjectiveStoreKey.class,
Andreas Pantelopoulosb21547d2018-02-22 12:32:42 -0800509 VlanNextObjectiveStoreKey.class,
510 DestinationSet.class,
511 NextNeighbors.class,
512 Tunnel.class,
513 DefaultTunnel.class,
514 Policy.class,
515 TunnelPolicy.class,
516 Policy.Type.class,
517 PortNextObjectiveStoreKey.class,
518 XConnectStoreKey.class,
519 L2Tunnel.class,
520 L2TunnelPolicy.class,
521 DefaultL2Tunnel.class,
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700522 DefaultL2TunnelPolicy.class,
523 DummyVlanIdStoreKey.class
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700524 );
525 }
526
sanghob35a6192015-04-01 13:05:26 -0700527 @Deactivate
528 protected void deactivate() {
Charles Chan50bb6ef2018-04-18 18:41:05 -0700529 mainEventExecutor.shutdown();
530 hostEventExecutor.shutdown();
531 routeEventExecutor.shutdown();
532 mcastEventExecutor.shutdown();
533
Charles Chand6832882015-10-05 17:50:33 -0700534 cfgService.removeListener(cfgListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700535 cfgService.unregisterConfigFactory(deviceConfigFactory);
536 cfgService.unregisterConfigFactory(appConfigFactory);
Charles Chan03a73e02016-10-24 14:52:01 -0700537 cfgService.unregisterConfigFactory(xConnectConfigFactory);
Charles Chand55e84d2016-03-30 17:54:24 -0700538 cfgService.unregisterConfigFactory(mcastConfigFactory);
Charles Chan47933752017-11-30 15:37:50 -0800539 compCfgService.unregisterProperties(getClass(), false);
Charles Chand6832882015-10-05 17:50:33 -0700540
Charles Chanc7a8a682017-06-19 00:43:31 -0700541 hostService.removeListener(hostListener);
sanghob35a6192015-04-01 13:05:26 -0700542 packetService.removeProcessor(processor);
Charles Chanb8e10c82015-10-14 11:24:40 -0700543 linkService.removeListener(linkListener);
544 deviceService.removeListener(deviceListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700545 multicastRouteService.removeListener(mcastListener);
Charles Chan03a73e02016-10-24 14:52:01 -0700546 routeService.removeListener(routeListener);
Pier Luigi83f919b2018-02-15 16:33:08 +0100547 topologyService.removeListener(topologyListener);
Charles Chan50bb6ef2018-04-18 18:41:05 -0700548 mastershipService.removeListener(mastershipListener);
Saurav Das201762d2018-04-21 17:19:48 -0700549 clusterService.removeListener(clusterListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700550
Charles Chan0aa674e2017-02-23 15:44:08 -0800551 neighbourResolutionService.unregisterNeighbourHandlers(appId);
552
sanghob35a6192015-04-01 13:05:26 -0700553 processor = null;
Charles Chanb8e10c82015-10-14 11:24:40 -0700554 linkListener = null;
Charles Chand55e84d2016-03-30 17:54:24 -0700555 deviceListener = null;
Charles Chan6577f612018-04-19 13:10:01 -0700556 groupHandlerMap.forEach((k, v) -> v.shutdown());
Charles Chanb8e10c82015-10-14 11:24:40 -0700557 groupHandlerMap.clear();
Saurav Dasc6ff8f02018-04-23 18:42:12 -0700558 defaultRoutingHandler.shutdown();
Charles Chanb8e10c82015-10-14 11:24:40 -0700559
Saurav Das7bcbe702017-06-13 15:35:54 -0700560 dsNextObjStore.destroy();
Charles Chan59cc16d2017-02-02 16:20:42 -0800561 vlanNextObjStore.destroy();
Charles Chand55e84d2016-03-30 17:54:24 -0700562 portNextObjStore.destroy();
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700563 dummyVlanIdStore.destroy();
Charles Chand55e84d2016-03-30 17:54:24 -0700564 tunnelStore.destroy();
565 policyStore.destroy();
Pier Luigib72201b2018-01-25 16:16:02 +0100566
567 mcastHandler.terminate();
sanghob35a6192015-04-01 13:05:26 -0700568 log.info("Stopped");
569 }
570
Charles Chan47933752017-11-30 15:37:50 -0800571 @Modified
572 private void modified(ComponentContext context) {
573 Dictionary<?, ?> properties = context.getProperties();
574 if (properties == null) {
575 return;
576 }
577
578 String strActiveProving = Tools.get(properties, "activeProbing");
579 boolean expectActiveProbing = Boolean.parseBoolean(strActiveProving);
Charles Chan47933752017-11-30 15:37:50 -0800580 if (expectActiveProbing != activeProbing) {
581 activeProbing = expectActiveProbing;
582 log.info("{} active probing", activeProbing ? "Enabling" : "Disabling");
583 }
Saurav Das9a554292018-04-27 18:42:30 -0700584
585 String strSingleHomedDown = Tools.get(properties, "singleHomedDown");
586 boolean expectSingleHomedDown = Boolean.parseBoolean(strSingleHomedDown);
587 if (expectSingleHomedDown != singleHomedDown) {
588 singleHomedDown = expectSingleHomedDown;
589 log.info("{} downing of single homed hosts for lost uplinks",
590 singleHomedDown ? "Enabling" : "Disabling");
591 if (singleHomedDown && linkHandler != null) {
592 hostService.getHosts().forEach(host -> host.locations()
593 .forEach(loc -> {
594 if (interfaceService.isConfigured(loc)) {
595 linkHandler.checkUplinksForHost(loc);
596 }
597 }));
598 } else {
599 log.warn("Disabling singleHomedDown does not re-enable already "
600 + "downed ports for single-homed hosts");
601 }
602 }
Charles Chan47933752017-11-30 15:37:50 -0800603 }
604
sangho1e575652015-05-14 00:39:53 -0700605 @Override
606 public List<Tunnel> getTunnels() {
607 return tunnelHandler.getTunnels();
608 }
609
610 @Override
sangho71abe1b2015-06-29 14:58:47 -0700611 public TunnelHandler.Result createTunnel(Tunnel tunnel) {
612 return tunnelHandler.createTunnel(tunnel);
sangho1e575652015-05-14 00:39:53 -0700613 }
614
615 @Override
sangho71abe1b2015-06-29 14:58:47 -0700616 public TunnelHandler.Result removeTunnel(Tunnel tunnel) {
sangho1e575652015-05-14 00:39:53 -0700617 for (Policy policy: policyHandler.getPolicies()) {
618 if (policy.type() == Policy.Type.TUNNEL_FLOW) {
619 TunnelPolicy tunnelPolicy = (TunnelPolicy) policy;
620 if (tunnelPolicy.tunnelId().equals(tunnel.id())) {
621 log.warn("Cannot remove the tunnel used by a policy");
sangho71abe1b2015-06-29 14:58:47 -0700622 return TunnelHandler.Result.TUNNEL_IN_USE;
sangho1e575652015-05-14 00:39:53 -0700623 }
624 }
625 }
sangho71abe1b2015-06-29 14:58:47 -0700626 return tunnelHandler.removeTunnel(tunnel);
sangho1e575652015-05-14 00:39:53 -0700627 }
628
629 @Override
sangho71abe1b2015-06-29 14:58:47 -0700630 public PolicyHandler.Result removePolicy(Policy policy) {
631 return policyHandler.removePolicy(policy);
sangho1e575652015-05-14 00:39:53 -0700632 }
633
634 @Override
sangho71abe1b2015-06-29 14:58:47 -0700635 public PolicyHandler.Result createPolicy(Policy policy) {
636 return policyHandler.createPolicy(policy);
sangho1e575652015-05-14 00:39:53 -0700637 }
638
639 @Override
640 public List<Policy> getPolicies() {
641 return policyHandler.getPolicies();
642 }
643
Saurav Das59232cf2016-04-27 18:35:50 -0700644 @Override
Andreas Pantelopoulos811bbae2018-03-15 16:56:09 -0700645 public Set<L2TunnelDescription> getL2TunnelDescriptions(boolean pending) {
646 return l2TunnelHandler.getL2Descriptions(pending);
Andreas Pantelopoulosff691b72018-03-12 16:30:20 -0700647 }
648
649 @Override
Andreas Pantelopoulosb21547d2018-02-22 12:32:42 -0800650 public List<L2Tunnel> getL2Tunnels() {
Andreas Pantelopoulos27532cd2017-10-23 12:18:25 -0700651 return l2TunnelHandler.getL2Tunnels();
652 }
653
654 @Override
Andreas Pantelopoulosb21547d2018-02-22 12:32:42 -0800655 public List<L2TunnelPolicy> getL2Policies() {
Andreas Pantelopoulos27532cd2017-10-23 12:18:25 -0700656 return l2TunnelHandler.getL2Policies();
657 }
658
Saurav Das5a356042018-04-06 20:16:01 -0700659 @Override
Andreas Pantelopoulosffe69742018-03-20 13:58:49 -0700660 @Deprecated
Andreas Pantelopoulosff691b72018-03-12 16:30:20 -0700661 public L2TunnelHandler.Result addPseudowiresBulk(List<DefaultL2TunnelDescription> bulkPseudowires) {
662
Andreas Pantelopoulos811bbae2018-03-15 16:56:09 -0700663 // get both added and pending pseudowires
664 List<L2TunnelDescription> pseudowires = new ArrayList<>();
665 pseudowires.addAll(l2TunnelHandler.getL2Descriptions(false));
666 pseudowires.addAll(l2TunnelHandler.getL2Descriptions(true));
Andreas Pantelopoulosff691b72018-03-12 16:30:20 -0700667 pseudowires.addAll(bulkPseudowires);
Andreas Pantelopoulos811bbae2018-03-15 16:56:09 -0700668
Andreas Pantelopoulosff691b72018-03-12 16:30:20 -0700669 Set<L2TunnelDescription> newPseudowires = new HashSet(bulkPseudowires);
670
Andreas Pantelopoulosffe69742018-03-20 13:58:49 -0700671 L2TunnelHandler.Result retRes = L2TunnelHandler.Result.SUCCESS;
672 L2TunnelHandler.Result res;
673 for (DefaultL2TunnelDescription pw : bulkPseudowires) {
674 res = addPseudowire(pw);
675 if (res != L2TunnelHandler.Result.SUCCESS) {
676 log.error("Pseudowire with id {} can not be instantiated !", res);
677 retRes = res;
678 }
Andreas Pantelopoulosff691b72018-03-12 16:30:20 -0700679 }
Andreas Pantelopoulosffe69742018-03-20 13:58:49 -0700680
681 return retRes;
Andreas Pantelopoulosff691b72018-03-12 16:30:20 -0700682 }
683
684 @Override
Andreas Pantelopouloscd339592018-02-23 14:18:00 -0800685 public L2TunnelHandler.Result addPseudowire(L2TunnelDescription l2TunnelDescription) {
Andreas Pantelopoulos935d59d2018-03-21 16:44:18 -0700686 return l2TunnelHandler.deployPseudowire(l2TunnelDescription);
Andreas Pantelopoulos27532cd2017-10-23 12:18:25 -0700687 }
688
689 @Override
Andreas Pantelopouloscd339592018-02-23 14:18:00 -0800690 public L2TunnelHandler.Result removePseudowire(Integer pwId) {
Andreas Pantelopoulos935d59d2018-03-21 16:44:18 -0700691 return l2TunnelHandler.tearDownPseudowire(pwId);
Andreas Pantelopoulos27532cd2017-10-23 12:18:25 -0700692 }
693
694 @Override
Saurav Das59232cf2016-04-27 18:35:50 -0700695 public void rerouteNetwork() {
696 cfgListener.configureNetwork();
Saurav Das59232cf2016-04-27 18:35:50 -0700697 }
698
Charles Chanc81c45b2016-10-20 17:02:44 -0700699 @Override
Pier Ventre10bd8d12016-11-26 21:05:22 -0800700 public Map<DeviceId, Set<IpPrefix>> getDeviceSubnetMap() {
701 Map<DeviceId, Set<IpPrefix>> deviceSubnetMap = Maps.newHashMap();
Jonathan Hart8ca2bc02017-11-30 18:23:42 -0800702 deviceConfiguration.getRouters().forEach(device ->
703 deviceSubnetMap.put(device, deviceConfiguration.getSubnets(device)));
Charles Chanc81c45b2016-10-20 17:02:44 -0700704 return deviceSubnetMap;
705 }
706
Saurav Dasc88d4662017-05-15 15:34:25 -0700707
708 @Override
709 public ImmutableMap<DeviceId, EcmpShortestPathGraph> getCurrentEcmpSpg() {
710 if (defaultRoutingHandler != null) {
711 return defaultRoutingHandler.getCurrentEmcpSpgMap();
712 } else {
713 return null;
714 }
715 }
716
717 @Override
Saurav Das7bcbe702017-06-13 15:35:54 -0700718 public ImmutableMap<DestinationSetNextObjectiveStoreKey, NextNeighbors> getDestinationSet() {
719 if (dsNextObjStore != null) {
720 return ImmutableMap.copyOf(dsNextObjStore.entrySet());
Saurav Dasc88d4662017-05-15 15:34:25 -0700721 } else {
722 return ImmutableMap.of();
723 }
724 }
725
Saurav Dasceccf242017-08-03 18:30:35 -0700726 @Override
727 public void verifyGroups(DeviceId id) {
728 DefaultGroupHandler gh = groupHandlerMap.get(id);
729 if (gh != null) {
730 gh.triggerBucketCorrector();
731 }
732 }
733
Saurav Dasc568c342018-01-25 09:49:01 -0800734 @Override
735 public ImmutableMap<Link, Boolean> getSeenLinks() {
736 return linkHandler.getSeenLinks();
737 }
738
739 @Override
740 public ImmutableMap<DeviceId, Set<PortNumber>> getDownedPortState() {
741 return linkHandler.getDownedPorts();
742 }
743
Pier Luigib29144d2018-01-15 18:06:43 +0100744 @Override
745 public Map<McastStoreKey, Integer> getMcastNextIds(IpAddress mcastIp) {
746 return mcastHandler.getMcastNextIds(mcastIp);
747 }
748
749 @Override
Pier Luigi96fe0772018-02-28 12:10:50 +0100750 public Map<McastStoreKey, McastRole> getMcastRoles(IpAddress mcastIp) {
Pier Luigib29144d2018-01-15 18:06:43 +0100751 return mcastHandler.getMcastRoles(mcastIp);
752 }
753
754 @Override
Pier3e793752018-04-19 16:47:06 +0200755 public Map<McastRoleStoreKey, McastRole> getMcastRoles(IpAddress mcastIp, ConnectPoint sourcecp) {
756 return mcastHandler.getMcastRoles(mcastIp, sourcecp);
757 }
758
759 @Override
Pier Luigib29144d2018-01-15 18:06:43 +0100760 public Map<ConnectPoint, List<ConnectPoint>> getMcastPaths(IpAddress mcastIp) {
761 return mcastHandler.getMcastPaths(mcastIp);
762 }
763
Pier96f63cb2018-04-17 16:29:56 +0200764 @Override
Pierb1fe7382018-04-17 17:25:22 +0200765 public Multimap<ConnectPoint, List<ConnectPoint>> getMcastTrees(IpAddress mcastIp,
766 ConnectPoint sourcecp) {
767 return mcastHandler.getMcastTrees(mcastIp, sourcecp);
768 }
769
770 @Override
Pier96f63cb2018-04-17 16:29:56 +0200771 public Map<IpAddress, NodeId> getMcastLeaders(IpAddress mcastIp) {
772 return mcastHandler.getMcastLeaders(mcastIp);
773 }
774
Charles Chan8bc75ee2018-04-17 18:56:53 -0700775 @Override
776 public Map<Set<DeviceId>, NodeId> getShouldProgram() {
777 return defaultRoutingHandler == null ? ImmutableMap.of() :
778 ImmutableMap.copyOf(defaultRoutingHandler.shouldProgram);
779 }
780
781 @Override
782 public Map<DeviceId, Boolean> getShouldProgramCache() {
783 return defaultRoutingHandler == null ? ImmutableMap.of() :
784 ImmutableMap.copyOf(defaultRoutingHandler.shouldProgramCache);
785 }
786
sanghof9d0bf12015-05-19 11:57:42 -0700787 /**
Ray Milkeye4afdb52017-04-05 09:42:04 -0700788 * Extracts the application ID from the manager.
789 *
790 * @return application ID
791 */
792 public ApplicationId appId() {
793 return appId;
794 }
795
796 /**
797 * Returns the device configuration.
798 *
799 * @return device configuration
800 */
801 public DeviceConfiguration deviceConfiguration() {
802 return deviceConfiguration;
803 }
804
805 /**
Saurav Das7bcbe702017-06-13 15:35:54 -0700806 * Per device next objective ID store with (device id + destination set) as key.
Charles Chan5bc32632017-08-22 15:07:34 -0700807 * Used to keep track on MPLS group information.
Ray Milkeye4afdb52017-04-05 09:42:04 -0700808 *
809 * @return next objective ID store
810 */
Saurav Das7bcbe702017-06-13 15:35:54 -0700811 public EventuallyConsistentMap<DestinationSetNextObjectiveStoreKey, NextNeighbors>
812 dsNextObjStore() {
813 return dsNextObjStore;
Ray Milkeye4afdb52017-04-05 09:42:04 -0700814 }
815
816 /**
Charles Chan5bc32632017-08-22 15:07:34 -0700817 * Per device next objective ID store with (device id + vlanid) as key.
818 * Used to keep track on L2 flood group information.
Ray Milkeye4afdb52017-04-05 09:42:04 -0700819 *
820 * @return vlan next object store
821 */
822 public EventuallyConsistentMap<VlanNextObjectiveStoreKey, Integer> vlanNextObjStore() {
823 return vlanNextObjStore;
824 }
825
826 /**
Charles Chan5bc32632017-08-22 15:07:34 -0700827 * Per device next objective ID store with (device id + port + treatment + meta) as key.
828 * Used to keep track on L2 interface group and L3 unicast group information.
Ray Milkeye4afdb52017-04-05 09:42:04 -0700829 *
830 * @return port next object store.
831 */
832 public EventuallyConsistentMap<PortNextObjectiveStoreKey, Integer> portNextObjStore() {
833 return portNextObjStore;
834 }
835
836 /**
Jonghwan Hyun800d9d02018-04-09 09:40:50 -0700837 * Per port dummy VLAN ID store with (connect point + ip address) as key.
838 * Used to keep track on dummy VLAN ID allocation.
839 *
840 * @return dummy vlan id store.
841 */
842 public EventuallyConsistentMap<DummyVlanIdStoreKey, VlanId> dummyVlanIdStore() {
843 return dummyVlanIdStore;
844 }
845
846 /**
Saurav Das7bcbe702017-06-13 15:35:54 -0700847 * Returns the MPLS-ECMP configuration which indicates whether ECMP on
848 * labeled packets should be programmed or not.
Pier Ventre98161782016-10-31 15:00:01 -0700849 *
850 * @return MPLS-ECMP value
851 */
852 public boolean getMplsEcmp() {
853 SegmentRoutingAppConfig segmentRoutingAppConfig = cfgService
854 .getConfig(this.appId, SegmentRoutingAppConfig.class);
855 return segmentRoutingAppConfig != null && segmentRoutingAppConfig.mplsEcmp();
856 }
857
858 /**
sanghof9d0bf12015-05-19 11:57:42 -0700859 * Returns the tunnel object with the tunnel ID.
860 *
861 * @param tunnelId Tunnel ID
862 * @return Tunnel reference
863 */
sangho1e575652015-05-14 00:39:53 -0700864 public Tunnel getTunnel(String tunnelId) {
865 return tunnelHandler.getTunnel(tunnelId);
866 }
867
Charles Chan7ffd81f2017-02-08 15:52:08 -0800868 /**
Charles Chanf9a52702017-06-16 15:19:24 -0700869 * Returns internal VLAN for untagged hosts on given connect point.
870 * <p>
871 * The internal VLAN is either vlan-untagged for an access port,
872 * or vlan-native for a trunk port.
873 *
874 * @param connectPoint connect point
875 * @return internal VLAN or null if both vlan-untagged and vlan-native are undefined
876 */
Pier Luigi96fe0772018-02-28 12:10:50 +0100877 public VlanId getInternalVlanId(ConnectPoint connectPoint) {
Charles Chan971d7ba2018-05-01 11:50:20 -0700878 VlanId untaggedVlanId = interfaceService.getUntaggedVlanId(connectPoint);
879 VlanId nativeVlanId = interfaceService.getNativeVlanId(connectPoint);
Charles Chanf9a52702017-06-16 15:19:24 -0700880 return untaggedVlanId != null ? untaggedVlanId : nativeVlanId;
881 }
882
883 /**
Charles Chan65238242017-06-22 18:03:14 -0700884 * Returns optional pair device ID of given device.
885 *
886 * @param deviceId device ID
887 * @return optional pair device ID. Might be empty if pair device is not configured
888 */
889 Optional<DeviceId> getPairDeviceId(DeviceId deviceId) {
890 SegmentRoutingDeviceConfig deviceConfig =
891 cfgService.getConfig(deviceId, SegmentRoutingDeviceConfig.class);
892 return Optional.ofNullable(deviceConfig).map(SegmentRoutingDeviceConfig::pairDeviceId);
893 }
894 /**
895 * Returns optional pair device local port of given device.
896 *
897 * @param deviceId device ID
898 * @return optional pair device ID. Might be empty if pair device is not configured
899 */
Saurav Das9a554292018-04-27 18:42:30 -0700900 public Optional<PortNumber> getPairLocalPort(DeviceId deviceId) {
Charles Chan65238242017-06-22 18:03:14 -0700901 SegmentRoutingDeviceConfig deviceConfig =
902 cfgService.getConfig(deviceId, SegmentRoutingDeviceConfig.class);
903 return Optional.ofNullable(deviceConfig).map(SegmentRoutingDeviceConfig::pairLocalPort);
904 }
905
906 /**
Charles Chan9640c812017-08-23 13:55:39 -0700907 * Returns locations of given resolved route.
908 *
909 * @param resolvedRoute resolved route
910 * @return locations of nexthop. Might be empty if next hop is not found
911 */
912 Set<ConnectPoint> nextHopLocations(ResolvedRoute resolvedRoute) {
913 HostId hostId = HostId.hostId(resolvedRoute.nextHopMac(), resolvedRoute.nextHopVlan());
914 return Optional.ofNullable(hostService.getHost(hostId))
915 .map(Host::locations).orElse(Sets.newHashSet())
916 .stream().map(l -> (ConnectPoint) l).collect(Collectors.toSet());
917 }
918
919 /**
Charles Chan7ffd81f2017-02-08 15:52:08 -0800920 * Returns vlan port map of given device.
921 *
922 * @param deviceId device id
923 * @return vlan-port multimap
924 */
925 public Multimap<VlanId, PortNumber> getVlanPortMap(DeviceId deviceId) {
926 HashMultimap<VlanId, PortNumber> vlanPortMap = HashMultimap.create();
927
928 interfaceService.getInterfaces().stream()
929 .filter(intf -> intf.connectPoint().deviceId().equals(deviceId))
930 .forEach(intf -> {
931 vlanPortMap.put(intf.vlanUntagged(), intf.connectPoint().port());
Charles Chan65238242017-06-22 18:03:14 -0700932 intf.vlanTagged().forEach(vlanTagged ->
933 vlanPortMap.put(vlanTagged, intf.connectPoint().port())
934 );
Charles Chan7ffd81f2017-02-08 15:52:08 -0800935 vlanPortMap.put(intf.vlanNative(), intf.connectPoint().port());
936 });
937 vlanPortMap.removeAll(VlanId.NONE);
938
939 return vlanPortMap;
940 }
941
942 /**
Charles Chan59cc16d2017-02-02 16:20:42 -0800943 * Returns the next objective ID for the given vlan id. It is expected
Saurav Das4ce45962015-11-24 23:21:05 -0800944 * that the next-objective has been pre-created from configuration.
Charles Chanc42e84e2015-10-20 16:24:19 -0700945 *
946 * @param deviceId Device ID
Charles Chan59cc16d2017-02-02 16:20:42 -0800947 * @param vlanId VLAN ID
Saurav Das4ce45962015-11-24 23:21:05 -0800948 * @return next objective ID or -1 if it was not found
Charles Chanc42e84e2015-10-20 16:24:19 -0700949 */
Charles Chan65238242017-06-22 18:03:14 -0700950 int getVlanNextObjectiveId(DeviceId deviceId, VlanId vlanId) {
Charles Chanc42e84e2015-10-20 16:24:19 -0700951 if (groupHandlerMap.get(deviceId) != null) {
Charles Chan59cc16d2017-02-02 16:20:42 -0800952 log.trace("getVlanNextObjectiveId query in device {}", deviceId);
953 return groupHandlerMap.get(deviceId).getVlanNextObjectiveId(vlanId);
Charles Chanc42e84e2015-10-20 16:24:19 -0700954 } else {
Charles Chan59cc16d2017-02-02 16:20:42 -0800955 log.warn("getVlanNextObjectiveId query - groupHandler for "
Saurav Das4ce45962015-11-24 23:21:05 -0800956 + "device {} not found", deviceId);
957 return -1;
958 }
959 }
960
961 /**
962 * Returns the next objective ID for the given portNumber, given the treatment.
963 * There could be multiple different treatments to the same outport, which
Saurav Das961beb22017-03-29 19:09:17 -0700964 * would result in different objectives. If the next object does not exist,
965 * and should be created, a new one is created and its id is returned.
Saurav Das4ce45962015-11-24 23:21:05 -0800966 *
967 * @param deviceId Device ID
968 * @param portNum port number on device for which NextObjective is queried
969 * @param treatment the actions to apply on the packets (should include outport)
970 * @param meta metadata passed into the creation of a Next Objective if necessary
Saurav Das961beb22017-03-29 19:09:17 -0700971 * @param createIfMissing true if a next object should be created if not found
Saurav Das59232cf2016-04-27 18:35:50 -0700972 * @return next objective ID or -1 if an error occurred during retrieval or creation
Saurav Das4ce45962015-11-24 23:21:05 -0800973 */
974 public int getPortNextObjectiveId(DeviceId deviceId, PortNumber portNum,
975 TrafficTreatment treatment,
Saurav Das961beb22017-03-29 19:09:17 -0700976 TrafficSelector meta,
977 boolean createIfMissing) {
Saurav Das4ce45962015-11-24 23:21:05 -0800978 DefaultGroupHandler ghdlr = groupHandlerMap.get(deviceId);
979 if (ghdlr != null) {
Saurav Das961beb22017-03-29 19:09:17 -0700980 return ghdlr.getPortNextObjectiveId(portNum, treatment, meta, createIfMissing);
Saurav Das4ce45962015-11-24 23:21:05 -0800981 } else {
Charles Chane849c192016-01-11 18:28:54 -0800982 log.warn("getPortNextObjectiveId query - groupHandler for device {}"
983 + " not found", deviceId);
984 return -1;
985 }
986 }
987
Saurav Dasc88d4662017-05-15 15:34:25 -0700988 /**
989 * Returns the group handler object for the specified device id.
990 *
991 * @param devId the device identifier
992 * @return the groupHandler object for the device id, or null if not found
993 */
Charles Chan65238242017-06-22 18:03:14 -0700994 DefaultGroupHandler getGroupHandler(DeviceId devId) {
Saurav Dasc88d4662017-05-15 15:34:25 -0700995 return groupHandlerMap.get(devId);
996 }
997
998 /**
Saurav Dasceccf242017-08-03 18:30:35 -0700999 * Returns the default routing handler object.
1000 *
1001 * @return the default routing handler object
1002 */
1003 public DefaultRoutingHandler getRoutingHandler() {
1004 return defaultRoutingHandler;
1005 }
1006
Jonghwan Hyun800d9d02018-04-09 09:40:50 -07001007 /**
1008 * Returns new dummy VLAN ID.
1009 * Dummy VLAN ID should be unique in each connect point.
1010 *
1011 * @param cp connect point
1012 * @param ipAddress IP address
1013 * @return new dummy VLAN ID. Returns VlanId.NONE if no VLAN ID is available.
1014 */
1015 public synchronized VlanId allocateDummyVlanId(ConnectPoint cp, IpAddress ipAddress) {
1016 Set<VlanId> usedVlanId = Sets.union(getVlanPortMap(cp.deviceId()).keySet(),
1017 dummyVlanIdStore.entrySet().stream().filter(entry ->
1018 (entry.getKey()).connectPoint().equals(cp))
1019 .map(Map.Entry::getValue)
1020 .collect(Collectors.toSet()));
1021
1022 VlanId dummyVlanId = IntStream.range(MIN_DUMMY_VLAN_ID, MAX_DUMMY_VLAN_ID).mapToObj(
1023 i -> VlanId.vlanId((short) (i & 0xFFFF))
1024 ).filter(vlanId -> !usedVlanId.contains(vlanId)).findFirst().orElse(VlanId.NONE);
1025
1026 if (!dummyVlanId.equals(VlanId.NONE)) {
1027 this.dummyVlanIdStore.put(new DummyVlanIdStoreKey(cp, ipAddress), dummyVlanId);
1028 log.debug("Dummy VLAN ID {} is allocated to {}, {}", dummyVlanId, cp, ipAddress);
1029 } else {
1030 log.error("Failed to allocate dummy VLAN ID for {}, {}", cp, ipAddress);
1031 }
1032 return dummyVlanId;
1033 }
1034
1035
sanghob35a6192015-04-01 13:05:26 -07001036 private class InternalPacketProcessor implements PacketProcessor {
sanghob35a6192015-04-01 13:05:26 -07001037 @Override
1038 public void process(PacketContext context) {
1039
1040 if (context.isHandled()) {
1041 return;
1042 }
1043
1044 InboundPacket pkt = context.inPacket();
1045 Ethernet ethernet = pkt.parsed();
Pier Luigi7dad71c2017-02-01 13:50:04 -08001046
1047 if (ethernet == null) {
1048 return;
1049 }
1050
Saurav Das7bcbe702017-06-13 15:35:54 -07001051 log.trace("Rcvd pktin from {}: {}", context.inPacket().receivedFrom(),
1052 ethernet);
Pier Ventree0ae7a32016-11-23 09:57:42 -08001053 if (ethernet.getEtherType() == TYPE_ARP) {
Saurav Dasc88d4662017-05-15 15:34:25 -07001054 log.warn("Received unexpected ARP packet on {}",
1055 context.inPacket().receivedFrom());
Saurav Das76ae6812017-03-15 15:15:14 -07001056 log.trace("{}", ethernet);
Pier Ventre968da122016-12-09 17:26:04 -08001057 return;
sanghob35a6192015-04-01 13:05:26 -07001058 } else if (ethernet.getEtherType() == Ethernet.TYPE_IPV4) {
Pier Ventre735b8c82016-12-02 08:16:05 -08001059 IPv4 ipv4Packet = (IPv4) ethernet.getPayload();
1060 //ipHandler.addToPacketBuffer(ipv4Packet);
1061 if (ipv4Packet.getProtocol() == IPv4.PROTOCOL_ICMP) {
1062 icmpHandler.processIcmp(ethernet, pkt.receivedFrom());
sanghob35a6192015-04-01 13:05:26 -07001063 } else {
Charles Chan50035632017-01-13 17:20:44 -08001064 // NOTE: We don't support IP learning at this moment so this
1065 // is not necessary. Also it causes duplication of DHCP packets.
Pier Ventre968da122016-12-09 17:26:04 -08001066 // ipHandler.processPacketIn(ipv4Packet, pkt.receivedFrom());
sanghob35a6192015-04-01 13:05:26 -07001067 }
Pier Ventre10bd8d12016-11-26 21:05:22 -08001068 } else if (ethernet.getEtherType() == Ethernet.TYPE_IPV6) {
1069 IPv6 ipv6Packet = (IPv6) ethernet.getPayload();
Pier Ventre735b8c82016-12-02 08:16:05 -08001070 //ipHandler.addToPacketBuffer(ipv6Packet);
Pier Luigi7dad71c2017-02-01 13:50:04 -08001071 // We deal with the packet only if the packet is a ICMP6 ECHO/REPLY
Pier Ventre735b8c82016-12-02 08:16:05 -08001072 if (ipv6Packet.getNextHeader() == IPv6.PROTOCOL_ICMP6) {
1073 ICMP6 icmp6Packet = (ICMP6) ipv6Packet.getPayload();
1074 if (icmp6Packet.getIcmpType() == ICMP6.ECHO_REQUEST ||
1075 icmp6Packet.getIcmpType() == ICMP6.ECHO_REPLY) {
1076 icmpHandler.processIcmpv6(ethernet, pkt.receivedFrom());
1077 } else {
Saurav Dasc88d4662017-05-15 15:34:25 -07001078 log.trace("Received ICMPv6 0x{} - not handled",
Charles Chan0ed44fb2017-03-13 13:10:30 -07001079 Integer.toHexString(icmp6Packet.getIcmpType() & 0xff));
Pier Ventre735b8c82016-12-02 08:16:05 -08001080 }
1081 } else {
1082 // NOTE: We don't support IP learning at this moment so this
1083 // is not necessary. Also it causes duplication of DHCPv6 packets.
1084 // ipHandler.processPacketIn(ipv6Packet, pkt.receivedFrom());
1085 }
sanghob35a6192015-04-01 13:05:26 -07001086 }
1087 }
1088 }
1089
sanghob35a6192015-04-01 13:05:26 -07001090 private class InternalEventHandler implements Runnable {
Charles Chan9b7217c2018-04-05 16:31:15 -07001091 private Event event;
1092
1093 InternalEventHandler(Event event) {
1094 this.event = event;
1095 }
1096
Srikanth Vavilapalli4db76e32015-04-07 15:12:32 -07001097 @Override
sanghob35a6192015-04-01 13:05:26 -07001098 public void run() {
Charles Chan9b7217c2018-04-05 16:31:15 -07001099 try {
1100 // TODO We should also change SR routing and PW to listen to TopologyEvents
1101 if (event.type() == LinkEvent.Type.LINK_ADDED ||
1102 event.type() == LinkEvent.Type.LINK_UPDATED) {
1103 linkHandler.processLinkAdded((Link) event.subject());
1104 } else if (event.type() == LinkEvent.Type.LINK_REMOVED) {
1105 linkHandler.processLinkRemoved((Link) event.subject());
1106 } else if (event.type() == DeviceEvent.Type.DEVICE_ADDED ||
1107 event.type() == DeviceEvent.Type.DEVICE_AVAILABILITY_CHANGED ||
1108 event.type() == DeviceEvent.Type.DEVICE_UPDATED) {
1109 DeviceId deviceId = ((Device) event.subject()).id();
1110 if (deviceService.isAvailable(deviceId)) {
1111 log.info("** DEVICE UP Processing device event {} "
1112 + "for available device {}",
1113 event.type(), ((Device) event.subject()).id());
1114 processDeviceAdded((Device) event.subject());
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001115 } else {
Charles Chan9b7217c2018-04-05 16:31:15 -07001116 log.info(" ** DEVICE DOWN Processing device event {}"
1117 + " for unavailable device {}",
1118 event.type(), ((Device) event.subject()).id());
1119 processDeviceRemoved((Device) event.subject());
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -07001120 }
Charles Chan9b7217c2018-04-05 16:31:15 -07001121 } else if (event.type() == DeviceEvent.Type.PORT_ADDED) {
1122 // typically these calls come when device is added first time
1123 // so port filtering rules are handled at the device_added event.
1124 // port added calls represent all ports on the device,
1125 // enabled or not.
1126 log.trace("** PORT ADDED {}/{} -> {}",
1127 ((DeviceEvent) event).subject().id(),
1128 ((DeviceEvent) event).port().number(),
1129 event.type());
1130 } else if (event.type() == DeviceEvent.Type.PORT_UPDATED) {
1131 // these calls happen for every subsequent event
1132 // ports enabled, disabled, switch goes away, comes back
1133 log.info("** PORT UPDATED {}/{} -> {}",
1134 event.subject(),
1135 ((DeviceEvent) event).port(),
1136 event.type());
Saurav Das9a554292018-04-27 18:42:30 -07001137 processPortUpdatedInternal(((Device) event.subject()),
Charles Chan9b7217c2018-04-05 16:31:15 -07001138 ((DeviceEvent) event).port());
1139 } else if (event.type() == TopologyEvent.Type.TOPOLOGY_CHANGED) {
1140 // Process topology event, needed for all modules relying on
1141 // topology service for path computation
1142 TopologyEvent topologyEvent = (TopologyEvent) event;
1143 log.info("Processing topology event {}, topology age {}, reasons {}",
1144 event.type(), topologyEvent.subject().time(),
1145 topologyEvent.reasons().size());
1146 topologyHandler.processTopologyChange(topologyEvent.reasons());
1147 } else if (event.type() == HostEvent.Type.HOST_ADDED) {
1148 hostHandler.processHostAddedEvent((HostEvent) event);
1149 } else if (event.type() == HostEvent.Type.HOST_MOVED) {
1150 hostHandler.processHostMovedEvent((HostEvent) event);
1151 routeHandler.processHostMovedEvent((HostEvent) event);
1152 } else if (event.type() == HostEvent.Type.HOST_REMOVED) {
1153 hostHandler.processHostRemovedEvent((HostEvent) event);
1154 } else if (event.type() == HostEvent.Type.HOST_UPDATED) {
1155 hostHandler.processHostUpdatedEvent((HostEvent) event);
1156 } else if (event.type() == RouteEvent.Type.ROUTE_ADDED) {
1157 routeHandler.processRouteAdded((RouteEvent) event);
1158 } else if (event.type() == RouteEvent.Type.ROUTE_UPDATED) {
1159 routeHandler.processRouteUpdated((RouteEvent) event);
1160 } else if (event.type() == RouteEvent.Type.ROUTE_REMOVED) {
1161 routeHandler.processRouteRemoved((RouteEvent) event);
1162 } else if (event.type() == RouteEvent.Type.ALTERNATIVE_ROUTES_CHANGED) {
1163 routeHandler.processAlternativeRoutesChanged((RouteEvent) event);
1164 } else if (event.type() == McastEvent.Type.SOURCES_ADDED ||
1165 event.type() == McastEvent.Type.SOURCES_REMOVED ||
1166 event.type() == McastEvent.Type.SINKS_ADDED ||
1167 event.type() == McastEvent.Type.SINKS_REMOVED ||
1168 event.type() == McastEvent.Type.ROUTE_ADDED ||
1169 event.type() == McastEvent.Type.ROUTE_REMOVED) {
1170 mcastHandler.processMcastEvent((McastEvent) event);
1171 } else if (event.type() == NetworkConfigEvent.Type.CONFIG_ADDED) {
1172 NetworkConfigEvent netcfgEvent = (NetworkConfigEvent) event;
1173 Class configClass = netcfgEvent.configClass();
1174 if (configClass.equals(SegmentRoutingAppConfig.class)) {
1175 appCfgHandler.processAppConfigAdded(netcfgEvent);
1176 log.info("App config event .. configuring network");
1177 cfgListener.configureNetwork();
1178 } else if (configClass.equals(SegmentRoutingDeviceConfig.class)) {
1179 log.info("Segment Routing Device Config added for {}", event.subject());
1180 cfgListener.configureNetwork();
1181 } else if (configClass.equals(XConnectConfig.class)) {
1182 xConnectHandler.processXConnectConfigAdded(netcfgEvent);
1183 } else if (configClass.equals(InterfaceConfig.class)) {
1184 log.info("Interface Config added for {}", event.subject());
1185 cfgListener.configureNetwork();
1186 } else {
1187 log.error("Unhandled config class: {}", configClass);
1188 }
1189 } else if (event.type() == NetworkConfigEvent.Type.CONFIG_UPDATED) {
1190 NetworkConfigEvent netcfgEvent = (NetworkConfigEvent) event;
1191 Class configClass = netcfgEvent.configClass();
1192 if (configClass.equals(SegmentRoutingAppConfig.class)) {
1193 appCfgHandler.processAppConfigUpdated(netcfgEvent);
1194 log.info("App config event .. configuring network");
1195 cfgListener.configureNetwork();
1196 } else if (configClass.equals(SegmentRoutingDeviceConfig.class)) {
1197 log.info("Segment Routing Device Config updated for {}", event.subject());
1198 createOrUpdateDeviceConfiguration();
1199 } else if (configClass.equals(XConnectConfig.class)) {
1200 xConnectHandler.processXConnectConfigUpdated(netcfgEvent);
1201 } else if (configClass.equals(InterfaceConfig.class)) {
1202 log.info("Interface Config updated for {}", event.subject());
1203 createOrUpdateDeviceConfiguration();
1204 updateInterface((InterfaceConfig) netcfgEvent.config().get(),
1205 (InterfaceConfig) netcfgEvent.prevConfig().get());
1206 } else {
1207 log.error("Unhandled config class: {}", configClass);
1208 }
1209 } else if (event.type() == NetworkConfigEvent.Type.CONFIG_REMOVED) {
1210 NetworkConfigEvent netcfgEvent = (NetworkConfigEvent) event;
1211 Class configClass = netcfgEvent.configClass();
1212 if (configClass.equals(SegmentRoutingAppConfig.class)) {
1213 appCfgHandler.processAppConfigRemoved(netcfgEvent);
1214 log.info("App config event .. configuring network");
1215 cfgListener.configureNetwork();
1216 } else if (configClass.equals(SegmentRoutingDeviceConfig.class)) {
1217 // TODO Handle sr device config removal
1218 log.info("SegmentRoutingDeviceConfig removal is not handled in current implementation");
1219 } else if (configClass.equals(XConnectConfig.class)) {
1220 xConnectHandler.processXConnectConfigRemoved(netcfgEvent);
1221 } else if (configClass.equals(InterfaceConfig.class)) {
1222 // TODO Handle interface removal
1223 log.info("InterfaceConfig removal is not handled in current implementation");
1224 } else {
1225 log.error("Unhandled config class: {}", configClass);
1226 }
Saurav Das201762d2018-04-21 17:19:48 -07001227 } else if (event.type() == MastershipEvent.Type.MASTER_CHANGED) {
1228 MastershipEvent me = (MastershipEvent) event;
1229 DeviceId deviceId = me.subject();
1230 Optional<DeviceId> pairDeviceId = getPairDeviceId(deviceId);
1231 log.info(" ** MASTERSHIP CHANGED Invalidating shouldProgram cache"
1232 + " for {}/pair={} due to change", deviceId, pairDeviceId);
1233 defaultRoutingHandler.invalidateShouldProgramCache(deviceId);
1234 pairDeviceId.ifPresent(defaultRoutingHandler::invalidateShouldProgramCache);
1235 defaultRoutingHandler.checkFullRerouteForMasterChange(deviceId, me);
Charles Chan9b7217c2018-04-05 16:31:15 -07001236 } else {
1237 log.warn("Unhandled event type: {}", event.type());
sanghob35a6192015-04-01 13:05:26 -07001238 }
Charles Chan9b7217c2018-04-05 16:31:15 -07001239 } catch (Exception e) {
1240 log.error("SegmentRouting event handler thread thrown an exception: {}",
1241 e.getMessage(), e);
sanghob35a6192015-04-01 13:05:26 -07001242 }
sanghob35a6192015-04-01 13:05:26 -07001243 }
1244 }
1245
Saurav Das45f48152018-01-18 12:07:33 -08001246 void processDeviceAdded(Device device) {
Saurav Dasb5c236e2016-06-07 10:08:06 -07001247 log.info("** DEVICE ADDED with ID {}", device.id());
Charles Chan91ccbf72017-06-27 18:48:32 -07001248
1249 // NOTE: Punt ARP/NDP even when the device is not configured.
1250 // Host learning without network config is required for CORD config generator.
1251 routingRulePopulator.populateIpPunts(device.id());
1252 routingRulePopulator.populateArpNdpPunts(device.id());
1253
Charles Chan0b4e6182015-11-03 10:42:14 -08001254 if (deviceConfiguration == null || !deviceConfiguration.isConfigured(device.id())) {
Saurav Das7bcbe702017-06-13 15:35:54 -07001255 log.warn("Device configuration unavailable. Device {} will be "
1256 + "processed after configuration.", device.id());
Saurav Das2857f382015-11-03 14:39:27 -08001257 return;
1258 }
Charles Chan2199c302016-04-23 17:36:10 -07001259 processDeviceAddedInternal(device.id());
1260 }
1261
1262 private void processDeviceAddedInternal(DeviceId deviceId) {
Saurav Das837e0bb2015-10-30 17:45:38 -07001263 // Irrespective of whether the local is a MASTER or not for this device,
1264 // we need to create a SR-group-handler instance. This is because in a
1265 // multi-instance setup, any instance can initiate forwarding/next-objectives
1266 // for any switch (even if this instance is a SLAVE or not even connected
1267 // to the switch). To handle this, a default-group-handler instance is necessary
1268 // per switch.
Charles Chan2199c302016-04-23 17:36:10 -07001269 log.debug("Current groupHandlerMap devs: {}", groupHandlerMap.keySet());
1270 if (groupHandlerMap.get(deviceId) == null) {
Charles Chan0b4e6182015-11-03 10:42:14 -08001271 DefaultGroupHandler groupHandler;
1272 try {
1273 groupHandler = DefaultGroupHandler.
Charles Chan2199c302016-04-23 17:36:10 -07001274 createGroupHandler(deviceId,
1275 appId,
1276 deviceConfiguration,
1277 linkService,
1278 flowObjectiveService,
1279 this);
Charles Chan0b4e6182015-11-03 10:42:14 -08001280 } catch (DeviceConfigNotFoundException e) {
1281 log.warn(e.getMessage() + " Aborting processDeviceAdded.");
1282 return;
1283 }
Saurav Dasf14d9ef2017-12-05 15:00:23 -08001284 log.debug("updating groupHandlerMap with new grpHdlr for device: {}",
Charles Chan2199c302016-04-23 17:36:10 -07001285 deviceId);
1286 groupHandlerMap.put(deviceId, groupHandler);
Saurav Das2857f382015-11-03 14:39:27 -08001287 }
Saurav Dasb5c236e2016-06-07 10:08:06 -07001288
Charles Chan2199c302016-04-23 17:36:10 -07001289 if (mastershipService.isLocalMaster(deviceId)) {
Saurav Das018605f2017-02-18 14:05:44 -08001290 defaultRoutingHandler.populatePortAddressingRules(deviceId);
Charles Chanfc5c7802016-05-17 13:13:55 -07001291 xConnectHandler.init(deviceId);
Charles Chan2199c302016-04-23 17:36:10 -07001292 DefaultGroupHandler groupHandler = groupHandlerMap.get(deviceId);
Charles Chan59cc16d2017-02-02 16:20:42 -08001293 groupHandler.createGroupsFromVlanConfig();
Charles Chan2199c302016-04-23 17:36:10 -07001294 routingRulePopulator.populateSubnetBroadcastRule(deviceId);
Charles Chanc42e84e2015-10-20 16:24:19 -07001295 }
Charles Chan5270ed02016-01-30 23:22:37 -08001296
Charles Chan03a73e02016-10-24 14:52:01 -07001297 appCfgHandler.init(deviceId);
Charles Chan94549652018-04-29 18:11:37 -07001298 hostEventExecutor.execute(() -> hostHandler.init(deviceId));
1299 routeEventExecutor.execute(() -> routeHandler.init(deviceId));
sanghob35a6192015-04-01 13:05:26 -07001300 }
1301
Saurav Das80980c72016-03-23 11:22:49 -07001302 private void processDeviceRemoved(Device device) {
Saurav Das7bcbe702017-06-13 15:35:54 -07001303 dsNextObjStore.entrySet().stream()
Saurav Das80980c72016-03-23 11:22:49 -07001304 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
Charles Chan47933752017-11-30 15:37:50 -08001305 .forEach(entry -> dsNextObjStore.remove(entry.getKey()));
Charles Chan59cc16d2017-02-02 16:20:42 -08001306 vlanNextObjStore.entrySet().stream()
Saurav Das80980c72016-03-23 11:22:49 -07001307 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
Charles Chan65238242017-06-22 18:03:14 -07001308 .forEach(entry -> vlanNextObjStore.remove(entry.getKey()));
Saurav Das80980c72016-03-23 11:22:49 -07001309 portNextObjStore.entrySet().stream()
1310 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
Charles Chan65238242017-06-22 18:03:14 -07001311 .forEach(entry -> portNextObjStore.remove(entry.getKey()));
Saurav Das45f48152018-01-18 12:07:33 -08001312 linkHandler.processDeviceRemoved(device);
Charles Chaned3742352017-06-15 00:44:51 -07001313
Saurav Dasceccf242017-08-03 18:30:35 -07001314 DefaultGroupHandler gh = groupHandlerMap.remove(device.id());
1315 if (gh != null) {
1316 gh.shutdown();
1317 }
Saurav Dasc88d4662017-05-15 15:34:25 -07001318 // Note that a switch going down is associated with all of its links
1319 // going down as well, but it is treated as a single switch down event
Saurav Das5a356042018-04-06 20:16:01 -07001320 // while the link-downs are ignored. We cannot rely on the ordering of
1321 // events - i.e we cannot expect all link-downs to come before the
1322 // switch down - so we purge all seen-links for the switch before
1323 // handling route-path changes for the switch-down
Saurav Dasc88d4662017-05-15 15:34:25 -07001324 defaultRoutingHandler
Saurav Das604ab3a2018-03-18 21:28:15 -07001325 .populateRoutingRulesForLinkStatusChange(null, null, device.id(), true);
Saurav Dasc568c342018-01-25 09:49:01 -08001326 defaultRoutingHandler.purgeEcmpGraph(device.id());
Charles Chanfc5c7802016-05-17 13:13:55 -07001327 xConnectHandler.removeDevice(device.id());
Saurav Dasa4020382018-02-14 14:14:54 -08001328
1329 // Cleanup all internal groupHandler stores for this device. Should be
1330 // done after all rerouting or rehashing has been completed
1331 groupHandlerMap.entrySet()
1332 .forEach(entry -> entry.getValue().cleanUpForNeighborDown(device.id()));
Saurav Das80980c72016-03-23 11:22:49 -07001333 }
1334
Saurav Dasc6ff8f02018-04-23 18:42:12 -07001335 /**
1336 * Purge the destinationSet nextObjective store of entries with this device
1337 * as key. Erases app-level knowledge of hashed groups in this device.
1338 *
1339 * @param devId the device identifier
1340 */
Saurav Das201762d2018-04-21 17:19:48 -07001341 void purgeHashedNextObjectiveStore(DeviceId devId) {
Saurav Dasc6ff8f02018-04-23 18:42:12 -07001342 log.debug("Purging hashed next-obj store for dev:{}", devId);
Saurav Das201762d2018-04-21 17:19:48 -07001343 dsNextObjStore.entrySet().stream()
1344 .filter(entry -> entry.getKey().deviceId().equals(devId))
1345 .forEach(entry -> dsNextObjStore.remove(entry.getKey()));
1346 }
1347
Saurav Das9a554292018-04-27 18:42:30 -07001348 private void processPortUpdatedInternal(Device device, Port port) {
Saurav Das1a129a02016-11-18 15:21:57 -08001349 if (deviceConfiguration == null || !deviceConfiguration.isConfigured(device.id())) {
1350 log.warn("Device configuration uploading. Not handling port event for"
1351 + "dev: {} port: {}", device.id(), port.number());
1352 return;
1353 }
Saurav Das018605f2017-02-18 14:05:44 -08001354
Saurav Das9a554292018-04-27 18:42:30 -07001355 if (interfaceService.isConfigured(new ConnectPoint(device.id(), port.number()))) {
1356 lastEdgePortEvent = Instant.now();
1357 }
1358
Saurav Das018605f2017-02-18 14:05:44 -08001359 if (!mastershipService.isLocalMaster(device.id())) {
1360 log.debug("Not master for dev:{} .. not handling port updated event"
1361 + "for port {}", device.id(), port.number());
1362 return;
1363 }
Saurav Das9a554292018-04-27 18:42:30 -07001364 processPortUpdated(device.id(), port);
1365 }
Saurav Das018605f2017-02-18 14:05:44 -08001366
Saurav Das9a554292018-04-27 18:42:30 -07001367 /**
1368 * Adds or remove filtering rules for the given switchport. If switchport is
1369 * an edge facing port, additionally handles host probing and broadcast
1370 * rules. Must be called by local master of device.
1371 *
1372 * @param deviceId the device identifier
1373 * @param port the port to update
1374 */
1375 void processPortUpdated(DeviceId deviceId, Port port) {
Saurav Das018605f2017-02-18 14:05:44 -08001376 // first we handle filtering rules associated with the port
1377 if (port.isEnabled()) {
1378 log.info("Switchport {}/{} enabled..programming filters",
Saurav Das9a554292018-04-27 18:42:30 -07001379 deviceId, port.number());
1380 routingRulePopulator.processSinglePortFilters(deviceId, port.number(), true);
Saurav Das018605f2017-02-18 14:05:44 -08001381 } else {
1382 log.info("Switchport {}/{} disabled..removing filters",
Saurav Das9a554292018-04-27 18:42:30 -07001383 deviceId, port.number());
1384 routingRulePopulator.processSinglePortFilters(deviceId, port.number(), false);
Saurav Das018605f2017-02-18 14:05:44 -08001385 }
Saurav Das1a129a02016-11-18 15:21:57 -08001386
1387 // portUpdated calls are for ports that have gone down or up. For switch
1388 // to switch ports, link-events should take care of any re-routing or
1389 // group editing necessary for port up/down. Here we only process edge ports
1390 // that are already configured.
Saurav Das9a554292018-04-27 18:42:30 -07001391 ConnectPoint cp = new ConnectPoint(deviceId, port.number());
Charles Chan971d7ba2018-05-01 11:50:20 -07001392 VlanId untaggedVlan = interfaceService.getUntaggedVlanId(cp);
1393 VlanId nativeVlan = interfaceService.getNativeVlanId(cp);
1394 Set<VlanId> taggedVlans = interfaceService.getTaggedVlanId(cp);
Charles Chan59cc16d2017-02-02 16:20:42 -08001395
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001396 if (untaggedVlan == null && nativeVlan == null && taggedVlans.isEmpty()) {
Saurav Dasc88d4662017-05-15 15:34:25 -07001397 log.debug("Not handling port updated event for non-edge port (unconfigured) "
Saurav Das9a554292018-04-27 18:42:30 -07001398 + "dev/port: {}/{}", deviceId, port.number());
Saurav Das1a129a02016-11-18 15:21:57 -08001399 return;
1400 }
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001401 if (untaggedVlan != null) {
Saurav Das9a554292018-04-27 18:42:30 -07001402 processEdgePort(deviceId, port, untaggedVlan, true);
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001403 }
1404 if (nativeVlan != null) {
Saurav Das9a554292018-04-27 18:42:30 -07001405 processEdgePort(deviceId, port, nativeVlan, true);
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001406 }
1407 if (!taggedVlans.isEmpty()) {
Saurav Das9a554292018-04-27 18:42:30 -07001408 taggedVlans.forEach(tag -> processEdgePort(deviceId, port, tag, false));
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001409 }
Saurav Das1a129a02016-11-18 15:21:57 -08001410 }
1411
Saurav Das9a554292018-04-27 18:42:30 -07001412 private void processEdgePort(DeviceId deviceId, Port port, VlanId vlanId,
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001413 boolean popVlan) {
Saurav Das1a129a02016-11-18 15:21:57 -08001414 boolean portUp = port.isEnabled();
1415 if (portUp) {
Saurav Das9a554292018-04-27 18:42:30 -07001416 log.info("Device:EdgePort {}:{} is enabled in vlan: {}", deviceId,
Charles Chan59cc16d2017-02-02 16:20:42 -08001417 port.number(), vlanId);
Charles Chan94549652018-04-29 18:11:37 -07001418 hostEventExecutor.execute(() -> hostHandler.processPortUp(new ConnectPoint(deviceId, port.number())));
Saurav Das1a129a02016-11-18 15:21:57 -08001419 } else {
Saurav Das9a554292018-04-27 18:42:30 -07001420 log.info("Device:EdgePort {}:{} is disabled in vlan: {}", deviceId,
Charles Chan59cc16d2017-02-02 16:20:42 -08001421 port.number(), vlanId);
Saurav Das1a129a02016-11-18 15:21:57 -08001422 }
1423
Saurav Das9a554292018-04-27 18:42:30 -07001424 DefaultGroupHandler groupHandler = groupHandlerMap.get(deviceId);
sanghob35a6192015-04-01 13:05:26 -07001425 if (groupHandler != null) {
Saurav Dasb0ae6ee2017-03-04 16:08:47 -08001426 groupHandler.processEdgePort(port.number(), vlanId, popVlan, portUp);
Saurav Das1a129a02016-11-18 15:21:57 -08001427 } else {
1428 log.warn("Group handler not found for dev:{}. Not handling edge port"
Saurav Das9a554292018-04-27 18:42:30 -07001429 + " {} event for port:{}", deviceId,
Saurav Das1a129a02016-11-18 15:21:57 -08001430 (portUp) ? "UP" : "DOWN", port.number());
sanghob35a6192015-04-01 13:05:26 -07001431 }
1432 }
sangho1e575652015-05-14 00:39:53 -07001433
Charles Chan27fe1a52017-10-20 16:06:55 -07001434 private void createOrUpdateDeviceConfiguration() {
1435 if (deviceConfiguration == null) {
Saurav Dase7f51012018-02-09 17:26:45 -08001436 log.info("Creating new DeviceConfiguration");
Charles Chan27fe1a52017-10-20 16:06:55 -07001437 deviceConfiguration = new DeviceConfiguration(this);
1438 } else {
Saurav Dase7f51012018-02-09 17:26:45 -08001439 log.info("Updating DeviceConfiguration");
Charles Chan27fe1a52017-10-20 16:06:55 -07001440 deviceConfiguration.updateConfig();
1441 }
1442 }
1443
Charles Chan50bb6ef2018-04-18 18:41:05 -07001444 private void createOrUpdateDefaultRoutingHandler() {
1445 if (defaultRoutingHandler == null) {
1446 log.info("Creating new DefaultRoutingHandler");
1447 defaultRoutingHandler = new DefaultRoutingHandler(this);
1448 } else {
1449 log.info("Updating DefaultRoutingHandler");
1450 defaultRoutingHandler.update(this);
1451 }
1452 }
1453
Pier Ventre10bd8d12016-11-26 21:05:22 -08001454 /**
1455 * Registers the given connect point with the NRS, this is necessary
1456 * to receive the NDP and ARP packets from the NRS.
1457 *
1458 * @param portToRegister connect point to register
1459 */
1460 public void registerConnectPoint(ConnectPoint portToRegister) {
Charles Chan0aa674e2017-02-23 15:44:08 -08001461 neighbourResolutionService.registerNeighbourHandler(
Pier Ventre10bd8d12016-11-26 21:05:22 -08001462 portToRegister,
1463 neighbourHandler,
1464 appId
1465 );
1466 }
1467
Charles Chand6832882015-10-05 17:50:33 -07001468 private class InternalConfigListener implements NetworkConfigListener {
Saurav Das7bcbe702017-06-13 15:35:54 -07001469 private static final long PROGRAM_DELAY = 2;
Charles Chan2c15aca2016-11-09 20:51:44 -08001470 SegmentRoutingManager srManager;
Charles Chan4636be02015-10-07 14:21:45 -07001471
Charles Chane849c192016-01-11 18:28:54 -08001472 /**
1473 * Constructs the internal network config listener.
1474 *
Charles Chan2c15aca2016-11-09 20:51:44 -08001475 * @param srManager segment routing manager
Charles Chane849c192016-01-11 18:28:54 -08001476 */
Charles Chan65238242017-06-22 18:03:14 -07001477 InternalConfigListener(SegmentRoutingManager srManager) {
Charles Chan2c15aca2016-11-09 20:51:44 -08001478 this.srManager = srManager;
Charles Chan4636be02015-10-07 14:21:45 -07001479 }
1480
Charles Chane849c192016-01-11 18:28:54 -08001481 /**
1482 * Reads network config and initializes related data structure accordingly.
1483 */
Charles Chan47933752017-11-30 15:37:50 -08001484 void configureNetwork() {
Saurav Dase7f51012018-02-09 17:26:45 -08001485 log.info("Configuring network ...");
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001486
1487 // Setting handling of network configuration events completable future
1488 // The completable future is needed because of the async behaviour of the configureNetwork,
1489 // listener registration and event arrival
1490 // Enables us to buffer the events and execute them when the configure network is done.
1491 networkConfigCompletion = new CompletableFuture<>();
1492
1493 // add a small delay to absorb multiple network config added notifications
1494 if (!programmingScheduled.get()) {
1495 log.info("Buffering config calls for {} secs", PROGRAM_DELAY);
1496 programmingScheduled.set(true);
1497 mainEventExecutor.schedule(new ConfigChange(), PROGRAM_DELAY, TimeUnit.SECONDS);
1498 }
1499
Charles Chan27fe1a52017-10-20 16:06:55 -07001500 createOrUpdateDeviceConfiguration();
Charles Chan4636be02015-10-07 14:21:45 -07001501
Charles Chan2c15aca2016-11-09 20:51:44 -08001502 arpHandler = new ArpHandler(srManager);
1503 icmpHandler = new IcmpHandler(srManager);
1504 ipHandler = new IpHandler(srManager);
1505 routingRulePopulator = new RoutingRulePopulator(srManager);
Charles Chan50bb6ef2018-04-18 18:41:05 -07001506 createOrUpdateDefaultRoutingHandler();
Charles Chan4636be02015-10-07 14:21:45 -07001507
1508 tunnelHandler = new TunnelHandler(linkService, deviceConfiguration,
1509 groupHandlerMap, tunnelStore);
1510 policyHandler = new PolicyHandler(appId, deviceConfiguration,
1511 flowObjectiveService,
1512 tunnelHandler, policyStore);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001513 networkConfigCompletion.complete(true);
1514
Charles Chan2199c302016-04-23 17:36:10 -07001515 mcastHandler.init();
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001516
Charles Chan4636be02015-10-07 14:21:45 -07001517 }
1518
Charles Chand6832882015-10-05 17:50:33 -07001519 @Override
1520 public void event(NetworkConfigEvent event) {
Charles Chan7a888e82018-03-21 16:57:47 -07001521 checkState(appCfgHandler != null, "NetworkConfigEventHandler is not initialized");
1522 checkState(xConnectHandler != null, "XConnectHandler is not initialized");
1523 switch (event.type()) {
1524 case CONFIG_ADDED:
1525 case CONFIG_UPDATED:
1526 case CONFIG_REMOVED:
1527 log.trace("Schedule Network Config event {}", event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001528 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1529 mainEventExecutor.execute(new InternalEventHandler(event));
1530 } else {
Charles Chan10b2fee2018-04-21 00:44:29 -07001531 queuedEvents.add(event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001532 }
Charles Chan7a888e82018-03-21 16:57:47 -07001533 break;
1534 default:
1535 break;
Charles Chand6832882015-10-05 17:50:33 -07001536 }
1537 }
Saurav Das7bcbe702017-06-13 15:35:54 -07001538
Charles Chan50443e82018-01-03 16:26:32 -08001539 @Override
1540 public boolean isRelevant(NetworkConfigEvent event) {
Saurav Dase7f51012018-02-09 17:26:45 -08001541 if (event.type() == CONFIG_REGISTERED ||
1542 event.type() == CONFIG_UNREGISTERED) {
1543 log.debug("Ignore event {} due to type mismatch", event);
1544 return false;
Charles Chan50443e82018-01-03 16:26:32 -08001545 }
Saurav Dase7f51012018-02-09 17:26:45 -08001546
1547 if (!event.configClass().equals(SegmentRoutingDeviceConfig.class) &&
1548 !event.configClass().equals(SegmentRoutingAppConfig.class) &&
1549 !event.configClass().equals(InterfaceConfig.class) &&
Andreas Pantelopouloscd339592018-02-23 14:18:00 -08001550 !event.configClass().equals(XConnectConfig.class)) {
Saurav Dase7f51012018-02-09 17:26:45 -08001551 log.debug("Ignore event {} due to class mismatch", event);
1552 return false;
1553 }
1554
1555 return true;
Charles Chan50443e82018-01-03 16:26:32 -08001556 }
1557
Saurav Das7bcbe702017-06-13 15:35:54 -07001558 private final class ConfigChange implements Runnable {
1559 @Override
1560 public void run() {
1561 programmingScheduled.set(false);
Saurav Dase7f51012018-02-09 17:26:45 -08001562 log.info("Reacting to config changes after buffer delay");
Saurav Das7bcbe702017-06-13 15:35:54 -07001563 for (Device device : deviceService.getDevices()) {
1564 processDeviceAdded(device);
1565 }
1566 defaultRoutingHandler.startPopulationProcess();
1567 }
1568 }
Charles Chand6832882015-10-05 17:50:33 -07001569 }
Charles Chan68aa62d2015-11-09 16:37:23 -08001570
Charles Chan7a888e82018-03-21 16:57:47 -07001571 private class InternalLinkListener implements LinkListener {
1572 @Override
1573 public void event(LinkEvent event) {
1574 if (event.type() == LinkEvent.Type.LINK_ADDED ||
1575 event.type() == LinkEvent.Type.LINK_UPDATED ||
1576 event.type() == LinkEvent.Type.LINK_REMOVED) {
1577 log.trace("Schedule Link event {}", event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001578 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1579 mainEventExecutor.execute(new InternalEventHandler(event));
1580 } else {
Charles Chan10b2fee2018-04-21 00:44:29 -07001581 queuedEvents.add(event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001582 }
Charles Chan7a888e82018-03-21 16:57:47 -07001583 }
1584 }
1585 }
1586
1587 private class InternalDeviceListener implements DeviceListener {
1588 @Override
1589 public void event(DeviceEvent event) {
1590 switch (event.type()) {
1591 case DEVICE_ADDED:
1592 case PORT_UPDATED:
1593 case PORT_ADDED:
1594 case DEVICE_UPDATED:
1595 case DEVICE_AVAILABILITY_CHANGED:
1596 log.trace("Schedule Device event {}", event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001597 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1598 mainEventExecutor.execute(new InternalEventHandler(event));
1599 } else {
Charles Chan10b2fee2018-04-21 00:44:29 -07001600 queuedEvents.add(event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001601 }
Charles Chan7a888e82018-03-21 16:57:47 -07001602 break;
1603 default:
1604 }
1605 }
1606 }
1607
1608 private class InternalTopologyListener implements TopologyListener {
1609 @Override
1610 public void event(TopologyEvent event) {
1611 switch (event.type()) {
1612 case TOPOLOGY_CHANGED:
1613 log.trace("Schedule Topology event {}", event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001614 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1615 mainEventExecutor.execute(new InternalEventHandler(event));
1616 } else {
Charles Chan10b2fee2018-04-21 00:44:29 -07001617 queuedEvents.add(event);
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001618 }
Charles Chan7a888e82018-03-21 16:57:47 -07001619 break;
1620 default:
1621 }
1622 }
1623 }
1624
Charles Chan68aa62d2015-11-09 16:37:23 -08001625 private class InternalHostListener implements HostListener {
Charles Chan68aa62d2015-11-09 16:37:23 -08001626 @Override
1627 public void event(HostEvent event) {
Charles Chan68aa62d2015-11-09 16:37:23 -08001628 switch (event.type()) {
1629 case HOST_ADDED:
Charles Chan68aa62d2015-11-09 16:37:23 -08001630 case HOST_MOVED:
Charles Chan68aa62d2015-11-09 16:37:23 -08001631 case HOST_REMOVED:
Charles Chan68aa62d2015-11-09 16:37:23 -08001632 case HOST_UPDATED:
Charles Chan7a888e82018-03-21 16:57:47 -07001633 log.trace("Schedule Host event {}", event);
Charles Chan4e49df82018-04-07 11:35:08 -07001634 hostEventExecutor.execute(new InternalEventHandler(event));
Charles Chan68aa62d2015-11-09 16:37:23 -08001635 break;
1636 default:
1637 log.warn("Unsupported host event type: {}", event.type());
1638 break;
1639 }
1640 }
1641 }
1642
Charles Chand55e84d2016-03-30 17:54:24 -07001643 private class InternalMcastListener implements McastListener {
1644 @Override
1645 public void event(McastEvent event) {
1646 switch (event.type()) {
Pier3ee24552018-03-14 16:47:32 -07001647 case SOURCES_ADDED:
1648 case SOURCES_REMOVED:
1649 case SINKS_ADDED:
1650 case SINKS_REMOVED:
Charles Chand55e84d2016-03-30 17:54:24 -07001651 case ROUTE_REMOVED:
Pier96f63cb2018-04-17 16:29:56 +02001652 case ROUTE_ADDED:
Charles Chan7a888e82018-03-21 16:57:47 -07001653 log.trace("Schedule Mcast event {}", event);
Charles Chan4e49df82018-04-07 11:35:08 -07001654 mcastEventExecutor.execute(new InternalEventHandler(event));
Pier Luigi9930da52018-02-02 16:19:11 +01001655 break;
Charles Chand55e84d2016-03-30 17:54:24 -07001656 default:
Charles Chan7a888e82018-03-21 16:57:47 -07001657 log.warn("Unsupported mcast event type: {}", event.type());
Charles Chand55e84d2016-03-30 17:54:24 -07001658 break;
1659 }
1660 }
1661 }
Charles Chan35fd1a72016-06-13 18:54:31 -07001662
Charles Chan03a73e02016-10-24 14:52:01 -07001663 private class InternalRouteEventListener implements RouteListener {
1664 @Override
1665 public void event(RouteEvent event) {
1666 switch (event.type()) {
1667 case ROUTE_ADDED:
Charles Chan03a73e02016-10-24 14:52:01 -07001668 case ROUTE_UPDATED:
Charles Chan03a73e02016-10-24 14:52:01 -07001669 case ROUTE_REMOVED:
Charles Chan2fde6d42017-08-23 14:46:43 -07001670 case ALTERNATIVE_ROUTES_CHANGED:
Charles Chan7a888e82018-03-21 16:57:47 -07001671 log.trace("Schedule Route event {}", event);
Charles Chan4e49df82018-04-07 11:35:08 -07001672 routeEventExecutor.execute(new InternalEventHandler(event));
Charles Chan2fde6d42017-08-23 14:46:43 -07001673 break;
Charles Chan03a73e02016-10-24 14:52:01 -07001674 default:
Charles Chan7a888e82018-03-21 16:57:47 -07001675 log.warn("Unsupported route event type: {}", event.type());
Charles Chan03a73e02016-10-24 14:52:01 -07001676 break;
1677 }
1678 }
1679 }
Saurav Dasc88d4662017-05-15 15:34:25 -07001680
Charles Chan50bb6ef2018-04-18 18:41:05 -07001681 private class InternalMastershipListener implements MastershipListener {
1682 @Override
1683 public void event(MastershipEvent event) {
Charles Chan50bb6ef2018-04-18 18:41:05 -07001684 switch (event.type()) {
Saurav Das201762d2018-04-21 17:19:48 -07001685 case MASTER_CHANGED:
1686 log.debug("Mastership event: {}/{}", event.subject(),
1687 event.roleInfo());
1688 mainEventExecutor.execute(new InternalEventHandler(event));
1689 break;
1690 case BACKUPS_CHANGED:
1691 case SUSPENDED:
1692 default:
1693 log.debug("Mastership event type {} not handled", event.type());
1694 break;
Charles Chan50bb6ef2018-04-18 18:41:05 -07001695 }
1696 }
1697 }
1698
Saurav Das201762d2018-04-21 17:19:48 -07001699 class InternalClusterListener implements ClusterEventListener {
1700 private Instant lastClusterEvent = Instant.EPOCH;
1701
1702 long timeSinceLastClusterEvent() {
1703 return Instant.now().toEpochMilli() - lastClusterEvent.toEpochMilli();
1704 }
1705
1706 @Override
1707 public void event(ClusterEvent event) {
1708 switch (event.type()) {
1709 case INSTANCE_ACTIVATED:
1710 case INSTANCE_ADDED:
1711 case INSTANCE_READY:
1712 log.debug("Cluster event {} ignored", event.type());
1713 break;
1714 case INSTANCE_DEACTIVATED:
1715 case INSTANCE_REMOVED:
1716 log.info("** Cluster event {}", event.type());
1717 lastClusterEvent = Instant.now();
1718 break;
1719 default:
1720 break;
1721 }
1722
1723 }
1724
1725 }
1726
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001727 private void updateInterface(InterfaceConfig conf, InterfaceConfig prevConf) {
1728 try {
1729 Set<Interface> intfs = conf.getInterfaces();
1730 Set<Interface> prevIntfs = prevConf.getInterfaces();
1731
1732 // Now we only handle one interface config at each port.
1733 if (intfs.size() != 1 || prevIntfs.size() != 1) {
1734 log.warn("Interface update aborted - one at a time is allowed, " +
1735 "but {} / {}(prev) received.", intfs.size(), prevIntfs.size());
1736 return;
1737 }
1738
Andrea Campanella6468e1f2018-04-17 12:09:34 +02001739 //The system is in an incoherent state, abort
1740 if (defaultRoutingHandler == null) {
1741 log.warn("Interface update aborted, defaultRoutingHandler is null");
1742 return;
1743 }
1744
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001745 Interface intf = intfs.stream().findFirst().get();
1746 Interface prevIntf = prevIntfs.stream().findFirst().get();
1747
1748 DeviceId deviceId = intf.connectPoint().deviceId();
1749 PortNumber portNum = intf.connectPoint().port();
1750
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001751 removeSubnetConfig(prevIntf.connectPoint(),
1752 Sets.difference(new HashSet<>(prevIntf.ipAddressesList()),
1753 new HashSet<>(intf.ipAddressesList())));
1754
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001755 if (!prevIntf.vlanNative().equals(VlanId.NONE)
1756 && !prevIntf.vlanNative().equals(intf.vlanUntagged())
1757 && !prevIntf.vlanNative().equals(intf.vlanNative())) {
1758 if (intf.vlanTagged().contains(prevIntf.vlanNative())) {
1759 // Update filtering objective and L2IG group bucket
1760 updatePortVlanTreatment(deviceId, portNum, prevIntf.vlanNative(), false);
1761 } else {
1762 // RemoveVlanNative
1763 updateVlanConfigInternal(deviceId, portNum, prevIntf.vlanNative(), true, false);
1764 }
1765 }
1766
1767 if (!prevIntf.vlanUntagged().equals(VlanId.NONE)
1768 && !prevIntf.vlanUntagged().equals(intf.vlanUntagged())
1769 && !prevIntf.vlanUntagged().equals(intf.vlanNative())) {
1770 if (intf.vlanTagged().contains(prevIntf.vlanUntagged())) {
1771 // Update filtering objective and L2IG group bucket
1772 updatePortVlanTreatment(deviceId, portNum, prevIntf.vlanUntagged(), false);
1773 } else {
1774 // RemoveVlanUntagged
1775 updateVlanConfigInternal(deviceId, portNum, prevIntf.vlanUntagged(), true, false);
1776 }
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001777 }
1778
1779 if (!prevIntf.vlanTagged().isEmpty() && !intf.vlanTagged().equals(prevIntf.vlanTagged())) {
1780 // RemoveVlanTagged
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001781 Sets.difference(prevIntf.vlanTagged(), intf.vlanTagged()).stream()
1782 .filter(i -> !intf.vlanUntagged().equals(i))
1783 .filter(i -> !intf.vlanNative().equals(i))
1784 .forEach(vlanId -> updateVlanConfigInternal(
1785 deviceId, portNum, vlanId, false, false));
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001786 }
1787
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001788 if (!intf.vlanNative().equals(VlanId.NONE)
1789 && !prevIntf.vlanNative().equals(intf.vlanNative())
1790 && !prevIntf.vlanUntagged().equals(intf.vlanNative())) {
1791 if (prevIntf.vlanTagged().contains(intf.vlanNative())) {
1792 // Update filtering objective and L2IG group bucket
1793 updatePortVlanTreatment(deviceId, portNum, intf.vlanNative(), true);
1794 } else {
1795 // AddVlanNative
1796 updateVlanConfigInternal(deviceId, portNum, intf.vlanNative(), true, true);
1797 }
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001798 }
1799
1800 if (!intf.vlanTagged().isEmpty() && !intf.vlanTagged().equals(prevIntf.vlanTagged())) {
1801 // AddVlanTagged
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001802 Sets.difference(intf.vlanTagged(), prevIntf.vlanTagged()).stream()
1803 .filter(i -> !prevIntf.vlanUntagged().equals(i))
1804 .filter(i -> !prevIntf.vlanNative().equals(i))
1805 .forEach(vlanId -> updateVlanConfigInternal(
1806 deviceId, portNum, vlanId, false, true)
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001807 );
1808 }
1809
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001810 if (!intf.vlanUntagged().equals(VlanId.NONE)
1811 && !prevIntf.vlanUntagged().equals(intf.vlanUntagged())
1812 && !prevIntf.vlanNative().equals(intf.vlanUntagged())) {
1813 if (prevIntf.vlanTagged().contains(intf.vlanUntagged())) {
1814 // Update filtering objective and L2IG group bucket
1815 updatePortVlanTreatment(deviceId, portNum, intf.vlanUntagged(), true);
1816 } else {
1817 // AddVlanUntagged
1818 updateVlanConfigInternal(deviceId, portNum, intf.vlanUntagged(), true, true);
1819 }
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001820 }
1821 addSubnetConfig(prevIntf.connectPoint(),
1822 Sets.difference(new HashSet<>(intf.ipAddressesList()),
1823 new HashSet<>(prevIntf.ipAddressesList())));
1824 } catch (ConfigException e) {
1825 log.error("Error in configuration");
1826 }
1827 }
1828
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001829 private void updatePortVlanTreatment(DeviceId deviceId, PortNumber portNum,
1830 VlanId vlanId, boolean pushVlan) {
1831 DefaultGroupHandler grpHandler = getGroupHandler(deviceId);
1832 if (grpHandler == null) {
1833 log.warn("Failed to retrieve group handler for device {}", deviceId);
1834 return;
1835 }
1836
1837 // Update filtering objective for a single port
1838 routingRulePopulator.updateSinglePortFilters(deviceId, portNum, !pushVlan, vlanId, false);
1839 routingRulePopulator.updateSinglePortFilters(deviceId, portNum, pushVlan, vlanId, true);
1840
1841 if (getVlanNextObjectiveId(deviceId, vlanId) != -1) {
1842 // Update L2IG bucket of the port
1843 grpHandler.updateL2InterfaceGroupBucket(portNum, vlanId, pushVlan);
1844 } else {
1845 log.warn("Failed to retrieve next objective for vlan {} in device {}:{}", vlanId, deviceId, portNum);
1846 }
1847 }
1848
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001849 private void updateVlanConfigInternal(DeviceId deviceId, PortNumber portNum,
1850 VlanId vlanId, boolean pushVlan, boolean install) {
1851 DefaultGroupHandler grpHandler = getGroupHandler(deviceId);
1852 if (grpHandler == null) {
1853 log.warn("Failed to retrieve group handler for device {}", deviceId);
1854 return;
1855 }
1856
1857 // Update filtering objective for a single port
1858 routingRulePopulator.updateSinglePortFilters(deviceId, portNum, pushVlan, vlanId, install);
1859
1860 // Update filtering objective for multicast ingress port
1861 mcastHandler.updateFilterToDevice(deviceId, portNum, vlanId, install);
1862
1863 int nextId = getVlanNextObjectiveId(deviceId, vlanId);
1864
1865 if (nextId != -1 && !install) {
1866 // Update next objective for a single port as an output port
1867 // Remove a single port from L2FG
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001868 grpHandler.updateGroupFromVlanConfiguration(vlanId, portNum, nextId, install);
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001869 // Remove L2 Bridging rule and L3 Unicast rule to the host
Charles Chan94549652018-04-29 18:11:37 -07001870 hostEventExecutor.execute(() -> hostHandler.processIntfVlanUpdatedEvent(deviceId, portNum,
1871 vlanId, pushVlan, install));
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001872 // Remove broadcast forwarding rule and corresponding L2FG for VLAN
1873 // only if there is no port configured on that VLAN ID
1874 if (!getVlanPortMap(deviceId).containsKey(vlanId)) {
1875 // Remove broadcast forwarding rule for the VLAN
1876 routingRulePopulator.updateSubnetBroadcastRule(deviceId, vlanId, install);
1877 // Remove L2FG for VLAN
1878 grpHandler.removeBcastGroupFromVlan(deviceId, portNum, vlanId, pushVlan);
1879 } else {
1880 // Remove L2IG of the port
1881 grpHandler.removePortNextObjective(deviceId, portNum, vlanId, pushVlan);
1882 }
1883 } else if (install) {
1884 if (nextId != -1) {
1885 // Add a single port to L2FG
Jonghwan Hyunf810a7a2018-02-12 16:43:45 +09001886 grpHandler.updateGroupFromVlanConfiguration(vlanId, portNum, nextId, install);
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001887 } else {
1888 // Create L2FG for VLAN
1889 grpHandler.createBcastGroupFromVlan(vlanId, Collections.singleton(portNum));
1890 routingRulePopulator.updateSubnetBroadcastRule(deviceId, vlanId, install);
1891 }
Charles Chan94549652018-04-29 18:11:37 -07001892 hostEventExecutor.execute(() -> hostHandler.processIntfVlanUpdatedEvent(deviceId, portNum,
1893 vlanId, pushVlan, install));
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001894 } else {
1895 log.warn("Failed to retrieve next objective for vlan {} in device {}:{}", vlanId, deviceId, portNum);
1896 }
1897 }
1898
1899 private void removeSubnetConfig(ConnectPoint cp, Set<InterfaceIpAddress> ipAddressSet) {
1900 Set<IpPrefix> ipPrefixSet = ipAddressSet.stream().
1901 map(InterfaceIpAddress::subnetAddress).collect(Collectors.toSet());
1902
1903 Set<InterfaceIpAddress> deviceIntfIpAddrs = interfaceService.getInterfaces().stream()
1904 .filter(intf -> intf.connectPoint().deviceId().equals(cp.deviceId()))
1905 .filter(intf -> !intf.connectPoint().equals(cp))
1906 .flatMap(intf -> intf.ipAddressesList().stream())
1907 .collect(Collectors.toSet());
1908 // 1. Partial subnet population
1909 // Remove routing rules for removed subnet from previous configuration,
1910 // which does not also exist in other interfaces in the same device
1911 Set<IpPrefix> deviceIpPrefixSet = deviceIntfIpAddrs.stream()
1912 .map(InterfaceIpAddress::subnetAddress)
1913 .collect(Collectors.toSet());
1914
1915 defaultRoutingHandler.revokeSubnet(
1916 ipPrefixSet.stream()
1917 .filter(ipPrefix -> !deviceIpPrefixSet.contains(ipPrefix))
1918 .collect(Collectors.toSet()));
1919
1920 // 2. Interface IP punts
1921 // Remove IP punts for old Intf address
1922 Set<IpAddress> deviceIpAddrs = deviceIntfIpAddrs.stream()
1923 .map(InterfaceIpAddress::ipAddress)
1924 .collect(Collectors.toSet());
1925 ipAddressSet.stream()
1926 .map(InterfaceIpAddress::ipAddress)
1927 .filter(interfaceIpAddress -> !deviceIpAddrs.contains(interfaceIpAddress))
1928 .forEach(interfaceIpAddress ->
1929 routingRulePopulator.revokeSingleIpPunts(
1930 cp.deviceId(), interfaceIpAddress));
1931
1932 // 3. Host unicast routing rule
1933 // Remove unicast routing rule
Charles Chan94549652018-04-29 18:11:37 -07001934 hostEventExecutor.execute(() -> hostHandler.processIntfIpUpdatedEvent(cp, ipPrefixSet, false));
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001935 }
1936
1937 private void addSubnetConfig(ConnectPoint cp, Set<InterfaceIpAddress> ipAddressSet) {
1938 Set<IpPrefix> ipPrefixSet = ipAddressSet.stream().
1939 map(InterfaceIpAddress::subnetAddress).collect(Collectors.toSet());
1940
1941 Set<InterfaceIpAddress> deviceIntfIpAddrs = interfaceService.getInterfaces().stream()
1942 .filter(intf -> intf.connectPoint().deviceId().equals(cp.deviceId()))
1943 .filter(intf -> !intf.connectPoint().equals(cp))
1944 .flatMap(intf -> intf.ipAddressesList().stream())
1945 .collect(Collectors.toSet());
1946 // 1. Partial subnet population
1947 // Add routing rules for newly added subnet, which does not also exist in
1948 // other interfaces in the same device
1949 Set<IpPrefix> deviceIpPrefixSet = deviceIntfIpAddrs.stream()
1950 .map(InterfaceIpAddress::subnetAddress)
1951 .collect(Collectors.toSet());
1952
1953 defaultRoutingHandler.populateSubnet(
1954 Collections.singleton(cp),
1955 ipPrefixSet.stream()
1956 .filter(ipPrefix -> !deviceIpPrefixSet.contains(ipPrefix))
1957 .collect(Collectors.toSet()));
1958
1959 // 2. Interface IP punts
1960 // Add IP punts for new Intf address
1961 Set<IpAddress> deviceIpAddrs = deviceIntfIpAddrs.stream()
1962 .map(InterfaceIpAddress::ipAddress)
1963 .collect(Collectors.toSet());
1964 ipAddressSet.stream()
1965 .map(InterfaceIpAddress::ipAddress)
1966 .filter(interfaceIpAddress -> !deviceIpAddrs.contains(interfaceIpAddress))
1967 .forEach(interfaceIpAddress ->
1968 routingRulePopulator.populateSingleIpPunts(
1969 cp.deviceId(), interfaceIpAddress));
1970
1971 // 3. Host unicast routing rule
1972 // Add unicast routing rule
Charles Chan94549652018-04-29 18:11:37 -07001973 hostEventExecutor.execute(() -> hostHandler.processIntfIpUpdatedEvent(cp, ipPrefixSet, true));
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001974 }
sanghob35a6192015-04-01 13:05:26 -07001975}