blob: 673cfc952b8909c272b60cf7d8106a173fe6fea4 [file] [log] [blame]
sangho80f11cb2015-04-01 13:05:26 -07001/*
Brian O'Connor0947d7e2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
sangho80f11cb2015-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 Hart61e24e12017-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 Chanf0ae41e2017-08-23 13:55:39 -070022import com.google.common.collect.Sets;
sangho80f11cb2015-04-01 13:05:26 -070023import org.onlab.packet.Ethernet;
Pier Ventreb6b81d52016-12-02 08:16:05 -080024import org.onlab.packet.ICMP6;
Charles Chan77277672015-10-20 16:24:19 -070025import org.onlab.packet.IPv4;
Pier Ventreb6a7f342016-11-26 21:05:22 -080026import org.onlab.packet.IPv6;
Jonghwan Hyune5ef7622017-08-25 17:48:36 -070027import org.onlab.packet.IpAddress;
Charles Chan77277672015-10-20 16:24:19 -070028import org.onlab.packet.IpPrefix;
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +000029import org.onlab.packet.MacAddress;
Carmelo Cascone61004262020-01-16 13:36:02 -080030import org.onlab.packet.VlanId;
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -070031import org.onlab.util.KryoNamespace;
Charles Chan873661e2017-11-30 15:37:50 -080032import org.onlab.util.Tools;
Saurav Dasc3604f12016-03-23 11:22:49 -070033import org.onosproject.cfg.ComponentConfigService;
Saurav Das00e553b2018-04-21 17:19:48 -070034import org.onosproject.cluster.ClusterEvent;
35import org.onosproject.cluster.ClusterEventListener;
Pier Luigi580fd8a2018-01-16 10:47:50 +010036import org.onosproject.cluster.ClusterService;
Jonghwan Hyun9aaa34f2018-04-09 09:40:50 -070037import org.onosproject.cluster.LeadershipService;
Pierdb27b8d2018-04-17 16:29:56 +020038import org.onosproject.cluster.NodeId;
sangho80f11cb2015-04-01 13:05:26 -070039import org.onosproject.core.ApplicationId;
40import org.onosproject.core.CoreService;
41import org.onosproject.event.Event;
Charles Chanfbcb8812018-04-18 18:41:05 -070042import org.onosproject.mastership.MastershipEvent;
43import org.onosproject.mastership.MastershipListener;
Jonathan Hart54541d12016-04-12 15:39:44 -070044import org.onosproject.mastership.MastershipService;
Pier1f87aca2018-03-14 16:47:32 -070045import org.onosproject.mcast.api.McastEvent;
46import org.onosproject.mcast.api.McastListener;
47import org.onosproject.mcast.api.MulticastRouteService;
Pier Ventreb6a7f342016-11-26 21:05:22 -080048import org.onosproject.net.ConnectPoint;
Jonathan Hart54541d12016-04-12 15:39:44 -070049import org.onosproject.net.Device;
50import org.onosproject.net.DeviceId;
Charles Chanf0ae41e2017-08-23 13:55:39 -070051import org.onosproject.net.Host;
52import org.onosproject.net.HostId;
Jonathan Hart54541d12016-04-12 15:39:44 -070053import org.onosproject.net.Link;
54import org.onosproject.net.Port;
Charles Chanf4586112015-11-09 16:37:23 -080055import org.onosproject.net.PortNumber;
Jonghwan Hyune5ef7622017-08-25 17:48:36 -070056import org.onosproject.net.config.ConfigException;
Charles Chan72f556a2015-10-05 17:50:33 -070057import org.onosproject.net.config.ConfigFactory;
58import org.onosproject.net.config.NetworkConfigEvent;
Charles Chan72f556a2015-10-05 17:50:33 -070059import org.onosproject.net.config.NetworkConfigListener;
Jonathan Hart54541d12016-04-12 15:39:44 -070060import org.onosproject.net.config.NetworkConfigRegistry;
Ray Milkeyae0068a2017-08-15 11:02:29 -070061import org.onosproject.net.config.basics.InterfaceConfig;
62import org.onosproject.net.config.basics.McastConfig;
Charles Chan72f556a2015-10-05 17:50:33 -070063import org.onosproject.net.config.basics.SubjectFactories;
Saurav Dase6c448a2018-01-18 12:07:33 -080064import org.onosproject.net.device.DeviceAdminService;
Jonathan Hart54541d12016-04-12 15:39:44 -070065import org.onosproject.net.device.DeviceEvent;
66import org.onosproject.net.device.DeviceListener;
67import org.onosproject.net.device.DeviceService;
Charles Chanf4586112015-11-09 16:37:23 -080068import org.onosproject.net.flow.TrafficSelector;
69import org.onosproject.net.flow.TrafficTreatment;
Jonathan Hart54541d12016-04-12 15:39:44 -070070import org.onosproject.net.flowobjective.FlowObjectiveService;
Charles Chan0b1dd7e2018-08-19 19:21:46 -070071import org.onosproject.net.flowobjective.NextObjective;
Charles Chanf4586112015-11-09 16:37:23 -080072import org.onosproject.net.host.HostEvent;
73import org.onosproject.net.host.HostListener;
Charles Chanc6bcdf92018-06-01 16:33:48 -070074import org.onosproject.net.host.HostProbingService;
Pier Ventreb6a7f342016-11-26 21:05:22 -080075import org.onosproject.net.host.HostService;
Jonghwan Hyune5ef7622017-08-25 17:48:36 -070076import org.onosproject.net.host.InterfaceIpAddress;
Pierdb27b8d2018-04-17 16:29:56 +020077import org.onosproject.net.intent.WorkPartitionService;
Ray Milkeyae0068a2017-08-15 11:02:29 -070078import org.onosproject.net.intf.Interface;
79import org.onosproject.net.intf.InterfaceService;
Pier Ventreb6a7f342016-11-26 21:05:22 -080080import org.onosproject.net.link.LinkEvent;
81import org.onosproject.net.link.LinkListener;
82import org.onosproject.net.link.LinkService;
Ray Milkeyae0068a2017-08-15 11:02:29 -070083import org.onosproject.net.neighbour.NeighbourResolutionService;
Pier Ventreb6a7f342016-11-26 21:05:22 -080084import org.onosproject.net.packet.InboundPacket;
85import org.onosproject.net.packet.PacketContext;
86import org.onosproject.net.packet.PacketProcessor;
87import org.onosproject.net.packet.PacketService;
Pier Luigid8a15162018-02-15 16:33:08 +010088import org.onosproject.net.topology.TopologyEvent;
89import org.onosproject.net.topology.TopologyListener;
Charles Chanc91c8782016-03-30 17:54:24 -070090import org.onosproject.net.topology.TopologyService;
Charles Chanf0ae41e2017-08-23 13:55:39 -070091import org.onosproject.routeservice.ResolvedRoute;
Ray Milkeyae0068a2017-08-15 11:02:29 -070092import org.onosproject.routeservice.RouteEvent;
93import org.onosproject.routeservice.RouteListener;
94import org.onosproject.routeservice.RouteService;
Charles Chanc91c8782016-03-30 17:54:24 -070095import org.onosproject.segmentrouting.config.DeviceConfigNotFoundException;
96import org.onosproject.segmentrouting.config.DeviceConfiguration;
Pier Ventre6b19e482016-11-07 16:21:04 -080097import org.onosproject.segmentrouting.config.SegmentRoutingAppConfig;
Ray Milkeyae0068a2017-08-15 11:02:29 -070098import org.onosproject.segmentrouting.config.SegmentRoutingDeviceConfig;
Charles Chanc91c8782016-03-30 17:54:24 -070099import org.onosproject.segmentrouting.grouphandler.DefaultGroupHandler;
Saurav Das261c3002017-06-13 15:35:54 -0700100import org.onosproject.segmentrouting.grouphandler.DestinationSet;
101import org.onosproject.segmentrouting.grouphandler.NextNeighbors;
Harshada Chaundkar9204f312019-07-02 16:01:24 +0000102import org.onosproject.segmentrouting.mcast.McastFilteringObjStoreKey;
Pier Luigi69f774d2018-02-28 12:10:50 +0100103import org.onosproject.segmentrouting.mcast.McastHandler;
104import org.onosproject.segmentrouting.mcast.McastRole;
Piere99511d2018-04-19 16:47:06 +0200105import org.onosproject.segmentrouting.mcast.McastRoleStoreKey;
Ray Milkey2bd24a92018-08-17 14:54:17 -0700106import org.onosproject.segmentrouting.mcast.McastStoreKey;
Charles Chan12a8a842020-02-14 13:23:57 -0800107import org.onosproject.segmentrouting.phasedrecovery.api.PhasedRecoveryService;
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -0700108import org.onosproject.segmentrouting.pwaas.DefaultL2Tunnel;
Andreas Pantelopoulos96851252018-03-20 13:58:49 -0700109import org.onosproject.segmentrouting.pwaas.DefaultL2TunnelDescription;
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800110import org.onosproject.segmentrouting.pwaas.DefaultL2TunnelHandler;
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -0700111import org.onosproject.segmentrouting.pwaas.DefaultL2TunnelPolicy;
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800112import org.onosproject.segmentrouting.pwaas.L2Tunnel;
Ray Milkey2bd24a92018-08-17 14:54:17 -0700113import org.onosproject.segmentrouting.pwaas.L2TunnelDescription;
Ray Milkeyae0068a2017-08-15 11:02:29 -0700114import org.onosproject.segmentrouting.pwaas.L2TunnelHandler;
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800115import org.onosproject.segmentrouting.pwaas.L2TunnelPolicy;
Saurav Das261c3002017-06-13 15:35:54 -0700116import org.onosproject.segmentrouting.storekey.DestinationSetNextObjectiveStoreKey;
Carmelo Cascone61004262020-01-16 13:36:02 -0800117import org.onosproject.segmentrouting.storekey.MacVlanNextObjectiveStoreKey;
Charles Chan1eaf4802016-04-18 13:44:03 -0700118import org.onosproject.segmentrouting.storekey.PortNextObjectiveStoreKey;
Charles Chan10b0fb72017-02-02 16:20:42 -0800119import org.onosproject.segmentrouting.storekey.VlanNextObjectiveStoreKey;
Charles Chan82f19972016-05-17 13:13:55 -0700120import org.onosproject.segmentrouting.storekey.XConnectStoreKey;
Charles Chan8d316332018-06-19 20:31:57 -0700121import org.onosproject.segmentrouting.xconnect.api.XconnectService;
Jonathan Hart54541d12016-04-12 15:39:44 -0700122import org.onosproject.store.serializers.KryoNamespaces;
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700123import org.onosproject.store.service.EventuallyConsistentMap;
124import org.onosproject.store.service.EventuallyConsistentMapBuilder;
125import org.onosproject.store.service.StorageService;
126import org.onosproject.store.service.WallClockTimestamp;
Charles Chan873661e2017-11-30 15:37:50 -0800127import org.osgi.service.component.ComponentContext;
Ray Milkey2bd24a92018-08-17 14:54:17 -0700128import org.osgi.service.component.annotations.Activate;
129import org.osgi.service.component.annotations.Component;
130import org.osgi.service.component.annotations.Deactivate;
131import org.osgi.service.component.annotations.Modified;
132import org.osgi.service.component.annotations.Reference;
133import org.osgi.service.component.annotations.ReferenceCardinality;
Charles Chanb4f9cd12019-02-27 11:46:32 -0800134import org.osgi.service.component.annotations.ReferencePolicy;
sangho80f11cb2015-04-01 13:05:26 -0700135import org.slf4j.Logger;
136import org.slf4j.LoggerFactory;
137
Saurav Das00e553b2018-04-21 17:19:48 -0700138import java.time.Instant;
Andreas Pantelopoulosd988c1a2018-03-15 16:56:09 -0700139import java.util.ArrayList;
Jonathan Hart61e24e12017-11-30 18:23:42 -0800140import java.util.Collections;
Charles Chan873661e2017-11-30 15:37:50 -0800141import java.util.Dictionary;
Jonathan Hart61e24e12017-11-30 18:23:42 -0800142import java.util.HashSet;
143import java.util.List;
144import java.util.Map;
Jonathan Hart61e24e12017-11-30 18:23:42 -0800145import java.util.Optional;
146import java.util.Set;
Andrea Campanella060cad82018-04-17 12:09:34 +0200147import java.util.concurrent.CompletableFuture;
Jonathan Hart61e24e12017-11-30 18:23:42 -0800148import java.util.concurrent.ConcurrentHashMap;
Andrea Campanella060cad82018-04-17 12:09:34 +0200149import java.util.concurrent.CopyOnWriteArrayList;
Charles Chan77cdde42018-05-08 21:35:50 -0700150import java.util.concurrent.ExecutorService;
Jonathan Hart61e24e12017-11-30 18:23:42 -0800151import java.util.concurrent.Executors;
152import java.util.concurrent.ScheduledExecutorService;
Jonathan Hart61e24e12017-11-30 18:23:42 -0800153import java.util.concurrent.TimeUnit;
154import java.util.concurrent.atomic.AtomicBoolean;
155import java.util.stream.Collectors;
sangho80f11cb2015-04-01 13:05:26 -0700156
Charles Chand6d25332016-02-26 22:19:52 -0800157import static com.google.common.base.Preconditions.checkState;
Pier Ventreadb4ae62016-11-23 09:57:42 -0800158import static org.onlab.packet.Ethernet.TYPE_ARP;
Yuta HIGUCHIebee2f12016-07-21 16:54:33 -0700159import static org.onlab.util.Tools.groupedThreads;
Saurav Dase321cff2018-02-09 17:26:45 -0800160import static org.onosproject.net.config.NetworkConfigEvent.Type.CONFIG_REGISTERED;
161import static org.onosproject.net.config.NetworkConfigEvent.Type.CONFIG_UNREGISTERED;
Ray Milkey05edbfc2018-10-23 14:23:16 -0700162import static org.onosproject.segmentrouting.OsgiPropertyConstants.ACTIVE_PROBING_DEFAULT;
163import static org.onosproject.segmentrouting.OsgiPropertyConstants.DEFAULT_INTERNAL_VLAN_DEFAULT;
164import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_ACTIVE_PROBING;
165import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_DEFAULT_INTERNAL_VLAN;
166import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_PW_TRANSPORT_VLAN;
167import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_RESPOND_TO_UNKNOWN_HOSTS;
168import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_ROUTE_DOUBLE_TAGGED_HOSTS;
psneha86e60d32019-03-26 06:31:41 -0400169import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_ROUTE_SIMPLIFICATION;
Ray Milkey05edbfc2018-10-23 14:23:16 -0700170import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_SINGLE_HOMED_DOWN;
Ray Milkeye96d0de2018-11-02 17:12:21 -0700171import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_SYMMETRIC_PROBING;
Ray Milkey05edbfc2018-10-23 14:23:16 -0700172import static org.onosproject.segmentrouting.OsgiPropertyConstants.PW_TRANSPORT_VLAN_DEFAULT;
173import static org.onosproject.segmentrouting.OsgiPropertyConstants.RESPOND_TO_UNKNOWN_HOSTS_DEFAULT;
174import static org.onosproject.segmentrouting.OsgiPropertyConstants.ROUTE_DOUBLE_TAGGED_HOSTS_DEFAULT;
psneha86e60d32019-03-26 06:31:41 -0400175import static org.onosproject.segmentrouting.OsgiPropertyConstants.ROUTE_SIMPLIFICATION_DEFAULT;
Ray Milkey05edbfc2018-10-23 14:23:16 -0700176import static org.onosproject.segmentrouting.OsgiPropertyConstants.SINGLE_HOMED_DOWN_DEFAULT;
Ray Milkeye96d0de2018-11-02 17:12:21 -0700177import static org.onosproject.segmentrouting.OsgiPropertyConstants.SYMMETRIC_PROBING_DEFAULT;
Charles Chand6d25332016-02-26 22:19:52 -0800178
Charles Chanb7f75ac2016-01-11 18:28:54 -0800179/**
180 * Segment routing manager.
181 */
Ray Milkey05edbfc2018-10-23 14:23:16 -0700182@Component(
183 immediate = true,
184 service = SegmentRoutingService.class,
185 property = {
186 PROP_ACTIVE_PROBING + ":Boolean=" + ACTIVE_PROBING_DEFAULT,
187 PROP_SINGLE_HOMED_DOWN + ":Boolean=" + SINGLE_HOMED_DOWN_DEFAULT,
188 PROP_RESPOND_TO_UNKNOWN_HOSTS + ":Boolean=" + RESPOND_TO_UNKNOWN_HOSTS_DEFAULT,
189 PROP_ROUTE_DOUBLE_TAGGED_HOSTS + ":Boolean=" + ROUTE_DOUBLE_TAGGED_HOSTS_DEFAULT,
190 PROP_DEFAULT_INTERNAL_VLAN + ":Integer=" + DEFAULT_INTERNAL_VLAN_DEFAULT,
191 PROP_PW_TRANSPORT_VLAN + ":Integer=" + PW_TRANSPORT_VLAN_DEFAULT,
psneha86e60d32019-03-26 06:31:41 -0400192 PROP_SYMMETRIC_PROBING + ":Boolean=" + SYMMETRIC_PROBING_DEFAULT,
193 PROP_ROUTE_SIMPLIFICATION + ":Boolean=" + ROUTE_SIMPLIFICATION_DEFAULT
Ray Milkey05edbfc2018-10-23 14:23:16 -0700194 }
195)
sangho27462c62015-05-14 00:39:53 -0700196public class SegmentRoutingManager implements SegmentRoutingService {
sangho80f11cb2015-04-01 13:05:26 -0700197
Charles Chan46fdfaf2016-11-09 20:51:44 -0800198 private static Logger log = LoggerFactory.getLogger(SegmentRoutingManager.class);
Charles Chan910be6a2017-08-23 14:46:43 -0700199 private static final String NOT_MASTER = "Current instance is not the master of {}. Ignore.";
sangho80f11cb2015-04-01 13:05:26 -0700200
Ray Milkey2bd24a92018-08-17 14:54:17 -0700201 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chandebfea32016-10-24 14:52:01 -0700202 private ComponentConfigService compCfgService;
sangho80f11cb2015-04-01 13:05:26 -0700203
Ray Milkey2bd24a92018-08-17 14:54:17 -0700204 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chancf789822019-03-22 10:04:27 -0700205 public NeighbourResolutionService neighbourResolutionService;
Pier Ventreb6a7f342016-11-26 21:05:22 -0800206
Ray Milkey2bd24a92018-08-17 14:54:17 -0700207 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Luigi69f774d2018-02-28 12:10:50 +0100208 public CoreService coreService;
sangho80f11cb2015-04-01 13:05:26 -0700209
Ray Milkey2bd24a92018-08-17 14:54:17 -0700210 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chandebfea32016-10-24 14:52:01 -0700211 PacketService packetService;
sangho80f11cb2015-04-01 13:05:26 -0700212
Ray Milkey2bd24a92018-08-17 14:54:17 -0700213 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chandebfea32016-10-24 14:52:01 -0700214 HostService hostService;
sangho80f11cb2015-04-01 13:05:26 -0700215
Ray Milkey2bd24a92018-08-17 14:54:17 -0700216 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chanc6bcdf92018-06-01 16:33:48 -0700217 HostProbingService probingService;
Charles Chan873661e2017-11-30 15:37:50 -0800218
Ray Milkey2bd24a92018-08-17 14:54:17 -0700219 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Luigi69f774d2018-02-28 12:10:50 +0100220 public DeviceService deviceService;
sangho80f11cb2015-04-01 13:05:26 -0700221
Ray Milkey2bd24a92018-08-17 14:54:17 -0700222 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Saurav Dase6c448a2018-01-18 12:07:33 -0800223 DeviceAdminService deviceAdminService;
224
Ray Milkey2bd24a92018-08-17 14:54:17 -0700225 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Ventref3cf5b92016-11-09 14:17:26 -0800226 public FlowObjectiveService flowObjectiveService;
sangho80f11cb2015-04-01 13:05:26 -0700227
Ray Milkey2bd24a92018-08-17 14:54:17 -0700228 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Luigi69f774d2018-02-28 12:10:50 +0100229 public LinkService linkService;
sangho27462c62015-05-14 00:39:53 -0700230
Ray Milkey2bd24a92018-08-17 14:54:17 -0700231 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Ventref3cf5b92016-11-09 14:17:26 -0800232 public MastershipService mastershipService;
Charles Chandebfea32016-10-24 14:52:01 -0700233
Ray Milkey2bd24a92018-08-17 14:54:17 -0700234 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Ventref3cf5b92016-11-09 14:17:26 -0800235 public StorageService storageService;
Charles Chandebfea32016-10-24 14:52:01 -0700236
Ray Milkey2bd24a92018-08-17 14:54:17 -0700237 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Luigi69f774d2018-02-28 12:10:50 +0100238 public MulticastRouteService multicastRouteService;
Charles Chandebfea32016-10-24 14:52:01 -0700239
Ray Milkey2bd24a92018-08-17 14:54:17 -0700240 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chan83163812018-01-09 13:45:07 -0800241 public TopologyService topologyService;
Charles Chandebfea32016-10-24 14:52:01 -0700242
Ray Milkey2bd24a92018-08-17 14:54:17 -0700243 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chan19b70032019-04-17 14:20:26 -0700244 public RouteService routeService;
Charles Chan82ab1932016-01-30 23:22:37 -0800245
Ray Milkey2bd24a92018-08-17 14:54:17 -0700246 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chan46fdfaf2016-11-09 20:51:44 -0800247 public NetworkConfigRegistry cfgService;
Charles Chan82ab1932016-01-30 23:22:37 -0800248
Ray Milkey2bd24a92018-08-17 14:54:17 -0700249 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chan46fdfaf2016-11-09 20:51:44 -0800250 public InterfaceService interfaceService;
251
Ray Milkey2bd24a92018-08-17 14:54:17 -0700252 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Luigi580fd8a2018-01-16 10:47:50 +0100253 public ClusterService clusterService;
254
Ray Milkey2bd24a92018-08-17 14:54:17 -0700255 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pierdb27b8d2018-04-17 16:29:56 +0200256 public WorkPartitionService workPartitionService;
Pier Luigi580fd8a2018-01-16 10:47:50 +0100257
Ray Milkey2bd24a92018-08-17 14:54:17 -0700258 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Jonghwan Hyun9aaa34f2018-04-09 09:40:50 -0700259 public LeadershipService leadershipService;
260
Charles Chanb4f9cd12019-02-27 11:46:32 -0800261 @Reference(cardinality = ReferenceCardinality.OPTIONAL,
Charles Chanb4f9cd12019-02-27 11:46:32 -0800262 policy = ReferencePolicy.DYNAMIC)
Carmelo Cascone61004262020-01-16 13:36:02 -0800263 public volatile XconnectService xconnectService;
Charles Chan8d316332018-06-19 20:31:57 -0700264
Charles Chan12a8a842020-02-14 13:23:57 -0800265 @Reference(cardinality = ReferenceCardinality.OPTIONAL,
266 policy = ReferencePolicy.DYNAMIC)
267 volatile PhasedRecoveryService phasedRecoveryService;
268
Ray Milkey05edbfc2018-10-23 14:23:16 -0700269 /** Enable active probing to discover dual-homed hosts. */
270 boolean activeProbing = ACTIVE_PROBING_DEFAULT;
Charles Chan873661e2017-11-30 15:37:50 -0800271
Ray Milkeye96d0de2018-11-02 17:12:21 -0700272 /** Enable only send probe on the same port number of the pair device. */
273 boolean symmetricProbing = SYMMETRIC_PROBING_DEFAULT;
Mayank Tiwarif7942402018-10-29 18:27:35 -0400274
Ray Milkey05edbfc2018-10-23 14:23:16 -0700275 /** Enable administratively taking down single-homed hosts. */
276 boolean singleHomedDown = SINGLE_HOMED_DOWN_DEFAULT;
Saurav Dasec683dc2018-04-27 18:42:30 -0700277
Ray Milkey05edbfc2018-10-23 14:23:16 -0700278 /** Enable this to respond to ARP/NDP requests from unknown hosts. */
279 boolean respondToUnknownHosts = RESPOND_TO_UNKNOWN_HOSTS_DEFAULT;
Andreas Pantelopoulos6464d862018-06-18 12:50:35 -0700280
Ray Milkey05edbfc2018-10-23 14:23:16 -0700281 /** Program flows and groups to pop and route double tagged hosts. */
282 boolean routeDoubleTaggedHosts = ROUTE_DOUBLE_TAGGED_HOSTS_DEFAULT;
Charles Chan4eb73bb2018-07-19 14:55:31 -0700283
Ray Milkey05edbfc2018-10-23 14:23:16 -0700284 /** internal vlan assigned by default to unconfigured ports. */
285 private int defaultInternalVlan = DEFAULT_INTERNAL_VLAN_DEFAULT;
Saurav Das9bf49582018-08-13 15:34:26 -0700286
Ray Milkey05edbfc2018-10-23 14:23:16 -0700287 /** vlan used for transport of pseudowires between switches. */
288 private int pwTransportVlan = PW_TRANSPORT_VLAN_DEFAULT;
Saurav Das9bf49582018-08-13 15:34:26 -0700289
psneha86e60d32019-03-26 06:31:41 -0400290 /** Enabling route simplification. */
291 boolean routeSimplification = ROUTE_SIMPLIFICATION_DEFAULT;
292
Charles Chandebfea32016-10-24 14:52:01 -0700293 ArpHandler arpHandler = null;
294 IcmpHandler icmpHandler = null;
295 IpHandler ipHandler = null;
296 RoutingRulePopulator routingRulePopulator = null;
Ray Milkeyb85de082017-04-05 09:42:04 -0700297 ApplicationId appId;
298 DeviceConfiguration deviceConfiguration = null;
sangho80f11cb2015-04-01 13:05:26 -0700299
Charles Chandebfea32016-10-24 14:52:01 -0700300 DefaultRoutingHandler defaultRoutingHandler = null;
sangho27462c62015-05-14 00:39:53 -0700301 private TunnelHandler tunnelHandler = null;
302 private PolicyHandler policyHandler = null;
Charles Chan2b078ae2015-10-14 11:24:40 -0700303 private InternalPacketProcessor processor = null;
304 private InternalLinkListener linkListener = null;
305 private InternalDeviceListener deviceListener = null;
Charles Chan82f19972016-05-17 13:13:55 -0700306 private AppConfigHandler appCfgHandler = null;
Saurav Dase6c448a2018-01-18 12:07:33 -0800307 McastHandler mcastHandler = null;
308 HostHandler hostHandler = null;
Pier Ventreb6a7f342016-11-26 21:05:22 -0800309 private RouteHandler routeHandler = null;
Saurav Dase6c448a2018-01-18 12:07:33 -0800310 LinkHandler linkHandler = null;
Pier Ventreb6b81d52016-12-02 08:16:05 -0800311 private SegmentRoutingNeighbourDispatcher neighbourHandler = null;
Andreas Pantelopouloscdbb22c2018-02-23 14:18:00 -0800312 private DefaultL2TunnelHandler l2TunnelHandler = null;
Pier Luigid8a15162018-02-15 16:33:08 +0100313 private TopologyHandler topologyHandler = null;
Charles Chan82ab1932016-01-30 23:22:37 -0800314 private final InternalHostListener hostListener = new InternalHostListener();
Charles Chanc91c8782016-03-30 17:54:24 -0700315 private final InternalConfigListener cfgListener = new InternalConfigListener(this);
316 private final InternalMcastListener mcastListener = new InternalMcastListener();
Charles Chandebfea32016-10-24 14:52:01 -0700317 private final InternalRouteEventListener routeListener = new InternalRouteEventListener();
Pier Luigid8a15162018-02-15 16:33:08 +0100318 private final InternalTopologyListener topologyListener = new InternalTopologyListener();
Charles Chanfbcb8812018-04-18 18:41:05 -0700319 private final InternalMastershipListener mastershipListener = new InternalMastershipListener();
Saurav Das00e553b2018-04-21 17:19:48 -0700320 final InternalClusterListener clusterListener = new InternalClusterListener();
Andrea Campanella060cad82018-04-17 12:09:34 +0200321 //Completable future for network configuration process to buffer config events handling during activation
322 private CompletableFuture<Boolean> networkConfigCompletion = null;
Ray Milkey521e4392018-11-16 15:15:14 -0800323 private final Object networkConfigCompletionLock = new Object();
Charles Chan39b75522018-04-21 00:44:29 -0700324 private List<Event> queuedEvents = new CopyOnWriteArrayList<>();
sangho80f11cb2015-04-01 13:05:26 -0700325
Charles Chan52003922018-04-05 16:31:15 -0700326 // Handles device, link, topology and network config events
Charles Chanfbcb8812018-04-18 18:41:05 -0700327 private ScheduledExecutorService mainEventExecutor;
sangho80f11cb2015-04-01 13:05:26 -0700328
Charles Chanfbcb8812018-04-18 18:41:05 -0700329 // Handles host, route and mcast events respectively
330 private ScheduledExecutorService hostEventExecutor;
331 private ScheduledExecutorService routeEventExecutor;
332 private ScheduledExecutorService mcastEventExecutor;
Charles Chan77cdde42018-05-08 21:35:50 -0700333 private ExecutorService packetExecutor;
Charles Chana7601c92019-01-23 15:03:17 -0800334 ExecutorService neighborExecutor;
Charles Chan52003922018-04-05 16:31:15 -0700335
336 Map<DeviceId, DefaultGroupHandler> groupHandlerMap = new ConcurrentHashMap<>();
Charles Chanb7f75ac2016-01-11 18:28:54 -0800337 /**
Saurav Das261c3002017-06-13 15:35:54 -0700338 * Per device next objective ID store with (device id + destination set) as key.
Charles Chan53de91f2017-08-22 15:07:34 -0700339 * Used to keep track on MPLS group information.
Charles Chanb7f75ac2016-01-11 18:28:54 -0800340 */
Charles Chan873661e2017-11-30 15:37:50 -0800341 private EventuallyConsistentMap<DestinationSetNextObjectiveStoreKey, NextNeighbors>
Saurav Das261c3002017-06-13 15:35:54 -0700342 dsNextObjStore = null;
Charles Chanb7f75ac2016-01-11 18:28:54 -0800343 /**
Charles Chan53de91f2017-08-22 15:07:34 -0700344 * Per device next objective ID store with (device id + vlanid) as key.
345 * Used to keep track on L2 flood group information.
Charles Chanb7f75ac2016-01-11 18:28:54 -0800346 */
Charles Chan873661e2017-11-30 15:37:50 -0800347 private EventuallyConsistentMap<VlanNextObjectiveStoreKey, Integer>
Charles Chan10b0fb72017-02-02 16:20:42 -0800348 vlanNextObjStore = null;
Charles Chanb7f75ac2016-01-11 18:28:54 -0800349 /**
Charles Chan53de91f2017-08-22 15:07:34 -0700350 * Per device next objective ID store with (device id + port + treatment + meta) as key.
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000351 * Used to keep track on L2 interface group and L3 unicast group information for direct hosts.
Charles Chanb7f75ac2016-01-11 18:28:54 -0800352 */
Charles Chan873661e2017-11-30 15:37:50 -0800353 private EventuallyConsistentMap<PortNextObjectiveStoreKey, Integer>
Saurav Das2d94d312015-11-24 23:21:05 -0800354 portNextObjStore = null;
Charles Chan10b0fb72017-02-02 16:20:42 -0800355
Jonghwan Hyun9aaa34f2018-04-09 09:40:50 -0700356 /**
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000357 * Per device next objective ID store with (device id + MAC address + vlan) as key.
358 * Used to keep track of L3 unicast group for indirect hosts.
359 */
360 private EventuallyConsistentMap<MacVlanNextObjectiveStoreKey, Integer>
361 macVlanNextObjStore = null;
362
Saurav Das2d94d312015-11-24 23:21:05 -0800363 private EventuallyConsistentMap<String, Tunnel> tunnelStore = null;
364 private EventuallyConsistentMap<String, Policy> policyStore = null;
sangho4a5c42a2015-05-20 22:16:38 -0700365
Saurav Das261c3002017-06-13 15:35:54 -0700366 private AtomicBoolean programmingScheduled = new AtomicBoolean();
367
Charles Chanc91c8782016-03-30 17:54:24 -0700368 private final ConfigFactory<DeviceId, SegmentRoutingDeviceConfig> deviceConfigFactory =
Charles Chan82f19972016-05-17 13:13:55 -0700369 new ConfigFactory<DeviceId, SegmentRoutingDeviceConfig>(
370 SubjectFactories.DEVICE_SUBJECT_FACTORY,
Charles Chanc91c8782016-03-30 17:54:24 -0700371 SegmentRoutingDeviceConfig.class, "segmentrouting") {
Charles Chan72f556a2015-10-05 17:50:33 -0700372 @Override
Charles Chan82ab1932016-01-30 23:22:37 -0800373 public SegmentRoutingDeviceConfig createConfig() {
374 return new SegmentRoutingDeviceConfig();
Charles Chan72f556a2015-10-05 17:50:33 -0700375 }
376 };
Pier Ventre6b19e482016-11-07 16:21:04 -0800377
Charles Chanc91c8782016-03-30 17:54:24 -0700378 private final ConfigFactory<ApplicationId, SegmentRoutingAppConfig> appConfigFactory =
Charles Chan82f19972016-05-17 13:13:55 -0700379 new ConfigFactory<ApplicationId, SegmentRoutingAppConfig>(
380 SubjectFactories.APP_SUBJECT_FACTORY,
Charles Chanc91c8782016-03-30 17:54:24 -0700381 SegmentRoutingAppConfig.class, "segmentrouting") {
Charles Chan82ab1932016-01-30 23:22:37 -0800382 @Override
383 public SegmentRoutingAppConfig createConfig() {
384 return new SegmentRoutingAppConfig();
385 }
386 };
Pier Ventre6b19e482016-11-07 16:21:04 -0800387
Charles Chanc91c8782016-03-30 17:54:24 -0700388 private ConfigFactory<ApplicationId, McastConfig> mcastConfigFactory =
Charles Chan82f19972016-05-17 13:13:55 -0700389 new ConfigFactory<ApplicationId, McastConfig>(
390 SubjectFactories.APP_SUBJECT_FACTORY,
Charles Chanc91c8782016-03-30 17:54:24 -0700391 McastConfig.class, "multicast") {
392 @Override
393 public McastConfig createConfig() {
394 return new McastConfig();
395 }
396 };
397
Charles Chan1963f4f2016-02-18 14:22:42 -0800398 /**
399 * Segment Routing App ID.
400 */
Charles Chan46fdfaf2016-11-09 20:51:44 -0800401 public static final String APP_NAME = "org.onosproject.segmentrouting";
Saurav Das7c305372015-10-28 12:39:42 -0700402
Jonghwan Hyun9aaa34f2018-04-09 09:40:50 -0700403 /**
404 * Minumum and maximum value of dummy VLAN ID to be allocated.
405 */
406 public static final int MIN_DUMMY_VLAN_ID = 2;
407 public static final int MAX_DUMMY_VLAN_ID = 4093;
408
Charles Chana7601c92019-01-23 15:03:17 -0800409 private static final int DEFAULT_POOL_SIZE = 32;
410
Saurav Dasec683dc2018-04-27 18:42:30 -0700411 Instant lastEdgePortEvent = Instant.EPOCH;
412
sangho80f11cb2015-04-01 13:05:26 -0700413 @Activate
Charles Chan873661e2017-11-30 15:37:50 -0800414 protected void activate(ComponentContext context) {
Charles Chan46fdfaf2016-11-09 20:51:44 -0800415 appId = coreService.registerApplication(APP_NAME);
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700416
Charles Chana7601c92019-01-23 15:03:17 -0800417 mainEventExecutor = Executors.newSingleThreadScheduledExecutor(
418 groupedThreads("onos/sr", "event-main-%d", log));
419 hostEventExecutor = Executors.newSingleThreadScheduledExecutor(
420 groupedThreads("onos/sr", "event-host-%d", log));
421 routeEventExecutor = Executors.newSingleThreadScheduledExecutor(
422 groupedThreads("onos/sr", "event-route-%d", log));
423 mcastEventExecutor = Executors.newSingleThreadScheduledExecutor(
424 groupedThreads("onos/sr", "event-mcast-%d", log));
425 packetExecutor = Executors.newSingleThreadExecutor(groupedThreads("onos/sr", "packet-%d", log));
426 neighborExecutor = Executors.newFixedThreadPool(DEFAULT_POOL_SIZE,
427 groupedThreads("onos/sr", "neighbor-%d", log));
Charles Chanfbcb8812018-04-18 18:41:05 -0700428
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700429 log.debug("Creating EC map nsnextobjectivestore");
Saurav Das261c3002017-06-13 15:35:54 -0700430 EventuallyConsistentMapBuilder<DestinationSetNextObjectiveStoreKey, NextNeighbors>
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700431 nsNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
Saurav Das261c3002017-06-13 15:35:54 -0700432 dsNextObjStore = nsNextObjMapBuilder
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700433 .withName("nsnextobjectivestore")
Jonathan Hart54541d12016-04-12 15:39:44 -0700434 .withSerializer(createSerializer())
Madan Jampani675ae202015-06-24 19:05:56 -0700435 .withTimestampProvider((k, v) -> new WallClockTimestamp())
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700436 .build();
Saurav Das261c3002017-06-13 15:35:54 -0700437 log.trace("Current size {}", dsNextObjStore.size());
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700438
Charles Chan10b0fb72017-02-02 16:20:42 -0800439 log.debug("Creating EC map vlannextobjectivestore");
440 EventuallyConsistentMapBuilder<VlanNextObjectiveStoreKey, Integer>
441 vlanNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
442 vlanNextObjStore = vlanNextObjMapBuilder
443 .withName("vlannextobjectivestore")
Jonathan Hart54541d12016-04-12 15:39:44 -0700444 .withSerializer(createSerializer())
Charles Chan77277672015-10-20 16:24:19 -0700445 .withTimestampProvider((k, v) -> new WallClockTimestamp())
446 .build();
447
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000448 log.debug("Creating EC map macvlannextobjectivestore");
449 EventuallyConsistentMapBuilder<MacVlanNextObjectiveStoreKey, Integer>
450 macVlanNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
451 macVlanNextObjStore = macVlanNextObjMapBuilder
452 .withName("macvlannextobjectivestore")
453 .withSerializer(createSerializer())
454 .withTimestampProvider((k, v) -> new WallClockTimestamp())
455 .build();
456
Saurav Das2d94d312015-11-24 23:21:05 -0800457 log.debug("Creating EC map subnetnextobjectivestore");
458 EventuallyConsistentMapBuilder<PortNextObjectiveStoreKey, Integer>
459 portNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
460 portNextObjStore = portNextObjMapBuilder
461 .withName("portnextobjectivestore")
Jonathan Hart54541d12016-04-12 15:39:44 -0700462 .withSerializer(createSerializer())
Saurav Das2d94d312015-11-24 23:21:05 -0800463 .withTimestampProvider((k, v) -> new WallClockTimestamp())
464 .build();
465
sangho4a5c42a2015-05-20 22:16:38 -0700466 EventuallyConsistentMapBuilder<String, Tunnel> tunnelMapBuilder =
467 storageService.eventuallyConsistentMapBuilder();
sangho4a5c42a2015-05-20 22:16:38 -0700468 tunnelStore = tunnelMapBuilder
469 .withName("tunnelstore")
Jonathan Hart54541d12016-04-12 15:39:44 -0700470 .withSerializer(createSerializer())
Madan Jampani675ae202015-06-24 19:05:56 -0700471 .withTimestampProvider((k, v) -> new WallClockTimestamp())
sangho4a5c42a2015-05-20 22:16:38 -0700472 .build();
473
474 EventuallyConsistentMapBuilder<String, Policy> policyMapBuilder =
475 storageService.eventuallyConsistentMapBuilder();
sangho4a5c42a2015-05-20 22:16:38 -0700476 policyStore = policyMapBuilder
477 .withName("policystore")
Jonathan Hart54541d12016-04-12 15:39:44 -0700478 .withSerializer(createSerializer())
Madan Jampani675ae202015-06-24 19:05:56 -0700479 .withTimestampProvider((k, v) -> new WallClockTimestamp())
sangho4a5c42a2015-05-20 22:16:38 -0700480 .build();
481
Charles Chan97979802020-02-26 15:04:44 -0800482 processor = new InternalPacketProcessor();
483 linkListener = new InternalLinkListener();
484 deviceListener = new InternalDeviceListener();
485 appCfgHandler = new AppConfigHandler(this);
486 mcastHandler = new McastHandler(this);
487 hostHandler = new HostHandler(this);
488 linkHandler = new LinkHandler(this);
489 routeHandler = new RouteHandler(this);
490 neighbourHandler = new SegmentRoutingNeighbourDispatcher(this);
491 l2TunnelHandler = new DefaultL2TunnelHandler(this);
492 topologyHandler = new TopologyHandler(this);
493
Pier Luigib9632ba2017-01-12 18:14:58 -0800494 compCfgService.preSetProperty("org.onosproject.provider.host.impl.HostLocationProvider",
Charles Chan0fa51db2019-04-10 17:12:20 -0700495 "requestInterceptsEnabled", "false", false);
Charles Chanc1909e12017-08-08 15:13:37 -0700496 compCfgService.preSetProperty("org.onosproject.net.neighbour.impl.NeighbourResolutionManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700497 "requestInterceptsEnabled", "false", false);
Charles Chan9597f8d2017-07-24 15:56:10 -0700498 compCfgService.preSetProperty("org.onosproject.dhcprelay.DhcpRelayManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700499 "arpEnabled", "false", false);
Pier Luigi0ebeb312017-02-02 22:31:34 -0800500 compCfgService.preSetProperty("org.onosproject.net.host.impl.HostManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700501 "greedyLearningIpv6", "true", false);
Charles Chancf8ea472017-02-28 15:15:17 -0800502 compCfgService.preSetProperty("org.onosproject.routing.cpr.ControlPlaneRedirectManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700503 "forceUnprovision", "true", false);
Charles Chanc7b73c72017-08-10 16:57:28 -0700504 compCfgService.preSetProperty("org.onosproject.routeservice.store.RouteStoreImpl",
Charles Chan0fa51db2019-04-10 17:12:20 -0700505 "distributed", "true", false);
Charles Chan804772f2017-08-14 11:42:11 -0700506 compCfgService.preSetProperty("org.onosproject.provider.host.impl.HostLocationProvider",
Charles Chan0fa51db2019-04-10 17:12:20 -0700507 "multihomingEnabled", "true", false);
Charles Chan0c9c19f2017-11-29 19:54:20 -0800508 compCfgService.preSetProperty("org.onosproject.provider.lldp.impl.LldpLinkProvider",
Charles Chan0fa51db2019-04-10 17:12:20 -0700509 "staleLinkAge", "15000", false);
Charles Chan0c9c19f2017-11-29 19:54:20 -0800510 compCfgService.preSetProperty("org.onosproject.net.host.impl.HostManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700511 "allowDuplicateIps", "false", false);
Yi Tsenga7da8d82018-08-19 03:09:54 +0800512 // For P4 switches
513 compCfgService.preSetProperty("org.onosproject.net.flow.impl.FlowRuleManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700514 "fallbackFlowPollFrequency", "4", false);
Yi Tsenga7da8d82018-08-19 03:09:54 +0800515 compCfgService.preSetProperty("org.onosproject.net.group.impl.GroupManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700516 "fallbackGroupPollFrequency", "3", false);
Charles Chan873661e2017-11-30 15:37:50 -0800517 compCfgService.registerProperties(getClass());
518 modified(context);
Saurav Dasc3604f12016-03-23 11:22:49 -0700519
Charles Chand6d25332016-02-26 22:19:52 -0800520 cfgService.addListener(cfgListener);
Charles Chanc91c8782016-03-30 17:54:24 -0700521 cfgService.registerConfigFactory(deviceConfigFactory);
522 cfgService.registerConfigFactory(appConfigFactory);
523 cfgService.registerConfigFactory(mcastConfigFactory);
Saurav Dase321cff2018-02-09 17:26:45 -0800524 log.info("Configuring network before adding listeners");
Andrea Campanella060cad82018-04-17 12:09:34 +0200525
Charles Chan6961f222018-01-04 14:26:07 -0800526 cfgListener.configureNetwork();
527
Charles Chan82ab1932016-01-30 23:22:37 -0800528 hostService.addListener(hostListener);
Charles Chan2b078ae2015-10-14 11:24:40 -0700529 packetService.addProcessor(processor, PacketProcessor.director(2));
530 linkService.addListener(linkListener);
531 deviceService.addListener(deviceListener);
Charles Chanc91c8782016-03-30 17:54:24 -0700532 multicastRouteService.addListener(mcastListener);
Charles Chanfd48c222017-06-19 00:43:31 -0700533 routeService.addListener(routeListener);
Pier Luigid8a15162018-02-15 16:33:08 +0100534 topologyService.addListener(topologyListener);
Charles Chanfbcb8812018-04-18 18:41:05 -0700535 mastershipService.addListener(mastershipListener);
Saurav Das00e553b2018-04-21 17:19:48 -0700536 clusterService.addListener(clusterListener);
Charles Chan2b078ae2015-10-14 11:24:40 -0700537
Charles Chanc12c3d02018-03-09 15:53:44 -0800538 linkHandler.init();
Andreas Pantelopoulos75eef062018-01-11 07:53:48 -0800539 l2TunnelHandler.init();
540
Ray Milkey521e4392018-11-16 15:15:14 -0800541 synchronized (networkConfigCompletionLock) {
542 networkConfigCompletion.whenComplete((value, ex) -> {
543 //setting to null for easier fall through
544 networkConfigCompletion = null;
545 //process all queued events
546 queuedEvents.forEach(event -> {
547 mainEventExecutor.execute(new InternalEventHandler(event));
548 });
Andrea Campanella060cad82018-04-17 12:09:34 +0200549 });
Ray Milkey521e4392018-11-16 15:15:14 -0800550 }
Andrea Campanella060cad82018-04-17 12:09:34 +0200551
sangho80f11cb2015-04-01 13:05:26 -0700552 log.info("Started");
553 }
554
Saurav Dase6c448a2018-01-18 12:07:33 -0800555 KryoNamespace.Builder createSerializer() {
Jonathan Hart54541d12016-04-12 15:39:44 -0700556 return new KryoNamespace.Builder()
557 .register(KryoNamespaces.API)
Saurav Das261c3002017-06-13 15:35:54 -0700558 .register(DestinationSetNextObjectiveStoreKey.class,
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800559 VlanNextObjectiveStoreKey.class,
560 DestinationSet.class,
Andreas Pantelopoulos92998c92018-05-29 13:11:14 -0700561 DestinationSet.DestinationSetType.class,
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800562 NextNeighbors.class,
563 Tunnel.class,
564 DefaultTunnel.class,
565 Policy.class,
566 TunnelPolicy.class,
567 Policy.Type.class,
568 PortNextObjectiveStoreKey.class,
569 XConnectStoreKey.class,
570 L2Tunnel.class,
571 L2TunnelPolicy.class,
572 DefaultL2Tunnel.class,
Jonghwan Hyun9aaa34f2018-04-09 09:40:50 -0700573 DefaultL2TunnelPolicy.class,
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000574 MacVlanNextObjectiveStoreKey.class
Jonathan Hart54541d12016-04-12 15:39:44 -0700575 );
576 }
577
sangho80f11cb2015-04-01 13:05:26 -0700578 @Deactivate
579 protected void deactivate() {
Charles Chanfbcb8812018-04-18 18:41:05 -0700580 mainEventExecutor.shutdown();
581 hostEventExecutor.shutdown();
582 routeEventExecutor.shutdown();
583 mcastEventExecutor.shutdown();
Charles Chan77cdde42018-05-08 21:35:50 -0700584 packetExecutor.shutdown();
Charles Chana7601c92019-01-23 15:03:17 -0800585 neighborExecutor.shutdown();
Charles Chanfbcb8812018-04-18 18:41:05 -0700586
Ray Milkeyaee4d3e2018-05-11 09:59:19 -0700587 mainEventExecutor = null;
588 hostEventExecutor = null;
589 routeEventExecutor = null;
590 mcastEventExecutor = null;
591 packetExecutor = null;
Charles Chana7601c92019-01-23 15:03:17 -0800592 neighborExecutor = null;
Ray Milkeyaee4d3e2018-05-11 09:59:19 -0700593
Charles Chan72f556a2015-10-05 17:50:33 -0700594 cfgService.removeListener(cfgListener);
Charles Chanc91c8782016-03-30 17:54:24 -0700595 cfgService.unregisterConfigFactory(deviceConfigFactory);
596 cfgService.unregisterConfigFactory(appConfigFactory);
597 cfgService.unregisterConfigFactory(mcastConfigFactory);
Charles Chan873661e2017-11-30 15:37:50 -0800598 compCfgService.unregisterProperties(getClass(), false);
Charles Chan72f556a2015-10-05 17:50:33 -0700599
Charles Chanfd48c222017-06-19 00:43:31 -0700600 hostService.removeListener(hostListener);
sangho80f11cb2015-04-01 13:05:26 -0700601 packetService.removeProcessor(processor);
Charles Chan2b078ae2015-10-14 11:24:40 -0700602 linkService.removeListener(linkListener);
603 deviceService.removeListener(deviceListener);
Charles Chanc91c8782016-03-30 17:54:24 -0700604 multicastRouteService.removeListener(mcastListener);
Charles Chandebfea32016-10-24 14:52:01 -0700605 routeService.removeListener(routeListener);
Pier Luigid8a15162018-02-15 16:33:08 +0100606 topologyService.removeListener(topologyListener);
Charles Chanfbcb8812018-04-18 18:41:05 -0700607 mastershipService.removeListener(mastershipListener);
Saurav Das00e553b2018-04-21 17:19:48 -0700608 clusterService.removeListener(clusterListener);
Charles Chanc91c8782016-03-30 17:54:24 -0700609
Charles Chan2e71ef32017-02-23 15:44:08 -0800610 neighbourResolutionService.unregisterNeighbourHandlers(appId);
611
sangho80f11cb2015-04-01 13:05:26 -0700612 processor = null;
Charles Chan2b078ae2015-10-14 11:24:40 -0700613 linkListener = null;
Charles Chanc91c8782016-03-30 17:54:24 -0700614 deviceListener = null;
Charles Chan05bb1702018-04-19 13:10:01 -0700615 groupHandlerMap.forEach((k, v) -> v.shutdown());
Charles Chan2b078ae2015-10-14 11:24:40 -0700616 groupHandlerMap.clear();
Saurav Das49368392018-04-23 18:42:12 -0700617 defaultRoutingHandler.shutdown();
Charles Chan2b078ae2015-10-14 11:24:40 -0700618
Saurav Das261c3002017-06-13 15:35:54 -0700619 dsNextObjStore.destroy();
Charles Chan10b0fb72017-02-02 16:20:42 -0800620 vlanNextObjStore.destroy();
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000621 macVlanNextObjStore.destroy();
Charles Chanc91c8782016-03-30 17:54:24 -0700622 portNextObjStore.destroy();
Charles Chanc91c8782016-03-30 17:54:24 -0700623 tunnelStore.destroy();
624 policyStore.destroy();
Pier Luigi35dab3f2018-01-25 16:16:02 +0100625
626 mcastHandler.terminate();
piercf557922019-05-17 20:47:06 +0200627 hostHandler.terminate();
sangho80f11cb2015-04-01 13:05:26 -0700628 log.info("Stopped");
629 }
630
Charles Chan873661e2017-11-30 15:37:50 -0800631 @Modified
632 private void modified(ComponentContext context) {
633 Dictionary<?, ?> properties = context.getProperties();
634 if (properties == null) {
635 return;
636 }
637
Ray Milkey48d10c02018-10-24 10:04:03 -0700638 String strActiveProbing = Tools.get(properties, PROP_ACTIVE_PROBING);
Andreas Pantelopoulos6464d862018-06-18 12:50:35 -0700639 boolean expectActiveProbing = Boolean.parseBoolean(strActiveProbing);
Charles Chan873661e2017-11-30 15:37:50 -0800640 if (expectActiveProbing != activeProbing) {
641 activeProbing = expectActiveProbing;
642 log.info("{} active probing", activeProbing ? "Enabling" : "Disabling");
643 }
Saurav Dasec683dc2018-04-27 18:42:30 -0700644
Ray Milkeye96d0de2018-11-02 17:12:21 -0700645
646 String strSymmetricProbing = Tools.get(properties, PROP_SYMMETRIC_PROBING);
647 boolean expectSymmetricProbing = Boolean.parseBoolean(strSymmetricProbing);
Mayank Tiwarif7942402018-10-29 18:27:35 -0400648 if (expectSymmetricProbing != symmetricProbing) {
649 symmetricProbing = expectSymmetricProbing;
650 log.info("{} symmetric probing", symmetricProbing ? "Enabling" : "Disabling");
651 }
652
Ray Milkey48d10c02018-10-24 10:04:03 -0700653 String strSingleHomedDown = Tools.get(properties, PROP_SINGLE_HOMED_DOWN);
Saurav Dasec683dc2018-04-27 18:42:30 -0700654 boolean expectSingleHomedDown = Boolean.parseBoolean(strSingleHomedDown);
655 if (expectSingleHomedDown != singleHomedDown) {
656 singleHomedDown = expectSingleHomedDown;
657 log.info("{} downing of single homed hosts for lost uplinks",
658 singleHomedDown ? "Enabling" : "Disabling");
659 if (singleHomedDown && linkHandler != null) {
660 hostService.getHosts().forEach(host -> host.locations()
661 .forEach(loc -> {
662 if (interfaceService.isConfigured(loc)) {
663 linkHandler.checkUplinksForHost(loc);
664 }
665 }));
666 } else {
667 log.warn("Disabling singleHomedDown does not re-enable already "
668 + "downed ports for single-homed hosts");
669 }
670 }
Andreas Pantelopoulos6464d862018-06-18 12:50:35 -0700671
Ray Milkey48d10c02018-10-24 10:04:03 -0700672 String strRespondToUnknownHosts = Tools.get(properties, PROP_RESPOND_TO_UNKNOWN_HOSTS);
Andreas Pantelopoulos6464d862018-06-18 12:50:35 -0700673 boolean expectRespondToUnknownHosts = Boolean.parseBoolean(strRespondToUnknownHosts);
674 if (expectRespondToUnknownHosts != respondToUnknownHosts) {
675 respondToUnknownHosts = expectRespondToUnknownHosts;
676 log.info("{} responding to ARPs/NDPs from unknown hosts", respondToUnknownHosts ? "Enabling" : "Disabling");
677 }
Charles Chan4eb73bb2018-07-19 14:55:31 -0700678
Ray Milkey48d10c02018-10-24 10:04:03 -0700679 String strRouteDoubleTaggedHosts = Tools.get(properties, PROP_ROUTE_DOUBLE_TAGGED_HOSTS);
Charles Chanfbca55e2018-07-24 16:40:35 -0700680 boolean expectRouteDoubleTaggedHosts = Boolean.parseBoolean(strRouteDoubleTaggedHosts);
681 if (expectRouteDoubleTaggedHosts != routeDoubleTaggedHosts) {
682 routeDoubleTaggedHosts = expectRouteDoubleTaggedHosts;
683 log.info("{} routing for double tagged hosts", routeDoubleTaggedHosts ? "Enabling" : "Disabling");
Charles Chan4eb73bb2018-07-19 14:55:31 -0700684
Charles Chanfbca55e2018-07-24 16:40:35 -0700685 if (routeDoubleTaggedHosts) {
Charles Chan4eb73bb2018-07-19 14:55:31 -0700686 hostHandler.populateAllDoubleTaggedHost();
687 } else {
688 hostHandler.revokeAllDoubleTaggedHost();
689 }
690 }
Saurav Das9bf49582018-08-13 15:34:26 -0700691
Ray Milkey48d10c02018-10-24 10:04:03 -0700692 String strDefaultInternalVlan = Tools.get(properties, PROP_DEFAULT_INTERNAL_VLAN);
Saurav Das9bf49582018-08-13 15:34:26 -0700693 int defIntVlan = Integer.parseInt(strDefaultInternalVlan);
694 if (defIntVlan != defaultInternalVlan) {
695 if (canUseVlanId(defIntVlan)) {
696 log.warn("Default internal vlan value changed from {} to {}.. "
697 + "re-programming filtering rules, but NOT any groups already "
698 + "created with the former value", defaultInternalVlan, defIntVlan);
699 VlanId oldDefIntVlan = VlanId.vlanId((short) defaultInternalVlan);
700 defaultInternalVlan = defIntVlan;
701 routingRulePopulator
702 .updateSpecialVlanFilteringRules(true, oldDefIntVlan,
703 VlanId.vlanId((short) defIntVlan));
704 } else {
705 log.warn("Cannot change default internal vlan to unusable "
706 + "value {}", defIntVlan);
707 }
708 }
709
Ray Milkey48d10c02018-10-24 10:04:03 -0700710 String strPwTxpVlan = Tools.get(properties, PROP_PW_TRANSPORT_VLAN);
Saurav Das9bf49582018-08-13 15:34:26 -0700711 int pwTxpVlan = Integer.parseInt(strPwTxpVlan);
712 if (pwTxpVlan != pwTransportVlan) {
713 if (canUseVlanId(pwTxpVlan)) {
714 log.warn("Pseudowire transport vlan value changed from {} to {}.. "
715 + "re-programming filtering rules, but NOT any groups already "
716 + "created with the former value", pwTransportVlan,
717 pwTxpVlan);
718 VlanId oldPwTxpVlan = VlanId.vlanId((short) pwTransportVlan);
719 pwTransportVlan = pwTxpVlan;
720 routingRulePopulator
721 .updateSpecialVlanFilteringRules(false, oldPwTxpVlan,
722 VlanId.vlanId((short) pwTxpVlan));
723 } else {
724 log.warn("Cannot change pseudowire transport vlan to unusable "
725 + "value {}", pwTxpVlan);
726 }
727 }
728
psneha86e60d32019-03-26 06:31:41 -0400729 String strRouteSimplification = Tools.get(properties, PROP_ROUTE_SIMPLIFICATION);
730 boolean expectRouteSimplification = Boolean.parseBoolean(strRouteSimplification);
731 if (expectRouteSimplification != routeSimplification) {
732 routeSimplification = expectRouteSimplification;
733 log.info("{} route simplification", routeSimplification ? "Enabling" : "Disabling");
734 }
735
Saurav Das9bf49582018-08-13 15:34:26 -0700736 }
737
738 /**
739 * Returns true if given vlan id is not being used in the system currently,
740 * either as one of the default system wide vlans or as one of the
741 * configured interface vlans.
742 *
743 * @param vlanId given vlan id
744 * @return true if vlan is not currently in use
745 */
746 public boolean canUseVlanId(int vlanId) {
747 if (vlanId >= 4095 || vlanId <= 1) {
748 log.error("Vlan id {} value is not in valid range 2 <--> 4094",
749 vlanId);
750 return false;
751 }
752
753 VlanId vid = VlanId.vlanId((short) vlanId);
754 if (getDefaultInternalVlan().equals(vid) || getPwTransportVlan().equals(vid)) {
755 log.warn("Vlan id {} value is already in use system-wide. "
756 + "DefaultInternalVlan:{} PwTransportVlan:{} ", vlanId,
757 getDefaultInternalVlan(), getPwTransportVlan());
758 return false;
759 }
760
761 if (interfaceService.inUse(vid)) {
762 log.warn("Vlan id {} value is already in use on a configured "
763 + "interface in the system", vlanId);
764 return false;
765 }
766 return true;
767 }
768
769 /**
770 * Returns the VlanId assigned internally by default to unconfigured ports.
771 *
772 * @return the default internal vlan id
773 */
774 public VlanId getDefaultInternalVlan() {
775 return VlanId.vlanId((short) defaultInternalVlan);
776 }
777
778 /**
779 * Returns the Vlan id used to transport pseudowire traffic across the
780 * network.
781 *
782 * @return the pseudowire transport vlan id
783 */
784 public VlanId getPwTransportVlan() {
785 return VlanId.vlanId((short) pwTransportVlan);
Charles Chan873661e2017-11-30 15:37:50 -0800786 }
787
sangho27462c62015-05-14 00:39:53 -0700788 @Override
789 public List<Tunnel> getTunnels() {
790 return tunnelHandler.getTunnels();
791 }
792
793 @Override
sanghobd812f82015-06-29 14:58:47 -0700794 public TunnelHandler.Result createTunnel(Tunnel tunnel) {
795 return tunnelHandler.createTunnel(tunnel);
sangho27462c62015-05-14 00:39:53 -0700796 }
797
798 @Override
sanghobd812f82015-06-29 14:58:47 -0700799 public TunnelHandler.Result removeTunnel(Tunnel tunnel) {
sangho27462c62015-05-14 00:39:53 -0700800 for (Policy policy: policyHandler.getPolicies()) {
801 if (policy.type() == Policy.Type.TUNNEL_FLOW) {
802 TunnelPolicy tunnelPolicy = (TunnelPolicy) policy;
803 if (tunnelPolicy.tunnelId().equals(tunnel.id())) {
804 log.warn("Cannot remove the tunnel used by a policy");
sanghobd812f82015-06-29 14:58:47 -0700805 return TunnelHandler.Result.TUNNEL_IN_USE;
sangho27462c62015-05-14 00:39:53 -0700806 }
807 }
808 }
sanghobd812f82015-06-29 14:58:47 -0700809 return tunnelHandler.removeTunnel(tunnel);
sangho27462c62015-05-14 00:39:53 -0700810 }
811
812 @Override
sanghobd812f82015-06-29 14:58:47 -0700813 public PolicyHandler.Result removePolicy(Policy policy) {
814 return policyHandler.removePolicy(policy);
sangho27462c62015-05-14 00:39:53 -0700815 }
816
817 @Override
sanghobd812f82015-06-29 14:58:47 -0700818 public PolicyHandler.Result createPolicy(Policy policy) {
819 return policyHandler.createPolicy(policy);
sangho27462c62015-05-14 00:39:53 -0700820 }
821
822 @Override
823 public List<Policy> getPolicies() {
824 return policyHandler.getPolicies();
825 }
826
Saurav Das07c74602016-04-27 18:35:50 -0700827 @Override
Andreas Pantelopoulosd988c1a2018-03-15 16:56:09 -0700828 public Set<L2TunnelDescription> getL2TunnelDescriptions(boolean pending) {
829 return l2TunnelHandler.getL2Descriptions(pending);
Andreas Pantelopoulosfc4bc2a2018-03-12 16:30:20 -0700830 }
831
832 @Override
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800833 public List<L2Tunnel> getL2Tunnels() {
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -0700834 return l2TunnelHandler.getL2Tunnels();
835 }
836
837 @Override
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800838 public List<L2TunnelPolicy> getL2Policies() {
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -0700839 return l2TunnelHandler.getL2Policies();
840 }
841
Saurav Dasdebcf882018-04-06 20:16:01 -0700842 @Override
Andreas Pantelopoulos96851252018-03-20 13:58:49 -0700843 @Deprecated
Andreas Pantelopoulosfc4bc2a2018-03-12 16:30:20 -0700844 public L2TunnelHandler.Result addPseudowiresBulk(List<DefaultL2TunnelDescription> bulkPseudowires) {
845
Andreas Pantelopoulosd988c1a2018-03-15 16:56:09 -0700846 // get both added and pending pseudowires
847 List<L2TunnelDescription> pseudowires = new ArrayList<>();
848 pseudowires.addAll(l2TunnelHandler.getL2Descriptions(false));
849 pseudowires.addAll(l2TunnelHandler.getL2Descriptions(true));
Andreas Pantelopoulosfc4bc2a2018-03-12 16:30:20 -0700850 pseudowires.addAll(bulkPseudowires);
Andreas Pantelopoulosd988c1a2018-03-15 16:56:09 -0700851
Andreas Pantelopoulosfc4bc2a2018-03-12 16:30:20 -0700852 Set<L2TunnelDescription> newPseudowires = new HashSet(bulkPseudowires);
853
Andreas Pantelopoulos96851252018-03-20 13:58:49 -0700854 L2TunnelHandler.Result retRes = L2TunnelHandler.Result.SUCCESS;
855 L2TunnelHandler.Result res;
856 for (DefaultL2TunnelDescription pw : bulkPseudowires) {
857 res = addPseudowire(pw);
858 if (res != L2TunnelHandler.Result.SUCCESS) {
859 log.error("Pseudowire with id {} can not be instantiated !", res);
860 retRes = res;
861 }
Andreas Pantelopoulosfc4bc2a2018-03-12 16:30:20 -0700862 }
Andreas Pantelopoulos96851252018-03-20 13:58:49 -0700863
864 return retRes;
Andreas Pantelopoulosfc4bc2a2018-03-12 16:30:20 -0700865 }
866
867 @Override
Andreas Pantelopouloscdbb22c2018-02-23 14:18:00 -0800868 public L2TunnelHandler.Result addPseudowire(L2TunnelDescription l2TunnelDescription) {
Andreas Pantelopoulos87a06102018-03-21 16:44:18 -0700869 return l2TunnelHandler.deployPseudowire(l2TunnelDescription);
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -0700870 }
871
872 @Override
Andreas Pantelopouloscdbb22c2018-02-23 14:18:00 -0800873 public L2TunnelHandler.Result removePseudowire(Integer pwId) {
Andreas Pantelopoulos87a06102018-03-21 16:44:18 -0700874 return l2TunnelHandler.tearDownPseudowire(pwId);
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -0700875 }
876
877 @Override
Saurav Das07c74602016-04-27 18:35:50 -0700878 public void rerouteNetwork() {
879 cfgListener.configureNetwork();
Saurav Das07c74602016-04-27 18:35:50 -0700880 }
881
Charles Chand7844e52016-10-20 17:02:44 -0700882 @Override
Pier Ventreb6a7f342016-11-26 21:05:22 -0800883 public Map<DeviceId, Set<IpPrefix>> getDeviceSubnetMap() {
884 Map<DeviceId, Set<IpPrefix>> deviceSubnetMap = Maps.newHashMap();
Jonathan Hart61e24e12017-11-30 18:23:42 -0800885 deviceConfiguration.getRouters().forEach(device ->
886 deviceSubnetMap.put(device, deviceConfiguration.getSubnets(device)));
Charles Chand7844e52016-10-20 17:02:44 -0700887 return deviceSubnetMap;
888 }
889
Saurav Das62ae6792017-05-15 15:34:25 -0700890
891 @Override
892 public ImmutableMap<DeviceId, EcmpShortestPathGraph> getCurrentEcmpSpg() {
893 if (defaultRoutingHandler != null) {
894 return defaultRoutingHandler.getCurrentEmcpSpgMap();
895 } else {
896 return null;
897 }
898 }
899
900 @Override
Charles Chan0b1dd7e2018-08-19 19:21:46 -0700901 public ImmutableMap<DestinationSetNextObjectiveStoreKey, NextNeighbors> getDstNextObjStore() {
Saurav Das261c3002017-06-13 15:35:54 -0700902 if (dsNextObjStore != null) {
903 return ImmutableMap.copyOf(dsNextObjStore.entrySet());
Saurav Das62ae6792017-05-15 15:34:25 -0700904 } else {
905 return ImmutableMap.of();
906 }
907 }
908
Saurav Dasfbe74572017-08-03 18:30:35 -0700909 @Override
Charles Chan0b1dd7e2018-08-19 19:21:46 -0700910 public ImmutableMap<VlanNextObjectiveStoreKey, Integer> getVlanNextObjStore() {
911 if (vlanNextObjStore != null) {
912 return ImmutableMap.copyOf(vlanNextObjStore.entrySet());
913 } else {
914 return ImmutableMap.of();
915 }
916 }
917
918 @Override
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000919 public ImmutableMap<MacVlanNextObjectiveStoreKey, Integer> getMacVlanNextObjStore() {
920 if (macVlanNextObjStore != null) {
921 return ImmutableMap.copyOf(macVlanNextObjStore.entrySet());
922 } else {
923 return ImmutableMap.of();
924 }
925 }
926
927 @Override
Charles Chan0b1dd7e2018-08-19 19:21:46 -0700928 public ImmutableMap<PortNextObjectiveStoreKey, Integer> getPortNextObjStore() {
929 if (portNextObjStore != null) {
930 return ImmutableMap.copyOf(portNextObjStore.entrySet());
931 } else {
932 return ImmutableMap.of();
933 }
934 }
935
936 @Override
937 public ImmutableMap<String, NextObjective> getPwInitNext() {
938 if (l2TunnelHandler != null) {
939 return l2TunnelHandler.getInitNext();
940 } else {
941 return ImmutableMap.of();
942 }
943 }
944
945 @Override
946 public ImmutableMap<String, NextObjective> getPwTermNext() {
947 if (l2TunnelHandler != null) {
948 return l2TunnelHandler.getTermNext();
949 } else {
950 return ImmutableMap.of();
951 }
952 }
953
954 @Override
955 public void invalidateNextObj(int nextId) {
956 if (dsNextObjStore != null) {
957 dsNextObjStore.entrySet().forEach(e -> {
958 if (e.getValue().nextId() == nextId) {
959 dsNextObjStore.remove(e.getKey());
960 }
961 });
962 }
963 if (vlanNextObjStore != null) {
964 vlanNextObjStore.entrySet().forEach(e -> {
965 if (e.getValue() == nextId) {
966 vlanNextObjStore.remove(e.getKey());
967 }
968 });
969 }
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000970 if (macVlanNextObjStore != null) {
971 macVlanNextObjStore.entrySet().forEach(e -> {
972 if (e.getValue() == nextId) {
973 macVlanNextObjStore.remove(e.getKey());
974 }
975 });
976 }
Charles Chan0b1dd7e2018-08-19 19:21:46 -0700977 if (portNextObjStore != null) {
978 portNextObjStore.entrySet().forEach(e -> {
979 if (e.getValue() == nextId) {
980 portNextObjStore.remove(e.getKey());
981 }
982 });
983 }
984 if (mcastHandler != null) {
985 mcastHandler.removeNextId(nextId);
986 }
987 if (l2TunnelHandler != null) {
988 l2TunnelHandler.removeNextId(nextId);
989 }
990 if (xconnectService != null) {
991 xconnectService.removeNextId(nextId);
992 }
993 }
994
995 @Override
Saurav Dasfbe74572017-08-03 18:30:35 -0700996 public void verifyGroups(DeviceId id) {
997 DefaultGroupHandler gh = groupHandlerMap.get(id);
998 if (gh != null) {
999 gh.triggerBucketCorrector();
1000 }
1001 }
1002
Saurav Das6430f412018-01-25 09:49:01 -08001003 @Override
1004 public ImmutableMap<Link, Boolean> getSeenLinks() {
1005 return linkHandler.getSeenLinks();
1006 }
1007
1008 @Override
1009 public ImmutableMap<DeviceId, Set<PortNumber>> getDownedPortState() {
1010 return linkHandler.getDownedPorts();
1011 }
1012
Pier Luigi0f9635b2018-01-15 18:06:43 +01001013 @Override
1014 public Map<McastStoreKey, Integer> getMcastNextIds(IpAddress mcastIp) {
Charles Chan0b1dd7e2018-08-19 19:21:46 -07001015 return mcastHandler.getNextIds(mcastIp);
Pier Luigi0f9635b2018-01-15 18:06:43 +01001016 }
1017
1018 @Override
Piere99511d2018-04-19 16:47:06 +02001019 public Map<McastRoleStoreKey, McastRole> getMcastRoles(IpAddress mcastIp, ConnectPoint sourcecp) {
1020 return mcastHandler.getMcastRoles(mcastIp, sourcecp);
1021 }
1022
1023 @Override
Pier71c55772018-04-17 17:25:22 +02001024 public Multimap<ConnectPoint, List<ConnectPoint>> getMcastTrees(IpAddress mcastIp,
1025 ConnectPoint sourcecp) {
1026 return mcastHandler.getMcastTrees(mcastIp, sourcecp);
1027 }
1028
1029 @Override
Pierdb27b8d2018-04-17 16:29:56 +02001030 public Map<IpAddress, NodeId> getMcastLeaders(IpAddress mcastIp) {
1031 return mcastHandler.getMcastLeaders(mcastIp);
1032 }
1033
Charles Chanb13e0702018-04-17 18:56:53 -07001034 @Override
Harshada Chaundkar9204f312019-07-02 16:01:24 +00001035 public Map<DeviceId, List<McastFilteringObjStoreKey>> getMcastFilters() {
1036 return mcastHandler.getMcastFilters();
1037 }
1038
1039 @Override
Charles Chanb13e0702018-04-17 18:56:53 -07001040 public Map<Set<DeviceId>, NodeId> getShouldProgram() {
1041 return defaultRoutingHandler == null ? ImmutableMap.of() :
1042 ImmutableMap.copyOf(defaultRoutingHandler.shouldProgram);
1043 }
1044
1045 @Override
1046 public Map<DeviceId, Boolean> getShouldProgramCache() {
1047 return defaultRoutingHandler == null ? ImmutableMap.of() :
1048 ImmutableMap.copyOf(defaultRoutingHandler.shouldProgramCache);
1049 }
1050
Charles Chan8d316332018-06-19 20:31:57 -07001051 @Override
jayakumarthazhath66c9ec12018-10-01 00:51:54 +05301052 public boolean shouldProgram(DeviceId deviceId) {
1053 return defaultRoutingHandler.shouldProgram(deviceId);
1054 }
1055
1056 @Override
Charles Chan12a8a842020-02-14 13:23:57 -08001057 public boolean isRoutingStable() {
1058 return defaultRoutingHandler.isRoutingStable();
1059 }
1060
1061 @Override
1062 public void initHost(DeviceId deviceId) {
1063 hostEventExecutor.execute(() -> hostHandler.init(deviceId));
1064 }
1065
1066 @Override
1067 public void initRoute(DeviceId deviceId) {
1068 routeEventExecutor.execute(() -> routeHandler.init(deviceId));
1069 }
1070
1071 @Override
Ray Milkeyb85de082017-04-05 09:42:04 -07001072 public ApplicationId appId() {
1073 return appId;
1074 }
1075
1076 /**
1077 * Returns the device configuration.
1078 *
1079 * @return device configuration
1080 */
1081 public DeviceConfiguration deviceConfiguration() {
1082 return deviceConfiguration;
1083 }
1084
1085 /**
Saurav Das261c3002017-06-13 15:35:54 -07001086 * Per device next objective ID store with (device id + destination set) as key.
Charles Chan53de91f2017-08-22 15:07:34 -07001087 * Used to keep track on MPLS group information.
Ray Milkeyb85de082017-04-05 09:42:04 -07001088 *
1089 * @return next objective ID store
1090 */
Saurav Das261c3002017-06-13 15:35:54 -07001091 public EventuallyConsistentMap<DestinationSetNextObjectiveStoreKey, NextNeighbors>
1092 dsNextObjStore() {
1093 return dsNextObjStore;
Ray Milkeyb85de082017-04-05 09:42:04 -07001094 }
1095
1096 /**
Charles Chan53de91f2017-08-22 15:07:34 -07001097 * Per device next objective ID store with (device id + vlanid) as key.
1098 * Used to keep track on L2 flood group information.
Ray Milkeyb85de082017-04-05 09:42:04 -07001099 *
1100 * @return vlan next object store
1101 */
1102 public EventuallyConsistentMap<VlanNextObjectiveStoreKey, Integer> vlanNextObjStore() {
1103 return vlanNextObjStore;
1104 }
1105
1106 /**
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001107 * Per device next objective ID store with (device id + MAC address + vlan) as key.
1108 * Used to keep track on L3 Unicast group information for indirect hosts.
1109 *
1110 * @return mac vlan next object store
1111 */
1112 public EventuallyConsistentMap<MacVlanNextObjectiveStoreKey, Integer> macVlanNextObjStore() {
1113 return macVlanNextObjStore;
1114 }
1115
1116 /**
Charles Chan53de91f2017-08-22 15:07:34 -07001117 * Per device next objective ID store with (device id + port + treatment + meta) as key.
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001118 * Used to keep track on L2 interface group and L3 unicast group information for direct hosts.
Ray Milkeyb85de082017-04-05 09:42:04 -07001119 *
1120 * @return port next object store.
1121 */
1122 public EventuallyConsistentMap<PortNextObjectiveStoreKey, Integer> portNextObjStore() {
1123 return portNextObjStore;
1124 }
1125
1126 /**
Saurav Das261c3002017-06-13 15:35:54 -07001127 * Returns the MPLS-ECMP configuration which indicates whether ECMP on
1128 * labeled packets should be programmed or not.
Pier Ventre7a78de22016-10-31 15:00:01 -07001129 *
1130 * @return MPLS-ECMP value
1131 */
1132 public boolean getMplsEcmp() {
1133 SegmentRoutingAppConfig segmentRoutingAppConfig = cfgService
1134 .getConfig(this.appId, SegmentRoutingAppConfig.class);
1135 return segmentRoutingAppConfig != null && segmentRoutingAppConfig.mplsEcmp();
1136 }
1137
1138 /**
sangho80f1f892015-05-19 11:57:42 -07001139 * Returns the tunnel object with the tunnel ID.
1140 *
1141 * @param tunnelId Tunnel ID
1142 * @return Tunnel reference
1143 */
sangho27462c62015-05-14 00:39:53 -07001144 public Tunnel getTunnel(String tunnelId) {
1145 return tunnelHandler.getTunnel(tunnelId);
1146 }
1147
Charles Chan8d316332018-06-19 20:31:57 -07001148 @Override
Pier Luigi69f774d2018-02-28 12:10:50 +01001149 public VlanId getInternalVlanId(ConnectPoint connectPoint) {
Charles Chan098ca202018-05-01 11:50:20 -07001150 VlanId untaggedVlanId = interfaceService.getUntaggedVlanId(connectPoint);
1151 VlanId nativeVlanId = interfaceService.getNativeVlanId(connectPoint);
Charles Chand9265a32017-06-16 15:19:24 -07001152 return untaggedVlanId != null ? untaggedVlanId : nativeVlanId;
1153 }
1154
Charles Chan8d316332018-06-19 20:31:57 -07001155 @Override
1156 public Optional<DeviceId> getPairDeviceId(DeviceId deviceId) {
Charles Chan3ed34d82017-06-22 18:03:14 -07001157 SegmentRoutingDeviceConfig deviceConfig =
1158 cfgService.getConfig(deviceId, SegmentRoutingDeviceConfig.class);
1159 return Optional.ofNullable(deviceConfig).map(SegmentRoutingDeviceConfig::pairDeviceId);
1160 }
Charles Chan8d316332018-06-19 20:31:57 -07001161
1162 @Override
Saurav Dasec683dc2018-04-27 18:42:30 -07001163 public Optional<PortNumber> getPairLocalPort(DeviceId deviceId) {
Charles Chan3ed34d82017-06-22 18:03:14 -07001164 SegmentRoutingDeviceConfig deviceConfig =
1165 cfgService.getConfig(deviceId, SegmentRoutingDeviceConfig.class);
1166 return Optional.ofNullable(deviceConfig).map(SegmentRoutingDeviceConfig::pairLocalPort);
1167 }
1168
Charles Chan12a8a842020-02-14 13:23:57 -08001169 @Override
1170 public Set<PortNumber> getInfraPorts(DeviceId deviceId) {
1171 return deviceService.getPorts(deviceId).stream()
1172 .map(port -> new ConnectPoint(port.element().id(), port.number()))
1173 .filter(cp -> interfaceService.getInterfacesByPort(cp).isEmpty())
1174 .map(ConnectPoint::port)
1175 .collect(Collectors.toSet());
1176 }
1177
1178 @Override
1179 public Set<PortNumber> getEdgePorts(DeviceId deviceId) {
1180 return deviceService.getPorts(deviceId).stream()
1181 .map(port -> new ConnectPoint(port.element().id(), port.number()))
1182 .filter(cp -> !interfaceService.getInterfacesByPort(cp).isEmpty() &&
1183 !cp.port().equals(getPairLocalPort(deviceId).orElse(null)))
1184 .map(ConnectPoint::port)
1185 .collect(Collectors.toSet());
1186 }
1187
Charles Chan3ed34d82017-06-22 18:03:14 -07001188 /**
Charles Chanf0ae41e2017-08-23 13:55:39 -07001189 * Returns locations of given resolved route.
1190 *
1191 * @param resolvedRoute resolved route
1192 * @return locations of nexthop. Might be empty if next hop is not found
1193 */
Charles Chan19b70032019-04-17 14:20:26 -07001194 public Set<ConnectPoint> nextHopLocations(ResolvedRoute resolvedRoute) {
Charles Chanf0ae41e2017-08-23 13:55:39 -07001195 HostId hostId = HostId.hostId(resolvedRoute.nextHopMac(), resolvedRoute.nextHopVlan());
1196 return Optional.ofNullable(hostService.getHost(hostId))
1197 .map(Host::locations).orElse(Sets.newHashSet())
1198 .stream().map(l -> (ConnectPoint) l).collect(Collectors.toSet());
1199 }
1200
1201 /**
Charles Chan90772a72017-02-08 15:52:08 -08001202 * Returns vlan port map of given device.
1203 *
1204 * @param deviceId device id
1205 * @return vlan-port multimap
1206 */
1207 public Multimap<VlanId, PortNumber> getVlanPortMap(DeviceId deviceId) {
1208 HashMultimap<VlanId, PortNumber> vlanPortMap = HashMultimap.create();
1209
1210 interfaceService.getInterfaces().stream()
1211 .filter(intf -> intf.connectPoint().deviceId().equals(deviceId))
1212 .forEach(intf -> {
1213 vlanPortMap.put(intf.vlanUntagged(), intf.connectPoint().port());
Charles Chan3ed34d82017-06-22 18:03:14 -07001214 intf.vlanTagged().forEach(vlanTagged ->
1215 vlanPortMap.put(vlanTagged, intf.connectPoint().port())
1216 );
Charles Chan90772a72017-02-08 15:52:08 -08001217 vlanPortMap.put(intf.vlanNative(), intf.connectPoint().port());
1218 });
1219 vlanPortMap.removeAll(VlanId.NONE);
1220
1221 return vlanPortMap;
1222 }
1223
1224 /**
Charles Chan10b0fb72017-02-02 16:20:42 -08001225 * Returns the next objective ID for the given vlan id. It is expected
Saurav Das2d94d312015-11-24 23:21:05 -08001226 * that the next-objective has been pre-created from configuration.
Charles Chan77277672015-10-20 16:24:19 -07001227 *
1228 * @param deviceId Device ID
Charles Chan10b0fb72017-02-02 16:20:42 -08001229 * @param vlanId VLAN ID
Saurav Das2d94d312015-11-24 23:21:05 -08001230 * @return next objective ID or -1 if it was not found
Charles Chan77277672015-10-20 16:24:19 -07001231 */
Charles Chan3ed34d82017-06-22 18:03:14 -07001232 int getVlanNextObjectiveId(DeviceId deviceId, VlanId vlanId) {
Charles Chan77277672015-10-20 16:24:19 -07001233 if (groupHandlerMap.get(deviceId) != null) {
Charles Chan10b0fb72017-02-02 16:20:42 -08001234 log.trace("getVlanNextObjectiveId query in device {}", deviceId);
1235 return groupHandlerMap.get(deviceId).getVlanNextObjectiveId(vlanId);
Charles Chan77277672015-10-20 16:24:19 -07001236 } else {
Charles Chan10b0fb72017-02-02 16:20:42 -08001237 log.warn("getVlanNextObjectiveId query - groupHandler for "
Saurav Das2d94d312015-11-24 23:21:05 -08001238 + "device {} not found", deviceId);
1239 return -1;
1240 }
1241 }
1242
1243 /**
1244 * Returns the next objective ID for the given portNumber, given the treatment.
1245 * There could be multiple different treatments to the same outport, which
Saurav Das2cb38292017-03-29 19:09:17 -07001246 * would result in different objectives. If the next object does not exist,
1247 * and should be created, a new one is created and its id is returned.
Saurav Das2d94d312015-11-24 23:21:05 -08001248 *
1249 * @param deviceId Device ID
1250 * @param portNum port number on device for which NextObjective is queried
1251 * @param treatment the actions to apply on the packets (should include outport)
1252 * @param meta metadata passed into the creation of a Next Objective if necessary
Saurav Das2cb38292017-03-29 19:09:17 -07001253 * @param createIfMissing true if a next object should be created if not found
Saurav Das07c74602016-04-27 18:35:50 -07001254 * @return next objective ID or -1 if an error occurred during retrieval or creation
Saurav Das2d94d312015-11-24 23:21:05 -08001255 */
1256 public int getPortNextObjectiveId(DeviceId deviceId, PortNumber portNum,
1257 TrafficTreatment treatment,
Saurav Das2cb38292017-03-29 19:09:17 -07001258 TrafficSelector meta,
1259 boolean createIfMissing) {
Saurav Das2d94d312015-11-24 23:21:05 -08001260 DefaultGroupHandler ghdlr = groupHandlerMap.get(deviceId);
1261 if (ghdlr != null) {
Saurav Das2cb38292017-03-29 19:09:17 -07001262 return ghdlr.getPortNextObjectiveId(portNum, treatment, meta, createIfMissing);
Saurav Das2d94d312015-11-24 23:21:05 -08001263 } else {
Charles Chanb7f75ac2016-01-11 18:28:54 -08001264 log.warn("getPortNextObjectiveId query - groupHandler for device {}"
1265 + " not found", deviceId);
1266 return -1;
1267 }
1268 }
1269
Saurav Das62ae6792017-05-15 15:34:25 -07001270 /**
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001271 * Returns the next Objective ID for the given mac and vlan, given the treatment.
1272 * There could be multiple different treatments to the same outport, which
1273 * would result in different objectives. If the next object does not exist,
1274 * and should be created, a new one is created and its id is returned.
1275 *
1276 * @param deviceId Device ID
1277 * @param macAddr mac of host for which Next ID is required.
1278 * @param vlanId vlan of host for which Next ID is required.
Ruchi Sahota07869322019-05-09 17:26:14 -04001279 * @param port port with which to create the Next Obj.
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001280 * @param createIfMissing true if a next object should be created if not found
1281 * @return next objective ID or -1 if an error occurred during retrieval or creation
1282 */
1283 public int getMacVlanNextObjectiveId(DeviceId deviceId, MacAddress macAddr, VlanId vlanId,
Ruchi Sahota07869322019-05-09 17:26:14 -04001284 PortNumber port, boolean createIfMissing) {
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001285 DefaultGroupHandler ghdlr = groupHandlerMap.get(deviceId);
1286 if (ghdlr != null) {
Ruchi Sahota07869322019-05-09 17:26:14 -04001287 return ghdlr.getMacVlanNextObjectiveId(macAddr, vlanId, port, createIfMissing);
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001288 } else {
1289 log.warn("getMacVlanNextObjectiveId query - groupHandler for device {}"
1290 + " not found", deviceId);
1291 return -1;
1292 }
1293 }
1294
1295 /**
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001296 * Updates the next objective for the given nextId .
1297 *
1298 * @param deviceId Device ID
1299 * @param hostMac mac of host for which Next obj is to be updated.
1300 * @param hostVlanId vlan of host for which Next obj is to be updated.
1301 * @param port port with which to update the Next Obj.
1302 * @param nextId of Next Obj which needs to be updated.
1303 */
1304 public void updateMacVlanTreatment(DeviceId deviceId, MacAddress hostMac,
1305 VlanId hostVlanId, PortNumber port, int nextId) {
pierf0e37ec2019-11-26 11:48:48 +01001306 // Check if we are the king of this device
1307 // just one instance should perform this update
1308 if (!defaultRoutingHandler.shouldProgram(deviceId)) {
1309 log.debug("This instance is not handling the routing towards the "
1310 + "device {}", deviceId);
1311 return;
1312 }
1313 // Get the handler and perform the update
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001314 DefaultGroupHandler ghdlr = groupHandlerMap.get(deviceId);
1315 if (ghdlr != null) {
1316 ghdlr.updateL3UcastGroupBucket(hostMac, hostVlanId, port, nextId);
1317 } else {
1318 log.warn("updateL3UcastGroupBucket query - groupHandler for device {}"
1319 + " not found", deviceId);
1320 }
1321 }
1322
1323
1324 /**
Saurav Das62ae6792017-05-15 15:34:25 -07001325 * Returns the group handler object for the specified device id.
1326 *
1327 * @param devId the device identifier
1328 * @return the groupHandler object for the device id, or null if not found
1329 */
Charles Chan3ed34d82017-06-22 18:03:14 -07001330 DefaultGroupHandler getGroupHandler(DeviceId devId) {
Saurav Das62ae6792017-05-15 15:34:25 -07001331 return groupHandlerMap.get(devId);
1332 }
1333
1334 /**
Saurav Dasfbe74572017-08-03 18:30:35 -07001335 * Returns the default routing handler object.
1336 *
1337 * @return the default routing handler object
1338 */
1339 public DefaultRoutingHandler getRoutingHandler() {
1340 return defaultRoutingHandler;
1341 }
1342
sangho80f11cb2015-04-01 13:05:26 -07001343 private class InternalPacketProcessor implements PacketProcessor {
sangho80f11cb2015-04-01 13:05:26 -07001344 @Override
1345 public void process(PacketContext context) {
Charles Chan77cdde42018-05-08 21:35:50 -07001346 packetExecutor.execute(() -> processPacketInternal(context));
1347 }
sangho80f11cb2015-04-01 13:05:26 -07001348
Charles Chan77cdde42018-05-08 21:35:50 -07001349 private void processPacketInternal(PacketContext context) {
sangho80f11cb2015-04-01 13:05:26 -07001350 if (context.isHandled()) {
1351 return;
1352 }
1353
1354 InboundPacket pkt = context.inPacket();
1355 Ethernet ethernet = pkt.parsed();
Pier Luigi37a35432017-02-01 13:50:04 -08001356
1357 if (ethernet == null) {
1358 return;
1359 }
1360
Saurav Das261c3002017-06-13 15:35:54 -07001361 log.trace("Rcvd pktin from {}: {}", context.inPacket().receivedFrom(),
1362 ethernet);
Pier Ventreadb4ae62016-11-23 09:57:42 -08001363 if (ethernet.getEtherType() == TYPE_ARP) {
Saurav Das62ae6792017-05-15 15:34:25 -07001364 log.warn("Received unexpected ARP packet on {}",
1365 context.inPacket().receivedFrom());
Saurav Das368cf212017-03-15 15:15:14 -07001366 log.trace("{}", ethernet);
Pier Ventre6b2c1b32016-12-09 17:26:04 -08001367 return;
sangho80f11cb2015-04-01 13:05:26 -07001368 } else if (ethernet.getEtherType() == Ethernet.TYPE_IPV4) {
Pier Ventreb6b81d52016-12-02 08:16:05 -08001369 IPv4 ipv4Packet = (IPv4) ethernet.getPayload();
1370 //ipHandler.addToPacketBuffer(ipv4Packet);
1371 if (ipv4Packet.getProtocol() == IPv4.PROTOCOL_ICMP) {
1372 icmpHandler.processIcmp(ethernet, pkt.receivedFrom());
sangho80f11cb2015-04-01 13:05:26 -07001373 } else {
Charles Chand041ad82017-01-13 17:20:44 -08001374 // NOTE: We don't support IP learning at this moment so this
1375 // is not necessary. Also it causes duplication of DHCP packets.
Pier Ventre6b2c1b32016-12-09 17:26:04 -08001376 // ipHandler.processPacketIn(ipv4Packet, pkt.receivedFrom());
sangho80f11cb2015-04-01 13:05:26 -07001377 }
Pier Ventreb6a7f342016-11-26 21:05:22 -08001378 } else if (ethernet.getEtherType() == Ethernet.TYPE_IPV6) {
1379 IPv6 ipv6Packet = (IPv6) ethernet.getPayload();
Pier Ventreb6b81d52016-12-02 08:16:05 -08001380 //ipHandler.addToPacketBuffer(ipv6Packet);
Pier Luigi37a35432017-02-01 13:50:04 -08001381 // We deal with the packet only if the packet is a ICMP6 ECHO/REPLY
Pier Ventreb6b81d52016-12-02 08:16:05 -08001382 if (ipv6Packet.getNextHeader() == IPv6.PROTOCOL_ICMP6) {
1383 ICMP6 icmp6Packet = (ICMP6) ipv6Packet.getPayload();
1384 if (icmp6Packet.getIcmpType() == ICMP6.ECHO_REQUEST ||
1385 icmp6Packet.getIcmpType() == ICMP6.ECHO_REPLY) {
1386 icmpHandler.processIcmpv6(ethernet, pkt.receivedFrom());
1387 } else {
Saurav Das62ae6792017-05-15 15:34:25 -07001388 log.trace("Received ICMPv6 0x{} - not handled",
Charles Chand3727b72017-03-13 13:10:30 -07001389 Integer.toHexString(icmp6Packet.getIcmpType() & 0xff));
Pier Ventreb6b81d52016-12-02 08:16:05 -08001390 }
1391 } else {
1392 // NOTE: We don't support IP learning at this moment so this
1393 // is not necessary. Also it causes duplication of DHCPv6 packets.
1394 // ipHandler.processPacketIn(ipv6Packet, pkt.receivedFrom());
1395 }
sangho80f11cb2015-04-01 13:05:26 -07001396 }
1397 }
1398 }
1399
sangho80f11cb2015-04-01 13:05:26 -07001400 private class InternalEventHandler implements Runnable {
Charles Chan52003922018-04-05 16:31:15 -07001401 private Event event;
1402
1403 InternalEventHandler(Event event) {
1404 this.event = event;
1405 }
1406
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -07001407 @Override
sangho80f11cb2015-04-01 13:05:26 -07001408 public void run() {
Charles Chan52003922018-04-05 16:31:15 -07001409 try {
1410 // TODO We should also change SR routing and PW to listen to TopologyEvents
1411 if (event.type() == LinkEvent.Type.LINK_ADDED ||
1412 event.type() == LinkEvent.Type.LINK_UPDATED) {
1413 linkHandler.processLinkAdded((Link) event.subject());
1414 } else if (event.type() == LinkEvent.Type.LINK_REMOVED) {
1415 linkHandler.processLinkRemoved((Link) event.subject());
1416 } else if (event.type() == DeviceEvent.Type.DEVICE_ADDED ||
1417 event.type() == DeviceEvent.Type.DEVICE_AVAILABILITY_CHANGED ||
1418 event.type() == DeviceEvent.Type.DEVICE_UPDATED) {
1419 DeviceId deviceId = ((Device) event.subject()).id();
1420 if (deviceService.isAvailable(deviceId)) {
1421 log.info("** DEVICE UP Processing device event {} "
1422 + "for available device {}",
1423 event.type(), ((Device) event.subject()).id());
1424 processDeviceAdded((Device) event.subject());
Srikanth Vavilapalli64d96c12015-05-14 20:22:47 -07001425 } else {
Charles Chanb8f3af52018-08-29 21:21:51 -07001426 if (event.type() == DeviceEvent.Type.DEVICE_ADDED) {
1427 // Note: For p4 devices, the device will be added but unavailable at the beginning.
1428 // The device will later on being marked as available once the pipeline is pushed
1429 // to the device.
1430 log.info("** DEVICE ADDED but unavailable. Ignore");
1431 return;
1432 }
Charles Chan52003922018-04-05 16:31:15 -07001433 log.info(" ** DEVICE DOWN Processing device event {}"
1434 + " for unavailable device {}",
1435 event.type(), ((Device) event.subject()).id());
1436 processDeviceRemoved((Device) event.subject());
Srikanth Vavilapalli64d96c12015-05-14 20:22:47 -07001437 }
Charles Chan52003922018-04-05 16:31:15 -07001438 } else if (event.type() == DeviceEvent.Type.PORT_ADDED) {
1439 // typically these calls come when device is added first time
1440 // so port filtering rules are handled at the device_added event.
1441 // port added calls represent all ports on the device,
1442 // enabled or not.
1443 log.trace("** PORT ADDED {}/{} -> {}",
1444 ((DeviceEvent) event).subject().id(),
1445 ((DeviceEvent) event).port().number(),
1446 event.type());
1447 } else if (event.type() == DeviceEvent.Type.PORT_UPDATED) {
1448 // these calls happen for every subsequent event
1449 // ports enabled, disabled, switch goes away, comes back
1450 log.info("** PORT UPDATED {}/{} -> {}",
1451 event.subject(),
1452 ((DeviceEvent) event).port(),
1453 event.type());
Saurav Dasec683dc2018-04-27 18:42:30 -07001454 processPortUpdatedInternal(((Device) event.subject()),
Charles Chan52003922018-04-05 16:31:15 -07001455 ((DeviceEvent) event).port());
Harshada Chaundkar9204f312019-07-02 16:01:24 +00001456 mcastHandler.processPortUpdate(((Device) event.subject()),
1457 ((DeviceEvent) event).port());
Charles Chan52003922018-04-05 16:31:15 -07001458 } else if (event.type() == TopologyEvent.Type.TOPOLOGY_CHANGED) {
1459 // Process topology event, needed for all modules relying on
1460 // topology service for path computation
1461 TopologyEvent topologyEvent = (TopologyEvent) event;
1462 log.info("Processing topology event {}, topology age {}, reasons {}",
1463 event.type(), topologyEvent.subject().time(),
1464 topologyEvent.reasons().size());
1465 topologyHandler.processTopologyChange(topologyEvent.reasons());
1466 } else if (event.type() == HostEvent.Type.HOST_ADDED) {
1467 hostHandler.processHostAddedEvent((HostEvent) event);
1468 } else if (event.type() == HostEvent.Type.HOST_MOVED) {
1469 hostHandler.processHostMovedEvent((HostEvent) event);
1470 routeHandler.processHostMovedEvent((HostEvent) event);
Charles Chana2ccb582019-11-25 09:47:22 -08001471 } else if (event.type() == HostEvent.Type.HOST_AUX_MOVED) {
1472 hostHandler.processHostMovedEvent((HostEvent) event);
1473 // TODO RouteHandler also needs to process this event in order to
1474 // support nexthops that has auxLocations
Charles Chan52003922018-04-05 16:31:15 -07001475 } else if (event.type() == HostEvent.Type.HOST_REMOVED) {
1476 hostHandler.processHostRemovedEvent((HostEvent) event);
1477 } else if (event.type() == HostEvent.Type.HOST_UPDATED) {
1478 hostHandler.processHostUpdatedEvent((HostEvent) event);
1479 } else if (event.type() == RouteEvent.Type.ROUTE_ADDED) {
1480 routeHandler.processRouteAdded((RouteEvent) event);
1481 } else if (event.type() == RouteEvent.Type.ROUTE_UPDATED) {
1482 routeHandler.processRouteUpdated((RouteEvent) event);
1483 } else if (event.type() == RouteEvent.Type.ROUTE_REMOVED) {
1484 routeHandler.processRouteRemoved((RouteEvent) event);
1485 } else if (event.type() == RouteEvent.Type.ALTERNATIVE_ROUTES_CHANGED) {
1486 routeHandler.processAlternativeRoutesChanged((RouteEvent) event);
1487 } else if (event.type() == McastEvent.Type.SOURCES_ADDED ||
1488 event.type() == McastEvent.Type.SOURCES_REMOVED ||
1489 event.type() == McastEvent.Type.SINKS_ADDED ||
1490 event.type() == McastEvent.Type.SINKS_REMOVED ||
1491 event.type() == McastEvent.Type.ROUTE_ADDED ||
1492 event.type() == McastEvent.Type.ROUTE_REMOVED) {
1493 mcastHandler.processMcastEvent((McastEvent) event);
1494 } else if (event.type() == NetworkConfigEvent.Type.CONFIG_ADDED) {
1495 NetworkConfigEvent netcfgEvent = (NetworkConfigEvent) event;
1496 Class configClass = netcfgEvent.configClass();
1497 if (configClass.equals(SegmentRoutingAppConfig.class)) {
1498 appCfgHandler.processAppConfigAdded(netcfgEvent);
1499 log.info("App config event .. configuring network");
1500 cfgListener.configureNetwork();
1501 } else if (configClass.equals(SegmentRoutingDeviceConfig.class)) {
1502 log.info("Segment Routing Device Config added for {}", event.subject());
1503 cfgListener.configureNetwork();
Charles Chan52003922018-04-05 16:31:15 -07001504 } else if (configClass.equals(InterfaceConfig.class)) {
1505 log.info("Interface Config added for {}", event.subject());
1506 cfgListener.configureNetwork();
1507 } else {
1508 log.error("Unhandled config class: {}", configClass);
1509 }
1510 } else if (event.type() == NetworkConfigEvent.Type.CONFIG_UPDATED) {
1511 NetworkConfigEvent netcfgEvent = (NetworkConfigEvent) event;
1512 Class configClass = netcfgEvent.configClass();
1513 if (configClass.equals(SegmentRoutingAppConfig.class)) {
1514 appCfgHandler.processAppConfigUpdated(netcfgEvent);
1515 log.info("App config event .. configuring network");
1516 cfgListener.configureNetwork();
1517 } else if (configClass.equals(SegmentRoutingDeviceConfig.class)) {
1518 log.info("Segment Routing Device Config updated for {}", event.subject());
1519 createOrUpdateDeviceConfiguration();
Charles Chan52003922018-04-05 16:31:15 -07001520 } else if (configClass.equals(InterfaceConfig.class)) {
1521 log.info("Interface Config updated for {}", event.subject());
1522 createOrUpdateDeviceConfiguration();
1523 updateInterface((InterfaceConfig) netcfgEvent.config().get(),
1524 (InterfaceConfig) netcfgEvent.prevConfig().get());
1525 } else {
1526 log.error("Unhandled config class: {}", configClass);
1527 }
1528 } else if (event.type() == NetworkConfigEvent.Type.CONFIG_REMOVED) {
1529 NetworkConfigEvent netcfgEvent = (NetworkConfigEvent) event;
1530 Class configClass = netcfgEvent.configClass();
1531 if (configClass.equals(SegmentRoutingAppConfig.class)) {
1532 appCfgHandler.processAppConfigRemoved(netcfgEvent);
1533 log.info("App config event .. configuring network");
1534 cfgListener.configureNetwork();
1535 } else if (configClass.equals(SegmentRoutingDeviceConfig.class)) {
1536 // TODO Handle sr device config removal
1537 log.info("SegmentRoutingDeviceConfig removal is not handled in current implementation");
Charles Chan52003922018-04-05 16:31:15 -07001538 } else if (configClass.equals(InterfaceConfig.class)) {
1539 // TODO Handle interface removal
1540 log.info("InterfaceConfig removal is not handled in current implementation");
1541 } else {
1542 log.error("Unhandled config class: {}", configClass);
1543 }
Saurav Das00e553b2018-04-21 17:19:48 -07001544 } else if (event.type() == MastershipEvent.Type.MASTER_CHANGED) {
1545 MastershipEvent me = (MastershipEvent) event;
1546 DeviceId deviceId = me.subject();
1547 Optional<DeviceId> pairDeviceId = getPairDeviceId(deviceId);
1548 log.info(" ** MASTERSHIP CHANGED Invalidating shouldProgram cache"
1549 + " for {}/pair={} due to change", deviceId, pairDeviceId);
1550 defaultRoutingHandler.invalidateShouldProgramCache(deviceId);
1551 pairDeviceId.ifPresent(defaultRoutingHandler::invalidateShouldProgramCache);
1552 defaultRoutingHandler.checkFullRerouteForMasterChange(deviceId, me);
Charles Chan52003922018-04-05 16:31:15 -07001553 } else {
1554 log.warn("Unhandled event type: {}", event.type());
sangho80f11cb2015-04-01 13:05:26 -07001555 }
Charles Chan52003922018-04-05 16:31:15 -07001556 } catch (Exception e) {
1557 log.error("SegmentRouting event handler thread thrown an exception: {}",
1558 e.getMessage(), e);
sangho80f11cb2015-04-01 13:05:26 -07001559 }
sangho80f11cb2015-04-01 13:05:26 -07001560 }
1561 }
1562
Saurav Dase6c448a2018-01-18 12:07:33 -08001563 void processDeviceAdded(Device device) {
Saurav Dasb149be12016-06-07 10:08:06 -07001564 log.info("** DEVICE ADDED with ID {}", device.id());
Charles Chan9bd6aea2017-06-27 18:48:32 -07001565
1566 // NOTE: Punt ARP/NDP even when the device is not configured.
1567 // Host learning without network config is required for CORD config generator.
1568 routingRulePopulator.populateIpPunts(device.id());
1569 routingRulePopulator.populateArpNdpPunts(device.id());
1570
Charles Chan319d1a22015-11-03 10:42:14 -08001571 if (deviceConfiguration == null || !deviceConfiguration.isConfigured(device.id())) {
Saurav Das261c3002017-06-13 15:35:54 -07001572 log.warn("Device configuration unavailable. Device {} will be "
1573 + "processed after configuration.", device.id());
Saurav Das8ec0ec42015-11-03 14:39:27 -08001574 return;
1575 }
Charles Chan72779502016-04-23 17:36:10 -07001576 processDeviceAddedInternal(device.id());
1577 }
1578
1579 private void processDeviceAddedInternal(DeviceId deviceId) {
Saurav Dasc28b3432015-10-30 17:45:38 -07001580 // Irrespective of whether the local is a MASTER or not for this device,
1581 // we need to create a SR-group-handler instance. This is because in a
1582 // multi-instance setup, any instance can initiate forwarding/next-objectives
1583 // for any switch (even if this instance is a SLAVE or not even connected
1584 // to the switch). To handle this, a default-group-handler instance is necessary
1585 // per switch.
Charles Chan72779502016-04-23 17:36:10 -07001586 log.debug("Current groupHandlerMap devs: {}", groupHandlerMap.keySet());
1587 if (groupHandlerMap.get(deviceId) == null) {
Charles Chan319d1a22015-11-03 10:42:14 -08001588 DefaultGroupHandler groupHandler;
1589 try {
1590 groupHandler = DefaultGroupHandler.
Charles Chan72779502016-04-23 17:36:10 -07001591 createGroupHandler(deviceId,
1592 appId,
1593 deviceConfiguration,
1594 linkService,
1595 flowObjectiveService,
1596 this);
Charles Chan319d1a22015-11-03 10:42:14 -08001597 } catch (DeviceConfigNotFoundException e) {
1598 log.warn(e.getMessage() + " Aborting processDeviceAdded.");
1599 return;
1600 }
Saurav Das2b6a00f2017-12-05 15:00:23 -08001601 log.debug("updating groupHandlerMap with new grpHdlr for device: {}",
Charles Chan72779502016-04-23 17:36:10 -07001602 deviceId);
1603 groupHandlerMap.put(deviceId, groupHandler);
Saurav Das8ec0ec42015-11-03 14:39:27 -08001604 }
Saurav Dasb149be12016-06-07 10:08:06 -07001605
Charles Chan72779502016-04-23 17:36:10 -07001606 if (mastershipService.isLocalMaster(deviceId)) {
Saurav Dasf9332192017-02-18 14:05:44 -08001607 defaultRoutingHandler.populatePortAddressingRules(deviceId);
pierf331a492020-01-07 15:39:39 +01001608 defaultRoutingHandler.purgeSeenBeforeRoutes(deviceId);
Charles Chan72779502016-04-23 17:36:10 -07001609 DefaultGroupHandler groupHandler = groupHandlerMap.get(deviceId);
Charles Chan10b0fb72017-02-02 16:20:42 -08001610 groupHandler.createGroupsFromVlanConfig();
Charles Chan72779502016-04-23 17:36:10 -07001611 routingRulePopulator.populateSubnetBroadcastRule(deviceId);
Charles Chan12a8a842020-02-14 13:23:57 -08001612 phasedRecoveryService.init(deviceId);
Charles Chan77277672015-10-20 16:24:19 -07001613 }
Charles Chan82ab1932016-01-30 23:22:37 -08001614
Charles Chandebfea32016-10-24 14:52:01 -07001615 appCfgHandler.init(deviceId);
sangho80f11cb2015-04-01 13:05:26 -07001616 }
1617
Saurav Dasc3604f12016-03-23 11:22:49 -07001618 private void processDeviceRemoved(Device device) {
Saurav Das261c3002017-06-13 15:35:54 -07001619 dsNextObjStore.entrySet().stream()
Saurav Dasc3604f12016-03-23 11:22:49 -07001620 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
Charles Chan873661e2017-11-30 15:37:50 -08001621 .forEach(entry -> dsNextObjStore.remove(entry.getKey()));
Charles Chan10b0fb72017-02-02 16:20:42 -08001622 vlanNextObjStore.entrySet().stream()
Saurav Dasc3604f12016-03-23 11:22:49 -07001623 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
Charles Chan3ed34d82017-06-22 18:03:14 -07001624 .forEach(entry -> vlanNextObjStore.remove(entry.getKey()));
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001625 macVlanNextObjStore.entrySet().stream()
1626 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
1627 .forEach(entry -> macVlanNextObjStore.remove(entry.getKey()));
Saurav Dasc3604f12016-03-23 11:22:49 -07001628 portNextObjStore.entrySet().stream()
1629 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
Charles Chan3ed34d82017-06-22 18:03:14 -07001630 .forEach(entry -> portNextObjStore.remove(entry.getKey()));
Saurav Dase6c448a2018-01-18 12:07:33 -08001631 linkHandler.processDeviceRemoved(device);
Charles Chan17d75d82017-06-15 00:44:51 -07001632
Saurav Dasfbe74572017-08-03 18:30:35 -07001633 DefaultGroupHandler gh = groupHandlerMap.remove(device.id());
1634 if (gh != null) {
1635 gh.shutdown();
1636 }
Saurav Das62ae6792017-05-15 15:34:25 -07001637 // Note that a switch going down is associated with all of its links
1638 // going down as well, but it is treated as a single switch down event
Saurav Dasdebcf882018-04-06 20:16:01 -07001639 // while the link-downs are ignored. We cannot rely on the ordering of
1640 // events - i.e we cannot expect all link-downs to come before the
1641 // switch down - so we purge all seen-links for the switch before
1642 // handling route-path changes for the switch-down
Saurav Das62ae6792017-05-15 15:34:25 -07001643 defaultRoutingHandler
Saurav Dasdc7f2752018-03-18 21:28:15 -07001644 .populateRoutingRulesForLinkStatusChange(null, null, device.id(), true);
Saurav Das6430f412018-01-25 09:49:01 -08001645 defaultRoutingHandler.purgeEcmpGraph(device.id());
Saurav Das97241862018-02-14 14:14:54 -08001646
1647 // Cleanup all internal groupHandler stores for this device. Should be
1648 // done after all rerouting or rehashing has been completed
1649 groupHandlerMap.entrySet()
1650 .forEach(entry -> entry.getValue().cleanUpForNeighborDown(device.id()));
Charles Chan12a8a842020-02-14 13:23:57 -08001651
1652 phasedRecoveryService.reset(device.id());
Saurav Dasc3604f12016-03-23 11:22:49 -07001653 }
1654
Saurav Das49368392018-04-23 18:42:12 -07001655 /**
1656 * Purge the destinationSet nextObjective store of entries with this device
1657 * as key. Erases app-level knowledge of hashed groups in this device.
1658 *
1659 * @param devId the device identifier
1660 */
Saurav Das00e553b2018-04-21 17:19:48 -07001661 void purgeHashedNextObjectiveStore(DeviceId devId) {
Saurav Das49368392018-04-23 18:42:12 -07001662 log.debug("Purging hashed next-obj store for dev:{}", devId);
Saurav Das00e553b2018-04-21 17:19:48 -07001663 dsNextObjStore.entrySet().stream()
1664 .filter(entry -> entry.getKey().deviceId().equals(devId))
1665 .forEach(entry -> dsNextObjStore.remove(entry.getKey()));
1666 }
1667
Saurav Dasec683dc2018-04-27 18:42:30 -07001668 private void processPortUpdatedInternal(Device device, Port port) {
Saurav Dasf0f592d2016-11-18 15:21:57 -08001669 if (deviceConfiguration == null || !deviceConfiguration.isConfigured(device.id())) {
1670 log.warn("Device configuration uploading. Not handling port event for"
1671 + "dev: {} port: {}", device.id(), port.number());
1672 return;
1673 }
Saurav Dasf9332192017-02-18 14:05:44 -08001674
Saurav Dasec683dc2018-04-27 18:42:30 -07001675 if (interfaceService.isConfigured(new ConnectPoint(device.id(), port.number()))) {
1676 lastEdgePortEvent = Instant.now();
1677 }
1678
Saurav Dasf9332192017-02-18 14:05:44 -08001679 if (!mastershipService.isLocalMaster(device.id())) {
1680 log.debug("Not master for dev:{} .. not handling port updated event"
1681 + "for port {}", device.id(), port.number());
1682 return;
1683 }
Saurav Dasec683dc2018-04-27 18:42:30 -07001684 processPortUpdated(device.id(), port);
1685 }
Saurav Dasf9332192017-02-18 14:05:44 -08001686
Saurav Dasec683dc2018-04-27 18:42:30 -07001687 /**
1688 * Adds or remove filtering rules for the given switchport. If switchport is
1689 * an edge facing port, additionally handles host probing and broadcast
1690 * rules. Must be called by local master of device.
1691 *
1692 * @param deviceId the device identifier
1693 * @param port the port to update
1694 */
1695 void processPortUpdated(DeviceId deviceId, Port port) {
Saurav Dasf9332192017-02-18 14:05:44 -08001696 // first we handle filtering rules associated with the port
1697 if (port.isEnabled()) {
1698 log.info("Switchport {}/{} enabled..programming filters",
Saurav Dasec683dc2018-04-27 18:42:30 -07001699 deviceId, port.number());
1700 routingRulePopulator.processSinglePortFilters(deviceId, port.number(), true);
Saurav Dasf9332192017-02-18 14:05:44 -08001701 } else {
1702 log.info("Switchport {}/{} disabled..removing filters",
Saurav Dasec683dc2018-04-27 18:42:30 -07001703 deviceId, port.number());
1704 routingRulePopulator.processSinglePortFilters(deviceId, port.number(), false);
Saurav Dasf9332192017-02-18 14:05:44 -08001705 }
Saurav Dasf0f592d2016-11-18 15:21:57 -08001706
1707 // portUpdated calls are for ports that have gone down or up. For switch
1708 // to switch ports, link-events should take care of any re-routing or
1709 // group editing necessary for port up/down. Here we only process edge ports
1710 // that are already configured.
Saurav Dasec683dc2018-04-27 18:42:30 -07001711 ConnectPoint cp = new ConnectPoint(deviceId, port.number());
Charles Chan098ca202018-05-01 11:50:20 -07001712 VlanId untaggedVlan = interfaceService.getUntaggedVlanId(cp);
1713 VlanId nativeVlan = interfaceService.getNativeVlanId(cp);
1714 Set<VlanId> taggedVlans = interfaceService.getTaggedVlanId(cp);
Charles Chan10b0fb72017-02-02 16:20:42 -08001715
Saurav Das3fb28272017-03-04 16:08:47 -08001716 if (untaggedVlan == null && nativeVlan == null && taggedVlans.isEmpty()) {
Saurav Das62ae6792017-05-15 15:34:25 -07001717 log.debug("Not handling port updated event for non-edge port (unconfigured) "
Saurav Dasec683dc2018-04-27 18:42:30 -07001718 + "dev/port: {}/{}", deviceId, port.number());
Saurav Dasf0f592d2016-11-18 15:21:57 -08001719 return;
1720 }
Saurav Das3fb28272017-03-04 16:08:47 -08001721 if (untaggedVlan != null) {
Saurav Dasec683dc2018-04-27 18:42:30 -07001722 processEdgePort(deviceId, port, untaggedVlan, true);
Saurav Das3fb28272017-03-04 16:08:47 -08001723 }
1724 if (nativeVlan != null) {
Saurav Dasec683dc2018-04-27 18:42:30 -07001725 processEdgePort(deviceId, port, nativeVlan, true);
Saurav Das3fb28272017-03-04 16:08:47 -08001726 }
1727 if (!taggedVlans.isEmpty()) {
Saurav Dasec683dc2018-04-27 18:42:30 -07001728 taggedVlans.forEach(tag -> processEdgePort(deviceId, port, tag, false));
Saurav Das3fb28272017-03-04 16:08:47 -08001729 }
Saurav Dasf0f592d2016-11-18 15:21:57 -08001730 }
1731
Saurav Dasec683dc2018-04-27 18:42:30 -07001732 private void processEdgePort(DeviceId deviceId, Port port, VlanId vlanId,
Saurav Das3fb28272017-03-04 16:08:47 -08001733 boolean popVlan) {
Saurav Dasf0f592d2016-11-18 15:21:57 -08001734 boolean portUp = port.isEnabled();
1735 if (portUp) {
Saurav Dasec683dc2018-04-27 18:42:30 -07001736 log.info("Device:EdgePort {}:{} is enabled in vlan: {}", deviceId,
Charles Chan10b0fb72017-02-02 16:20:42 -08001737 port.number(), vlanId);
Charles Chan074fae62018-04-29 18:11:37 -07001738 hostEventExecutor.execute(() -> hostHandler.processPortUp(new ConnectPoint(deviceId, port.number())));
Saurav Dasf0f592d2016-11-18 15:21:57 -08001739 } else {
Saurav Dasec683dc2018-04-27 18:42:30 -07001740 log.info("Device:EdgePort {}:{} is disabled in vlan: {}", deviceId,
Charles Chan10b0fb72017-02-02 16:20:42 -08001741 port.number(), vlanId);
Saurav Dasf0f592d2016-11-18 15:21:57 -08001742 }
1743
Saurav Dasec683dc2018-04-27 18:42:30 -07001744 DefaultGroupHandler groupHandler = groupHandlerMap.get(deviceId);
sangho80f11cb2015-04-01 13:05:26 -07001745 if (groupHandler != null) {
Saurav Das3fb28272017-03-04 16:08:47 -08001746 groupHandler.processEdgePort(port.number(), vlanId, popVlan, portUp);
Saurav Dasf0f592d2016-11-18 15:21:57 -08001747 } else {
1748 log.warn("Group handler not found for dev:{}. Not handling edge port"
Saurav Dasec683dc2018-04-27 18:42:30 -07001749 + " {} event for port:{}", deviceId,
Saurav Dasf0f592d2016-11-18 15:21:57 -08001750 (portUp) ? "UP" : "DOWN", port.number());
sangho80f11cb2015-04-01 13:05:26 -07001751 }
1752 }
sangho27462c62015-05-14 00:39:53 -07001753
Charles Chan8ca5a122017-10-20 16:06:55 -07001754 private void createOrUpdateDeviceConfiguration() {
1755 if (deviceConfiguration == null) {
Saurav Dase321cff2018-02-09 17:26:45 -08001756 log.info("Creating new DeviceConfiguration");
Charles Chan8ca5a122017-10-20 16:06:55 -07001757 deviceConfiguration = new DeviceConfiguration(this);
1758 } else {
Saurav Dase321cff2018-02-09 17:26:45 -08001759 log.info("Updating DeviceConfiguration");
Charles Chan8ca5a122017-10-20 16:06:55 -07001760 deviceConfiguration.updateConfig();
1761 }
1762 }
1763
Charles Chanfbcb8812018-04-18 18:41:05 -07001764 private void createOrUpdateDefaultRoutingHandler() {
1765 if (defaultRoutingHandler == null) {
1766 log.info("Creating new DefaultRoutingHandler");
1767 defaultRoutingHandler = new DefaultRoutingHandler(this);
1768 } else {
1769 log.info("Updating DefaultRoutingHandler");
1770 defaultRoutingHandler.update(this);
1771 }
1772 }
1773
Pier Ventreb6a7f342016-11-26 21:05:22 -08001774 /**
1775 * Registers the given connect point with the NRS, this is necessary
1776 * to receive the NDP and ARP packets from the NRS.
1777 *
1778 * @param portToRegister connect point to register
1779 */
1780 public void registerConnectPoint(ConnectPoint portToRegister) {
Charles Chan2e71ef32017-02-23 15:44:08 -08001781 neighbourResolutionService.registerNeighbourHandler(
Pier Ventreb6a7f342016-11-26 21:05:22 -08001782 portToRegister,
1783 neighbourHandler,
1784 appId
1785 );
1786 }
1787
Charles Chan72f556a2015-10-05 17:50:33 -07001788 private class InternalConfigListener implements NetworkConfigListener {
Saurav Das261c3002017-06-13 15:35:54 -07001789 private static final long PROGRAM_DELAY = 2;
Charles Chan46fdfaf2016-11-09 20:51:44 -08001790 SegmentRoutingManager srManager;
Charles Chane7c61022015-10-07 14:21:45 -07001791
Charles Chanb7f75ac2016-01-11 18:28:54 -08001792 /**
1793 * Constructs the internal network config listener.
1794 *
Charles Chan46fdfaf2016-11-09 20:51:44 -08001795 * @param srManager segment routing manager
Charles Chanb7f75ac2016-01-11 18:28:54 -08001796 */
Charles Chan3ed34d82017-06-22 18:03:14 -07001797 InternalConfigListener(SegmentRoutingManager srManager) {
Charles Chan46fdfaf2016-11-09 20:51:44 -08001798 this.srManager = srManager;
Charles Chane7c61022015-10-07 14:21:45 -07001799 }
1800
Charles Chanb7f75ac2016-01-11 18:28:54 -08001801 /**
1802 * Reads network config and initializes related data structure accordingly.
1803 */
Charles Chan873661e2017-11-30 15:37:50 -08001804 void configureNetwork() {
Saurav Dase321cff2018-02-09 17:26:45 -08001805 log.info("Configuring network ...");
Andrea Campanella060cad82018-04-17 12:09:34 +02001806
1807 // Setting handling of network configuration events completable future
1808 // The completable future is needed because of the async behaviour of the configureNetwork,
1809 // listener registration and event arrival
1810 // Enables us to buffer the events and execute them when the configure network is done.
Ray Milkey521e4392018-11-16 15:15:14 -08001811 synchronized (networkConfigCompletionLock) {
1812 networkConfigCompletion = new CompletableFuture<>();
Andrea Campanella060cad82018-04-17 12:09:34 +02001813
Ray Milkey521e4392018-11-16 15:15:14 -08001814 // add a small delay to absorb multiple network config added notifications
1815 if (!programmingScheduled.get()) {
1816 log.info("Buffering config calls for {} secs", PROGRAM_DELAY);
1817 programmingScheduled.set(true);
1818 mainEventExecutor.schedule(new ConfigChange(), PROGRAM_DELAY, TimeUnit.SECONDS);
1819 }
1820
1821 createOrUpdateDeviceConfiguration();
1822
1823 arpHandler = new ArpHandler(srManager);
1824 icmpHandler = new IcmpHandler(srManager);
1825 ipHandler = new IpHandler(srManager);
1826 routingRulePopulator = new RoutingRulePopulator(srManager);
1827 createOrUpdateDefaultRoutingHandler();
1828
1829 tunnelHandler = new TunnelHandler(linkService, deviceConfiguration,
1830 groupHandlerMap, tunnelStore);
1831 policyHandler = new PolicyHandler(appId, deviceConfiguration,
1832 flowObjectiveService,
1833 tunnelHandler, policyStore);
1834 networkConfigCompletion.complete(true);
Andrea Campanella060cad82018-04-17 12:09:34 +02001835 }
1836
Charles Chan72779502016-04-23 17:36:10 -07001837 mcastHandler.init();
Andrea Campanella060cad82018-04-17 12:09:34 +02001838
Charles Chane7c61022015-10-07 14:21:45 -07001839 }
1840
Charles Chan72f556a2015-10-05 17:50:33 -07001841 @Override
1842 public void event(NetworkConfigEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07001843 if (mainEventExecutor == null) {
1844 return;
1845 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001846 checkState(appCfgHandler != null, "NetworkConfigEventHandler is not initialized");
Charles Chan3f4aca62018-03-21 16:57:47 -07001847 switch (event.type()) {
1848 case CONFIG_ADDED:
1849 case CONFIG_UPDATED:
1850 case CONFIG_REMOVED:
Andrea Campanella060cad82018-04-17 12:09:34 +02001851 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
Charles Chan152dd942020-07-21 15:33:31 -07001852 log.debug("Process netcfg {}", event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001853 mainEventExecutor.execute(new InternalEventHandler(event));
1854 } else {
Charles Chan152dd942020-07-21 15:33:31 -07001855 log.debug("Queue netcfg {}", event);
Charles Chan39b75522018-04-21 00:44:29 -07001856 queuedEvents.add(event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001857 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001858 break;
1859 default:
1860 break;
Charles Chan72f556a2015-10-05 17:50:33 -07001861 }
1862 }
Saurav Das261c3002017-06-13 15:35:54 -07001863
Charles Chanc4a68c32018-01-03 16:26:32 -08001864 @Override
1865 public boolean isRelevant(NetworkConfigEvent event) {
Saurav Dase321cff2018-02-09 17:26:45 -08001866 if (event.type() == CONFIG_REGISTERED ||
1867 event.type() == CONFIG_UNREGISTERED) {
1868 log.debug("Ignore event {} due to type mismatch", event);
1869 return false;
Charles Chanc4a68c32018-01-03 16:26:32 -08001870 }
Saurav Dase321cff2018-02-09 17:26:45 -08001871
1872 if (!event.configClass().equals(SegmentRoutingDeviceConfig.class) &&
1873 !event.configClass().equals(SegmentRoutingAppConfig.class) &&
Charles Chana01d57c2019-07-19 16:25:38 -07001874 !event.configClass().equals(InterfaceConfig.class)) {
Saurav Dase321cff2018-02-09 17:26:45 -08001875 log.debug("Ignore event {} due to class mismatch", event);
1876 return false;
1877 }
1878
1879 return true;
Charles Chanc4a68c32018-01-03 16:26:32 -08001880 }
1881
Saurav Das261c3002017-06-13 15:35:54 -07001882 private final class ConfigChange implements Runnable {
1883 @Override
1884 public void run() {
1885 programmingScheduled.set(false);
Saurav Dase321cff2018-02-09 17:26:45 -08001886 log.info("Reacting to config changes after buffer delay");
Saurav Das261c3002017-06-13 15:35:54 -07001887 for (Device device : deviceService.getDevices()) {
1888 processDeviceAdded(device);
1889 }
1890 defaultRoutingHandler.startPopulationProcess();
1891 }
1892 }
Charles Chan72f556a2015-10-05 17:50:33 -07001893 }
Charles Chanf4586112015-11-09 16:37:23 -08001894
Charles Chan3f4aca62018-03-21 16:57:47 -07001895 private class InternalLinkListener implements LinkListener {
1896 @Override
1897 public void event(LinkEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07001898 if (mainEventExecutor == null) {
1899 return;
1900 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001901 if (event.type() == LinkEvent.Type.LINK_ADDED ||
1902 event.type() == LinkEvent.Type.LINK_UPDATED ||
1903 event.type() == LinkEvent.Type.LINK_REMOVED) {
1904 log.trace("Schedule Link event {}", event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001905 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1906 mainEventExecutor.execute(new InternalEventHandler(event));
1907 } else {
Charles Chan39b75522018-04-21 00:44:29 -07001908 queuedEvents.add(event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001909 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001910 }
1911 }
1912 }
1913
1914 private class InternalDeviceListener implements DeviceListener {
1915 @Override
1916 public void event(DeviceEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07001917 if (mainEventExecutor == null) {
1918 return;
1919 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001920 switch (event.type()) {
1921 case DEVICE_ADDED:
1922 case PORT_UPDATED:
1923 case PORT_ADDED:
1924 case DEVICE_UPDATED:
1925 case DEVICE_AVAILABILITY_CHANGED:
1926 log.trace("Schedule Device event {}", event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001927 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1928 mainEventExecutor.execute(new InternalEventHandler(event));
1929 } else {
Charles Chan39b75522018-04-21 00:44:29 -07001930 queuedEvents.add(event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001931 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001932 break;
1933 default:
1934 }
1935 }
1936 }
1937
1938 private class InternalTopologyListener implements TopologyListener {
1939 @Override
1940 public void event(TopologyEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07001941 if (mainEventExecutor == null) {
1942 return;
1943 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001944 switch (event.type()) {
1945 case TOPOLOGY_CHANGED:
1946 log.trace("Schedule Topology event {}", event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001947 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1948 mainEventExecutor.execute(new InternalEventHandler(event));
1949 } else {
Charles Chan39b75522018-04-21 00:44:29 -07001950 queuedEvents.add(event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001951 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001952 break;
1953 default:
1954 }
1955 }
1956 }
1957
Charles Chanf4586112015-11-09 16:37:23 -08001958 private class InternalHostListener implements HostListener {
Charles Chanf4586112015-11-09 16:37:23 -08001959 @Override
1960 public void event(HostEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07001961 if (hostEventExecutor == null) {
1962 return;
1963 }
Charles Chanf4586112015-11-09 16:37:23 -08001964 switch (event.type()) {
1965 case HOST_ADDED:
Charles Chanf4586112015-11-09 16:37:23 -08001966 case HOST_MOVED:
Charles Chanf4586112015-11-09 16:37:23 -08001967 case HOST_REMOVED:
Charles Chanf4586112015-11-09 16:37:23 -08001968 case HOST_UPDATED:
Charles Chan3f4aca62018-03-21 16:57:47 -07001969 log.trace("Schedule Host event {}", event);
Charles Chandbbbb8a2018-04-07 11:35:08 -07001970 hostEventExecutor.execute(new InternalEventHandler(event));
Charles Chanf4586112015-11-09 16:37:23 -08001971 break;
1972 default:
1973 log.warn("Unsupported host event type: {}", event.type());
1974 break;
1975 }
1976 }
1977 }
1978
Charles Chanc91c8782016-03-30 17:54:24 -07001979 private class InternalMcastListener implements McastListener {
1980 @Override
1981 public void event(McastEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07001982 if (mcastEventExecutor == null) {
1983 return;
1984 }
Charles Chanc91c8782016-03-30 17:54:24 -07001985 switch (event.type()) {
Pier1f87aca2018-03-14 16:47:32 -07001986 case SOURCES_ADDED:
1987 case SOURCES_REMOVED:
1988 case SINKS_ADDED:
1989 case SINKS_REMOVED:
Charles Chanc91c8782016-03-30 17:54:24 -07001990 case ROUTE_REMOVED:
Pierdb27b8d2018-04-17 16:29:56 +02001991 case ROUTE_ADDED:
Charles Chan3f4aca62018-03-21 16:57:47 -07001992 log.trace("Schedule Mcast event {}", event);
Charles Chandbbbb8a2018-04-07 11:35:08 -07001993 mcastEventExecutor.execute(new InternalEventHandler(event));
Pier Luigi6786b922018-02-02 16:19:11 +01001994 break;
Charles Chanc91c8782016-03-30 17:54:24 -07001995 default:
Charles Chan3f4aca62018-03-21 16:57:47 -07001996 log.warn("Unsupported mcast event type: {}", event.type());
Charles Chanc91c8782016-03-30 17:54:24 -07001997 break;
1998 }
1999 }
2000 }
Charles Chan41f5ec02016-06-13 18:54:31 -07002001
Charles Chandebfea32016-10-24 14:52:01 -07002002 private class InternalRouteEventListener implements RouteListener {
2003 @Override
2004 public void event(RouteEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07002005 if (routeEventExecutor == null) {
2006 return;
2007 }
Charles Chandebfea32016-10-24 14:52:01 -07002008 switch (event.type()) {
2009 case ROUTE_ADDED:
Charles Chandebfea32016-10-24 14:52:01 -07002010 case ROUTE_UPDATED:
Charles Chandebfea32016-10-24 14:52:01 -07002011 case ROUTE_REMOVED:
Charles Chan910be6a2017-08-23 14:46:43 -07002012 case ALTERNATIVE_ROUTES_CHANGED:
Charles Chan3f4aca62018-03-21 16:57:47 -07002013 log.trace("Schedule Route event {}", event);
Charles Chandbbbb8a2018-04-07 11:35:08 -07002014 routeEventExecutor.execute(new InternalEventHandler(event));
Charles Chan910be6a2017-08-23 14:46:43 -07002015 break;
Charles Chandebfea32016-10-24 14:52:01 -07002016 default:
Charles Chan3f4aca62018-03-21 16:57:47 -07002017 log.warn("Unsupported route event type: {}", event.type());
Charles Chandebfea32016-10-24 14:52:01 -07002018 break;
2019 }
2020 }
2021 }
Saurav Das62ae6792017-05-15 15:34:25 -07002022
Charles Chanfbcb8812018-04-18 18:41:05 -07002023 private class InternalMastershipListener implements MastershipListener {
2024 @Override
2025 public void event(MastershipEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07002026 if (mainEventExecutor == null) {
2027 return;
2028 }
Charles Chanfbcb8812018-04-18 18:41:05 -07002029 switch (event.type()) {
Saurav Das00e553b2018-04-21 17:19:48 -07002030 case MASTER_CHANGED:
2031 log.debug("Mastership event: {}/{}", event.subject(),
2032 event.roleInfo());
2033 mainEventExecutor.execute(new InternalEventHandler(event));
2034 break;
2035 case BACKUPS_CHANGED:
2036 case SUSPENDED:
2037 default:
2038 log.debug("Mastership event type {} not handled", event.type());
2039 break;
Charles Chanfbcb8812018-04-18 18:41:05 -07002040 }
2041 }
2042 }
2043
Saurav Das00e553b2018-04-21 17:19:48 -07002044 class InternalClusterListener implements ClusterEventListener {
2045 private Instant lastClusterEvent = Instant.EPOCH;
2046
2047 long timeSinceLastClusterEvent() {
2048 return Instant.now().toEpochMilli() - lastClusterEvent.toEpochMilli();
2049 }
2050
2051 @Override
2052 public void event(ClusterEvent event) {
2053 switch (event.type()) {
2054 case INSTANCE_ACTIVATED:
2055 case INSTANCE_ADDED:
2056 case INSTANCE_READY:
2057 log.debug("Cluster event {} ignored", event.type());
2058 break;
2059 case INSTANCE_DEACTIVATED:
2060 case INSTANCE_REMOVED:
2061 log.info("** Cluster event {}", event.type());
2062 lastClusterEvent = Instant.now();
2063 break;
2064 default:
2065 break;
2066 }
2067
2068 }
2069
2070 }
2071
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002072 private void updateInterface(InterfaceConfig conf, InterfaceConfig prevConf) {
2073 try {
2074 Set<Interface> intfs = conf.getInterfaces();
2075 Set<Interface> prevIntfs = prevConf.getInterfaces();
2076
2077 // Now we only handle one interface config at each port.
2078 if (intfs.size() != 1 || prevIntfs.size() != 1) {
2079 log.warn("Interface update aborted - one at a time is allowed, " +
2080 "but {} / {}(prev) received.", intfs.size(), prevIntfs.size());
2081 return;
2082 }
2083
Andrea Campanella060cad82018-04-17 12:09:34 +02002084 //The system is in an incoherent state, abort
2085 if (defaultRoutingHandler == null) {
2086 log.warn("Interface update aborted, defaultRoutingHandler is null");
2087 return;
2088 }
2089
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002090 Interface intf = intfs.stream().findFirst().get();
2091 Interface prevIntf = prevIntfs.stream().findFirst().get();
2092
2093 DeviceId deviceId = intf.connectPoint().deviceId();
2094 PortNumber portNum = intf.connectPoint().port();
2095
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002096 removeSubnetConfig(prevIntf.connectPoint(),
2097 Sets.difference(new HashSet<>(prevIntf.ipAddressesList()),
2098 new HashSet<>(intf.ipAddressesList())));
2099
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002100 if (!prevIntf.vlanNative().equals(VlanId.NONE)
2101 && !prevIntf.vlanNative().equals(intf.vlanUntagged())
2102 && !prevIntf.vlanNative().equals(intf.vlanNative())) {
2103 if (intf.vlanTagged().contains(prevIntf.vlanNative())) {
2104 // Update filtering objective and L2IG group bucket
2105 updatePortVlanTreatment(deviceId, portNum, prevIntf.vlanNative(), false);
2106 } else {
2107 // RemoveVlanNative
2108 updateVlanConfigInternal(deviceId, portNum, prevIntf.vlanNative(), true, false);
2109 }
2110 }
2111
2112 if (!prevIntf.vlanUntagged().equals(VlanId.NONE)
2113 && !prevIntf.vlanUntagged().equals(intf.vlanUntagged())
2114 && !prevIntf.vlanUntagged().equals(intf.vlanNative())) {
2115 if (intf.vlanTagged().contains(prevIntf.vlanUntagged())) {
2116 // Update filtering objective and L2IG group bucket
2117 updatePortVlanTreatment(deviceId, portNum, prevIntf.vlanUntagged(), false);
2118 } else {
2119 // RemoveVlanUntagged
2120 updateVlanConfigInternal(deviceId, portNum, prevIntf.vlanUntagged(), true, false);
2121 }
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002122 }
2123
2124 if (!prevIntf.vlanTagged().isEmpty() && !intf.vlanTagged().equals(prevIntf.vlanTagged())) {
2125 // RemoveVlanTagged
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002126 Sets.difference(prevIntf.vlanTagged(), intf.vlanTagged()).stream()
2127 .filter(i -> !intf.vlanUntagged().equals(i))
2128 .filter(i -> !intf.vlanNative().equals(i))
2129 .forEach(vlanId -> updateVlanConfigInternal(
2130 deviceId, portNum, vlanId, false, false));
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002131 }
2132
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002133 if (!intf.vlanNative().equals(VlanId.NONE)
2134 && !prevIntf.vlanNative().equals(intf.vlanNative())
2135 && !prevIntf.vlanUntagged().equals(intf.vlanNative())) {
2136 if (prevIntf.vlanTagged().contains(intf.vlanNative())) {
2137 // Update filtering objective and L2IG group bucket
2138 updatePortVlanTreatment(deviceId, portNum, intf.vlanNative(), true);
2139 } else {
2140 // AddVlanNative
2141 updateVlanConfigInternal(deviceId, portNum, intf.vlanNative(), true, true);
2142 }
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002143 }
2144
2145 if (!intf.vlanTagged().isEmpty() && !intf.vlanTagged().equals(prevIntf.vlanTagged())) {
2146 // AddVlanTagged
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002147 Sets.difference(intf.vlanTagged(), prevIntf.vlanTagged()).stream()
2148 .filter(i -> !prevIntf.vlanUntagged().equals(i))
2149 .filter(i -> !prevIntf.vlanNative().equals(i))
2150 .forEach(vlanId -> updateVlanConfigInternal(
2151 deviceId, portNum, vlanId, false, true)
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002152 );
2153 }
2154
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002155 if (!intf.vlanUntagged().equals(VlanId.NONE)
2156 && !prevIntf.vlanUntagged().equals(intf.vlanUntagged())
2157 && !prevIntf.vlanNative().equals(intf.vlanUntagged())) {
2158 if (prevIntf.vlanTagged().contains(intf.vlanUntagged())) {
2159 // Update filtering objective and L2IG group bucket
2160 updatePortVlanTreatment(deviceId, portNum, intf.vlanUntagged(), true);
2161 } else {
2162 // AddVlanUntagged
2163 updateVlanConfigInternal(deviceId, portNum, intf.vlanUntagged(), true, true);
2164 }
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002165 }
2166 addSubnetConfig(prevIntf.connectPoint(),
2167 Sets.difference(new HashSet<>(intf.ipAddressesList()),
2168 new HashSet<>(prevIntf.ipAddressesList())));
2169 } catch (ConfigException e) {
2170 log.error("Error in configuration");
2171 }
2172 }
2173
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002174 private void updatePortVlanTreatment(DeviceId deviceId, PortNumber portNum,
2175 VlanId vlanId, boolean pushVlan) {
2176 DefaultGroupHandler grpHandler = getGroupHandler(deviceId);
2177 if (grpHandler == null) {
2178 log.warn("Failed to retrieve group handler for device {}", deviceId);
2179 return;
2180 }
2181
2182 // Update filtering objective for a single port
2183 routingRulePopulator.updateSinglePortFilters(deviceId, portNum, !pushVlan, vlanId, false);
2184 routingRulePopulator.updateSinglePortFilters(deviceId, portNum, pushVlan, vlanId, true);
2185
2186 if (getVlanNextObjectiveId(deviceId, vlanId) != -1) {
2187 // Update L2IG bucket of the port
2188 grpHandler.updateL2InterfaceGroupBucket(portNum, vlanId, pushVlan);
Shibu Vijayakumar632dd642018-03-01 15:45:59 -08002189 // Update bridging and unicast routing rule for each host
2190 hostEventExecutor.execute(() -> hostHandler.processIntfVlanUpdatedEvent(deviceId, portNum,
2191 vlanId, !pushVlan, false));
2192 hostEventExecutor.execute(() -> hostHandler.processIntfVlanUpdatedEvent(deviceId, portNum,
2193 vlanId, pushVlan, true));
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002194 } else {
2195 log.warn("Failed to retrieve next objective for vlan {} in device {}:{}", vlanId, deviceId, portNum);
2196 }
2197 }
2198
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002199 private void updateVlanConfigInternal(DeviceId deviceId, PortNumber portNum,
2200 VlanId vlanId, boolean pushVlan, boolean install) {
2201 DefaultGroupHandler grpHandler = getGroupHandler(deviceId);
2202 if (grpHandler == null) {
2203 log.warn("Failed to retrieve group handler for device {}", deviceId);
2204 return;
2205 }
2206
2207 // Update filtering objective for a single port
2208 routingRulePopulator.updateSinglePortFilters(deviceId, portNum, pushVlan, vlanId, install);
2209
2210 // Update filtering objective for multicast ingress port
2211 mcastHandler.updateFilterToDevice(deviceId, portNum, vlanId, install);
2212
2213 int nextId = getVlanNextObjectiveId(deviceId, vlanId);
2214
2215 if (nextId != -1 && !install) {
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002216 // Remove L2 Bridging rule and L3 Unicast rule to the host
Charles Chan074fae62018-04-29 18:11:37 -07002217 hostEventExecutor.execute(() -> hostHandler.processIntfVlanUpdatedEvent(deviceId, portNum,
2218 vlanId, pushVlan, install));
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002219 // Remove broadcast forwarding rule and corresponding L2FG for VLAN
2220 // only if there is no port configured on that VLAN ID
2221 if (!getVlanPortMap(deviceId).containsKey(vlanId)) {
2222 // Remove broadcast forwarding rule for the VLAN
2223 routingRulePopulator.updateSubnetBroadcastRule(deviceId, vlanId, install);
2224 // Remove L2FG for VLAN
2225 grpHandler.removeBcastGroupFromVlan(deviceId, portNum, vlanId, pushVlan);
2226 } else {
Shibu Vijayakumar632dd642018-03-01 15:45:59 -08002227 // Remove a single port from L2FG
2228 grpHandler.updateGroupFromVlanConfiguration(vlanId, portNum, nextId, install);
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002229 }
Shibu Vijayakumar632dd642018-03-01 15:45:59 -08002230 // Remove L2IG of the port
2231 grpHandler.removePortNextObjective(deviceId, portNum, vlanId, pushVlan);
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002232 } else if (install) {
Shibu Vijayakumar632dd642018-03-01 15:45:59 -08002233 // Create L2IG of the port
2234 grpHandler.createPortNextObjective(deviceId, portNum, vlanId, pushVlan);
2235 // Create L2 Bridging rule and L3 Unicast rule to the host
2236 hostEventExecutor.execute(() -> hostHandler.processIntfVlanUpdatedEvent(deviceId, portNum,
2237 vlanId, pushVlan, install));
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002238 if (nextId != -1) {
2239 // Add a single port to L2FG
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002240 grpHandler.updateGroupFromVlanConfiguration(vlanId, portNum, nextId, install);
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002241 } else {
2242 // Create L2FG for VLAN
2243 grpHandler.createBcastGroupFromVlan(vlanId, Collections.singleton(portNum));
2244 routingRulePopulator.updateSubnetBroadcastRule(deviceId, vlanId, install);
2245 }
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002246 } else {
2247 log.warn("Failed to retrieve next objective for vlan {} in device {}:{}", vlanId, deviceId, portNum);
2248 }
2249 }
2250
2251 private void removeSubnetConfig(ConnectPoint cp, Set<InterfaceIpAddress> ipAddressSet) {
2252 Set<IpPrefix> ipPrefixSet = ipAddressSet.stream().
2253 map(InterfaceIpAddress::subnetAddress).collect(Collectors.toSet());
2254
2255 Set<InterfaceIpAddress> deviceIntfIpAddrs = interfaceService.getInterfaces().stream()
2256 .filter(intf -> intf.connectPoint().deviceId().equals(cp.deviceId()))
2257 .filter(intf -> !intf.connectPoint().equals(cp))
2258 .flatMap(intf -> intf.ipAddressesList().stream())
2259 .collect(Collectors.toSet());
2260 // 1. Partial subnet population
2261 // Remove routing rules for removed subnet from previous configuration,
2262 // which does not also exist in other interfaces in the same device
2263 Set<IpPrefix> deviceIpPrefixSet = deviceIntfIpAddrs.stream()
2264 .map(InterfaceIpAddress::subnetAddress)
2265 .collect(Collectors.toSet());
2266
Shibu Vijayakumar5e26f8c2020-01-07 11:45:09 +00002267 Set<IpPrefix> subnetsToBeRevoked = ipPrefixSet.stream()
2268 .filter(ipPrefix -> !deviceIpPrefixSet.contains(ipPrefix))
2269 .collect(Collectors.toSet());
2270
2271 // Check if any of the subnets to be revoked is configured in the pairDevice.
2272 // If any, repopulate the subnet with pairDevice connectPoint instead of revoking.
2273 Optional<DeviceId> pairDevice = getPairDeviceId(cp.deviceId());
2274 if (pairDevice.isPresent()) {
2275 Set<IpPrefix> pairDeviceIpPrefix = getDeviceSubnetMap().get(pairDevice.get());
2276
2277 Set<IpPrefix> subnetsExistingInPairDevice = subnetsToBeRevoked.stream()
2278 .filter(ipPrefix -> pairDeviceIpPrefix.contains(ipPrefix))
2279 .collect(Collectors.toSet());
2280
2281 // Update the subnets existing in pair device with pair device connect point.
2282 if (!subnetsExistingInPairDevice.isEmpty()) {
2283 // PortNumber of connect point is not relevant in populate subnet and hence providing as ANY.
2284 ConnectPoint pairDeviceCp = new ConnectPoint(pairDevice.get(), PortNumber.ANY);
2285 log.debug("Updating the subnets: {} with pairDevice connectPoint as it exists in the Pair device: {}",
2286 subnetsExistingInPairDevice, pairDeviceCp);
2287 defaultRoutingHandler.populateSubnet(Collections.singleton(pairDeviceCp), subnetsExistingInPairDevice);
2288 }
2289
2290 // Remove only the subnets that are not configured in the pairDevice.
2291 subnetsToBeRevoked = Sets.difference(subnetsToBeRevoked, subnetsExistingInPairDevice);
2292 }
2293
2294 if (!subnetsToBeRevoked.isEmpty()) {
2295 log.debug("Removing subnets for connectPoint: {}, subnets: {}", cp, subnetsToBeRevoked);
2296 defaultRoutingHandler.revokeSubnet(subnetsToBeRevoked);
2297 }
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002298
2299 // 2. Interface IP punts
2300 // Remove IP punts for old Intf address
2301 Set<IpAddress> deviceIpAddrs = deviceIntfIpAddrs.stream()
2302 .map(InterfaceIpAddress::ipAddress)
2303 .collect(Collectors.toSet());
2304 ipAddressSet.stream()
2305 .map(InterfaceIpAddress::ipAddress)
2306 .filter(interfaceIpAddress -> !deviceIpAddrs.contains(interfaceIpAddress))
2307 .forEach(interfaceIpAddress ->
2308 routingRulePopulator.revokeSingleIpPunts(
2309 cp.deviceId(), interfaceIpAddress));
2310
2311 // 3. Host unicast routing rule
2312 // Remove unicast routing rule
Charles Chan074fae62018-04-29 18:11:37 -07002313 hostEventExecutor.execute(() -> hostHandler.processIntfIpUpdatedEvent(cp, ipPrefixSet, false));
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002314 }
2315
2316 private void addSubnetConfig(ConnectPoint cp, Set<InterfaceIpAddress> ipAddressSet) {
2317 Set<IpPrefix> ipPrefixSet = ipAddressSet.stream().
2318 map(InterfaceIpAddress::subnetAddress).collect(Collectors.toSet());
2319
2320 Set<InterfaceIpAddress> deviceIntfIpAddrs = interfaceService.getInterfaces().stream()
2321 .filter(intf -> intf.connectPoint().deviceId().equals(cp.deviceId()))
2322 .filter(intf -> !intf.connectPoint().equals(cp))
2323 .flatMap(intf -> intf.ipAddressesList().stream())
2324 .collect(Collectors.toSet());
2325 // 1. Partial subnet population
2326 // Add routing rules for newly added subnet, which does not also exist in
2327 // other interfaces in the same device
2328 Set<IpPrefix> deviceIpPrefixSet = deviceIntfIpAddrs.stream()
2329 .map(InterfaceIpAddress::subnetAddress)
2330 .collect(Collectors.toSet());
Shibu Vijayakumar5e26f8c2020-01-07 11:45:09 +00002331 Set<IpPrefix> subnetsToBePopulated = ipPrefixSet.stream()
2332 .filter(ipPrefix -> !deviceIpPrefixSet.contains(ipPrefix))
2333 .collect(Collectors.toSet());
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002334
Shibu Vijayakumar5e26f8c2020-01-07 11:45:09 +00002335 if (!subnetsToBePopulated.isEmpty()) {
2336 log.debug("Adding subnets for connectPoint: {}, subnets: {}", cp, subnetsToBePopulated);
2337
2338 // check if pair-device has the same subnet configured?
2339 Optional<DeviceId> pairDevice = getPairDeviceId(cp.deviceId());
2340 if (pairDevice.isPresent()) {
2341 Set<IpPrefix> pairDeviceIpPrefix = getDeviceSubnetMap().get(pairDevice.get());
2342
2343 Set<IpPrefix> subnetsToBePopulatedAsDualHomed = subnetsToBePopulated.stream()
2344 .filter(ipPrefix -> pairDeviceIpPrefix.contains(ipPrefix))
2345 .collect(Collectors.toSet());
2346 Set<IpPrefix> subnetsToBePopulatedAsSingleHomed = Sets.difference(subnetsToBePopulated,
2347 subnetsToBePopulatedAsDualHomed);
2348
2349 if (!subnetsToBePopulatedAsSingleHomed.isEmpty()) {
2350 defaultRoutingHandler.populateSubnet(
2351 Collections.singleton(cp),
2352 subnetsToBePopulatedAsSingleHomed);
2353 }
2354
2355 if (!subnetsToBePopulatedAsDualHomed.isEmpty()) {
2356 Set<ConnectPoint> cpts = new HashSet<>();
2357 cpts.add(cp);
2358 // As Subnets is DualHomed adding the pairDevice also as ConnectPoint.
2359 // PortNumber of connect point is not relevant in populate subnet and hence providing as ANY.
2360 ConnectPoint pairCp = new ConnectPoint(pairDevice.get(), PortNumber.ANY);
2361 cpts.add(pairCp);
2362
2363 log.debug("Adding DualHomed subnets for connectPoint: {} and its pair device: {}, subnets: {}",
2364 cp, pairCp, subnetsToBePopulatedAsDualHomed);
2365
2366 // populating the subnets as DualHomed
2367 defaultRoutingHandler.populateSubnet(
2368 cpts,
2369 subnetsToBePopulated);
2370
2371 // revoking the subnets populated in the device as it is now Dualhomed.
2372 defaultRoutingHandler.revokeSubnet(Collections.singleton(cp.deviceId()),
2373 subnetsToBePopulatedAsDualHomed);
2374 }
2375 } else {
2376 defaultRoutingHandler.populateSubnet(
2377 Collections.singleton(cp),
2378 subnetsToBePopulated);
2379 }
2380 }
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002381
2382 // 2. Interface IP punts
2383 // Add IP punts for new Intf address
2384 Set<IpAddress> deviceIpAddrs = deviceIntfIpAddrs.stream()
2385 .map(InterfaceIpAddress::ipAddress)
2386 .collect(Collectors.toSet());
2387 ipAddressSet.stream()
2388 .map(InterfaceIpAddress::ipAddress)
2389 .filter(interfaceIpAddress -> !deviceIpAddrs.contains(interfaceIpAddress))
2390 .forEach(interfaceIpAddress ->
2391 routingRulePopulator.populateSingleIpPunts(
2392 cp.deviceId(), interfaceIpAddress));
2393
2394 // 3. Host unicast routing rule
2395 // Add unicast routing rule
Charles Chan074fae62018-04-29 18:11:37 -07002396 hostEventExecutor.execute(() -> hostHandler.processIntfIpUpdatedEvent(cp, ipPrefixSet, true));
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002397 }
sangho80f11cb2015-04-01 13:05:26 -07002398}