blob: 97436abea881a02a97fb6475b51557f50f7c5c01 [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;
Jonathan Hart54541d12016-04-12 15:39:44 -070029import org.onlab.packet.VlanId;
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +000030import org.onlab.packet.MacAddress;
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;
Pier Luigi69f774d2018-02-28 12:10:50 +0100102import org.onosproject.segmentrouting.mcast.McastHandler;
103import org.onosproject.segmentrouting.mcast.McastRole;
Piere99511d2018-04-19 16:47:06 +0200104import org.onosproject.segmentrouting.mcast.McastRoleStoreKey;
Ray Milkey2bd24a92018-08-17 14:54:17 -0700105import org.onosproject.segmentrouting.mcast.McastStoreKey;
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -0700106import org.onosproject.segmentrouting.pwaas.DefaultL2Tunnel;
Andreas Pantelopoulos96851252018-03-20 13:58:49 -0700107import org.onosproject.segmentrouting.pwaas.DefaultL2TunnelDescription;
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800108import org.onosproject.segmentrouting.pwaas.DefaultL2TunnelHandler;
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -0700109import org.onosproject.segmentrouting.pwaas.DefaultL2TunnelPolicy;
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800110import org.onosproject.segmentrouting.pwaas.L2Tunnel;
Ray Milkey2bd24a92018-08-17 14:54:17 -0700111import org.onosproject.segmentrouting.pwaas.L2TunnelDescription;
Ray Milkeyae0068a2017-08-15 11:02:29 -0700112import org.onosproject.segmentrouting.pwaas.L2TunnelHandler;
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800113import org.onosproject.segmentrouting.pwaas.L2TunnelPolicy;
Saurav Das261c3002017-06-13 15:35:54 -0700114import org.onosproject.segmentrouting.storekey.DestinationSetNextObjectiveStoreKey;
Charles Chan1eaf4802016-04-18 13:44:03 -0700115import org.onosproject.segmentrouting.storekey.PortNextObjectiveStoreKey;
Charles Chan10b0fb72017-02-02 16:20:42 -0800116import org.onosproject.segmentrouting.storekey.VlanNextObjectiveStoreKey;
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000117import org.onosproject.segmentrouting.storekey.MacVlanNextObjectiveStoreKey;
Charles Chan82f19972016-05-17 13:13:55 -0700118import org.onosproject.segmentrouting.storekey.XConnectStoreKey;
Charles Chan8d316332018-06-19 20:31:57 -0700119import org.onosproject.segmentrouting.xconnect.api.XconnectService;
Jonathan Hart54541d12016-04-12 15:39:44 -0700120import org.onosproject.store.serializers.KryoNamespaces;
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700121import org.onosproject.store.service.EventuallyConsistentMap;
122import org.onosproject.store.service.EventuallyConsistentMapBuilder;
123import org.onosproject.store.service.StorageService;
124import org.onosproject.store.service.WallClockTimestamp;
Charles Chan873661e2017-11-30 15:37:50 -0800125import org.osgi.service.component.ComponentContext;
Ray Milkey2bd24a92018-08-17 14:54:17 -0700126import org.osgi.service.component.annotations.Activate;
127import org.osgi.service.component.annotations.Component;
128import org.osgi.service.component.annotations.Deactivate;
129import org.osgi.service.component.annotations.Modified;
130import org.osgi.service.component.annotations.Reference;
131import org.osgi.service.component.annotations.ReferenceCardinality;
Charles Chanb4f9cd12019-02-27 11:46:32 -0800132import org.osgi.service.component.annotations.ReferencePolicy;
sangho80f11cb2015-04-01 13:05:26 -0700133import org.slf4j.Logger;
134import org.slf4j.LoggerFactory;
135
Saurav Das00e553b2018-04-21 17:19:48 -0700136import java.time.Instant;
Andreas Pantelopoulosd988c1a2018-03-15 16:56:09 -0700137import java.util.ArrayList;
Jonathan Hart61e24e12017-11-30 18:23:42 -0800138import java.util.Collections;
Charles Chan873661e2017-11-30 15:37:50 -0800139import java.util.Dictionary;
Jonathan Hart61e24e12017-11-30 18:23:42 -0800140import java.util.HashSet;
141import java.util.List;
142import java.util.Map;
Jonathan Hart61e24e12017-11-30 18:23:42 -0800143import java.util.Optional;
144import java.util.Set;
Andrea Campanella060cad82018-04-17 12:09:34 +0200145import java.util.concurrent.CompletableFuture;
Jonathan Hart61e24e12017-11-30 18:23:42 -0800146import java.util.concurrent.ConcurrentHashMap;
Andrea Campanella060cad82018-04-17 12:09:34 +0200147import java.util.concurrent.CopyOnWriteArrayList;
Charles Chan77cdde42018-05-08 21:35:50 -0700148import java.util.concurrent.ExecutorService;
Jonathan Hart61e24e12017-11-30 18:23:42 -0800149import java.util.concurrent.Executors;
150import java.util.concurrent.ScheduledExecutorService;
Jonathan Hart61e24e12017-11-30 18:23:42 -0800151import java.util.concurrent.TimeUnit;
152import java.util.concurrent.atomic.AtomicBoolean;
153import java.util.stream.Collectors;
sangho80f11cb2015-04-01 13:05:26 -0700154
Charles Chand6d25332016-02-26 22:19:52 -0800155import static com.google.common.base.Preconditions.checkState;
Pier Ventreadb4ae62016-11-23 09:57:42 -0800156import static org.onlab.packet.Ethernet.TYPE_ARP;
Yuta HIGUCHIebee2f12016-07-21 16:54:33 -0700157import static org.onlab.util.Tools.groupedThreads;
Saurav Dase321cff2018-02-09 17:26:45 -0800158import static org.onosproject.net.config.NetworkConfigEvent.Type.CONFIG_REGISTERED;
159import static org.onosproject.net.config.NetworkConfigEvent.Type.CONFIG_UNREGISTERED;
Ray Milkey05edbfc2018-10-23 14:23:16 -0700160import static org.onosproject.segmentrouting.OsgiPropertyConstants.ACTIVE_PROBING_DEFAULT;
161import static org.onosproject.segmentrouting.OsgiPropertyConstants.DEFAULT_INTERNAL_VLAN_DEFAULT;
162import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_ACTIVE_PROBING;
163import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_DEFAULT_INTERNAL_VLAN;
164import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_PW_TRANSPORT_VLAN;
165import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_RESPOND_TO_UNKNOWN_HOSTS;
166import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_ROUTE_DOUBLE_TAGGED_HOSTS;
psneha86e60d32019-03-26 06:31:41 -0400167import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_ROUTE_SIMPLIFICATION;
Ray Milkey05edbfc2018-10-23 14:23:16 -0700168import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_SINGLE_HOMED_DOWN;
Ray Milkeye96d0de2018-11-02 17:12:21 -0700169import static org.onosproject.segmentrouting.OsgiPropertyConstants.PROP_SYMMETRIC_PROBING;
Ray Milkey05edbfc2018-10-23 14:23:16 -0700170import static org.onosproject.segmentrouting.OsgiPropertyConstants.PW_TRANSPORT_VLAN_DEFAULT;
171import static org.onosproject.segmentrouting.OsgiPropertyConstants.RESPOND_TO_UNKNOWN_HOSTS_DEFAULT;
172import static org.onosproject.segmentrouting.OsgiPropertyConstants.ROUTE_DOUBLE_TAGGED_HOSTS_DEFAULT;
psneha86e60d32019-03-26 06:31:41 -0400173import static org.onosproject.segmentrouting.OsgiPropertyConstants.ROUTE_SIMPLIFICATION_DEFAULT;
Ray Milkey05edbfc2018-10-23 14:23:16 -0700174import static org.onosproject.segmentrouting.OsgiPropertyConstants.SINGLE_HOMED_DOWN_DEFAULT;
Ray Milkeye96d0de2018-11-02 17:12:21 -0700175import static org.onosproject.segmentrouting.OsgiPropertyConstants.SYMMETRIC_PROBING_DEFAULT;
Charles Chand6d25332016-02-26 22:19:52 -0800176
Charles Chanb7f75ac2016-01-11 18:28:54 -0800177/**
178 * Segment routing manager.
179 */
Ray Milkey05edbfc2018-10-23 14:23:16 -0700180@Component(
181 immediate = true,
182 service = SegmentRoutingService.class,
183 property = {
184 PROP_ACTIVE_PROBING + ":Boolean=" + ACTIVE_PROBING_DEFAULT,
185 PROP_SINGLE_HOMED_DOWN + ":Boolean=" + SINGLE_HOMED_DOWN_DEFAULT,
186 PROP_RESPOND_TO_UNKNOWN_HOSTS + ":Boolean=" + RESPOND_TO_UNKNOWN_HOSTS_DEFAULT,
187 PROP_ROUTE_DOUBLE_TAGGED_HOSTS + ":Boolean=" + ROUTE_DOUBLE_TAGGED_HOSTS_DEFAULT,
188 PROP_DEFAULT_INTERNAL_VLAN + ":Integer=" + DEFAULT_INTERNAL_VLAN_DEFAULT,
189 PROP_PW_TRANSPORT_VLAN + ":Integer=" + PW_TRANSPORT_VLAN_DEFAULT,
psneha86e60d32019-03-26 06:31:41 -0400190 PROP_SYMMETRIC_PROBING + ":Boolean=" + SYMMETRIC_PROBING_DEFAULT,
191 PROP_ROUTE_SIMPLIFICATION + ":Boolean=" + ROUTE_SIMPLIFICATION_DEFAULT
Ray Milkey05edbfc2018-10-23 14:23:16 -0700192 }
193)
sangho27462c62015-05-14 00:39:53 -0700194public class SegmentRoutingManager implements SegmentRoutingService {
sangho80f11cb2015-04-01 13:05:26 -0700195
Charles Chan46fdfaf2016-11-09 20:51:44 -0800196 private static Logger log = LoggerFactory.getLogger(SegmentRoutingManager.class);
Charles Chan910be6a2017-08-23 14:46:43 -0700197 private static final String NOT_MASTER = "Current instance is not the master of {}. Ignore.";
sangho80f11cb2015-04-01 13:05:26 -0700198
Ray Milkey2bd24a92018-08-17 14:54:17 -0700199 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chandebfea32016-10-24 14:52:01 -0700200 private ComponentConfigService compCfgService;
sangho80f11cb2015-04-01 13:05:26 -0700201
Ray Milkey2bd24a92018-08-17 14:54:17 -0700202 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chancf789822019-03-22 10:04:27 -0700203 public NeighbourResolutionService neighbourResolutionService;
Pier Ventreb6a7f342016-11-26 21:05:22 -0800204
Ray Milkey2bd24a92018-08-17 14:54:17 -0700205 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Luigi69f774d2018-02-28 12:10:50 +0100206 public CoreService coreService;
sangho80f11cb2015-04-01 13:05:26 -0700207
Ray Milkey2bd24a92018-08-17 14:54:17 -0700208 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chandebfea32016-10-24 14:52:01 -0700209 PacketService packetService;
sangho80f11cb2015-04-01 13:05:26 -0700210
Ray Milkey2bd24a92018-08-17 14:54:17 -0700211 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chandebfea32016-10-24 14:52:01 -0700212 HostService hostService;
sangho80f11cb2015-04-01 13:05:26 -0700213
Ray Milkey2bd24a92018-08-17 14:54:17 -0700214 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chanc6bcdf92018-06-01 16:33:48 -0700215 HostProbingService probingService;
Charles Chan873661e2017-11-30 15:37:50 -0800216
Ray Milkey2bd24a92018-08-17 14:54:17 -0700217 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Luigi69f774d2018-02-28 12:10:50 +0100218 public DeviceService deviceService;
sangho80f11cb2015-04-01 13:05:26 -0700219
Ray Milkey2bd24a92018-08-17 14:54:17 -0700220 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Saurav Dase6c448a2018-01-18 12:07:33 -0800221 DeviceAdminService deviceAdminService;
222
Ray Milkey2bd24a92018-08-17 14:54:17 -0700223 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Ventref3cf5b92016-11-09 14:17:26 -0800224 public FlowObjectiveService flowObjectiveService;
sangho80f11cb2015-04-01 13:05:26 -0700225
Ray Milkey2bd24a92018-08-17 14:54:17 -0700226 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Luigi69f774d2018-02-28 12:10:50 +0100227 public LinkService linkService;
sangho27462c62015-05-14 00:39:53 -0700228
Ray Milkey2bd24a92018-08-17 14:54:17 -0700229 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Ventref3cf5b92016-11-09 14:17:26 -0800230 public MastershipService mastershipService;
Charles Chandebfea32016-10-24 14:52:01 -0700231
Ray Milkey2bd24a92018-08-17 14:54:17 -0700232 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Ventref3cf5b92016-11-09 14:17:26 -0800233 public StorageService storageService;
Charles Chandebfea32016-10-24 14:52:01 -0700234
Ray Milkey2bd24a92018-08-17 14:54:17 -0700235 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Luigi69f774d2018-02-28 12:10:50 +0100236 public MulticastRouteService multicastRouteService;
Charles Chandebfea32016-10-24 14:52:01 -0700237
Ray Milkey2bd24a92018-08-17 14:54:17 -0700238 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chan83163812018-01-09 13:45:07 -0800239 public TopologyService topologyService;
Charles Chandebfea32016-10-24 14:52:01 -0700240
Ray Milkey2bd24a92018-08-17 14:54:17 -0700241 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chan19b70032019-04-17 14:20:26 -0700242 public RouteService routeService;
Charles Chan82ab1932016-01-30 23:22:37 -0800243
Ray Milkey2bd24a92018-08-17 14:54:17 -0700244 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chan46fdfaf2016-11-09 20:51:44 -0800245 public NetworkConfigRegistry cfgService;
Charles Chan82ab1932016-01-30 23:22:37 -0800246
Ray Milkey2bd24a92018-08-17 14:54:17 -0700247 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Charles Chan46fdfaf2016-11-09 20:51:44 -0800248 public InterfaceService interfaceService;
249
Ray Milkey2bd24a92018-08-17 14:54:17 -0700250 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pier Luigi580fd8a2018-01-16 10:47:50 +0100251 public ClusterService clusterService;
252
Ray Milkey2bd24a92018-08-17 14:54:17 -0700253 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Pierdb27b8d2018-04-17 16:29:56 +0200254 public WorkPartitionService workPartitionService;
Pier Luigi580fd8a2018-01-16 10:47:50 +0100255
Ray Milkey2bd24a92018-08-17 14:54:17 -0700256 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Jonghwan Hyun9aaa34f2018-04-09 09:40:50 -0700257 public LeadershipService leadershipService;
258
Charles Chanb4f9cd12019-02-27 11:46:32 -0800259 @Reference(cardinality = ReferenceCardinality.OPTIONAL,
260 bind = "bindXconnectService",
261 unbind = "unbindXconnectService",
262 policy = ReferencePolicy.DYNAMIC)
Charles Chan8d316332018-06-19 20:31:57 -0700263 public XconnectService xconnectService;
264
Ray Milkey05edbfc2018-10-23 14:23:16 -0700265 /** Enable active probing to discover dual-homed hosts. */
266 boolean activeProbing = ACTIVE_PROBING_DEFAULT;
Charles Chan873661e2017-11-30 15:37:50 -0800267
Ray Milkeye96d0de2018-11-02 17:12:21 -0700268 /** Enable only send probe on the same port number of the pair device. */
269 boolean symmetricProbing = SYMMETRIC_PROBING_DEFAULT;
Mayank Tiwarif7942402018-10-29 18:27:35 -0400270
Ray Milkey05edbfc2018-10-23 14:23:16 -0700271 /** Enable administratively taking down single-homed hosts. */
272 boolean singleHomedDown = SINGLE_HOMED_DOWN_DEFAULT;
Saurav Dasec683dc2018-04-27 18:42:30 -0700273
Ray Milkey05edbfc2018-10-23 14:23:16 -0700274 /** Enable this to respond to ARP/NDP requests from unknown hosts. */
275 boolean respondToUnknownHosts = RESPOND_TO_UNKNOWN_HOSTS_DEFAULT;
Andreas Pantelopoulos6464d862018-06-18 12:50:35 -0700276
Ray Milkey05edbfc2018-10-23 14:23:16 -0700277 /** Program flows and groups to pop and route double tagged hosts. */
278 boolean routeDoubleTaggedHosts = ROUTE_DOUBLE_TAGGED_HOSTS_DEFAULT;
Charles Chan4eb73bb2018-07-19 14:55:31 -0700279
Ray Milkey05edbfc2018-10-23 14:23:16 -0700280 /** internal vlan assigned by default to unconfigured ports. */
281 private int defaultInternalVlan = DEFAULT_INTERNAL_VLAN_DEFAULT;
Saurav Das9bf49582018-08-13 15:34:26 -0700282
Ray Milkey05edbfc2018-10-23 14:23:16 -0700283 /** vlan used for transport of pseudowires between switches. */
284 private int pwTransportVlan = PW_TRANSPORT_VLAN_DEFAULT;
Saurav Das9bf49582018-08-13 15:34:26 -0700285
psneha86e60d32019-03-26 06:31:41 -0400286 /** Enabling route simplification. */
287 boolean routeSimplification = ROUTE_SIMPLIFICATION_DEFAULT;
288
Charles Chandebfea32016-10-24 14:52:01 -0700289 ArpHandler arpHandler = null;
290 IcmpHandler icmpHandler = null;
291 IpHandler ipHandler = null;
292 RoutingRulePopulator routingRulePopulator = null;
Ray Milkeyb85de082017-04-05 09:42:04 -0700293 ApplicationId appId;
294 DeviceConfiguration deviceConfiguration = null;
sangho80f11cb2015-04-01 13:05:26 -0700295
Charles Chandebfea32016-10-24 14:52:01 -0700296 DefaultRoutingHandler defaultRoutingHandler = null;
sangho27462c62015-05-14 00:39:53 -0700297 private TunnelHandler tunnelHandler = null;
298 private PolicyHandler policyHandler = null;
Charles Chan2b078ae2015-10-14 11:24:40 -0700299 private InternalPacketProcessor processor = null;
300 private InternalLinkListener linkListener = null;
301 private InternalDeviceListener deviceListener = null;
Charles Chan82f19972016-05-17 13:13:55 -0700302 private AppConfigHandler appCfgHandler = null;
Saurav Dase6c448a2018-01-18 12:07:33 -0800303 McastHandler mcastHandler = null;
304 HostHandler hostHandler = null;
Pier Ventreb6a7f342016-11-26 21:05:22 -0800305 private RouteHandler routeHandler = null;
Saurav Dase6c448a2018-01-18 12:07:33 -0800306 LinkHandler linkHandler = null;
Pier Ventreb6b81d52016-12-02 08:16:05 -0800307 private SegmentRoutingNeighbourDispatcher neighbourHandler = null;
Andreas Pantelopouloscdbb22c2018-02-23 14:18:00 -0800308 private DefaultL2TunnelHandler l2TunnelHandler = null;
Pier Luigid8a15162018-02-15 16:33:08 +0100309 private TopologyHandler topologyHandler = null;
Charles Chan82ab1932016-01-30 23:22:37 -0800310 private final InternalHostListener hostListener = new InternalHostListener();
Charles Chanc91c8782016-03-30 17:54:24 -0700311 private final InternalConfigListener cfgListener = new InternalConfigListener(this);
312 private final InternalMcastListener mcastListener = new InternalMcastListener();
Charles Chandebfea32016-10-24 14:52:01 -0700313 private final InternalRouteEventListener routeListener = new InternalRouteEventListener();
Pier Luigid8a15162018-02-15 16:33:08 +0100314 private final InternalTopologyListener topologyListener = new InternalTopologyListener();
Charles Chanfbcb8812018-04-18 18:41:05 -0700315 private final InternalMastershipListener mastershipListener = new InternalMastershipListener();
Saurav Das00e553b2018-04-21 17:19:48 -0700316 final InternalClusterListener clusterListener = new InternalClusterListener();
Andrea Campanella060cad82018-04-17 12:09:34 +0200317 //Completable future for network configuration process to buffer config events handling during activation
318 private CompletableFuture<Boolean> networkConfigCompletion = null;
Ray Milkey521e4392018-11-16 15:15:14 -0800319 private final Object networkConfigCompletionLock = new Object();
Charles Chan39b75522018-04-21 00:44:29 -0700320 private List<Event> queuedEvents = new CopyOnWriteArrayList<>();
sangho80f11cb2015-04-01 13:05:26 -0700321
Charles Chan52003922018-04-05 16:31:15 -0700322 // Handles device, link, topology and network config events
Charles Chanfbcb8812018-04-18 18:41:05 -0700323 private ScheduledExecutorService mainEventExecutor;
sangho80f11cb2015-04-01 13:05:26 -0700324
Charles Chanfbcb8812018-04-18 18:41:05 -0700325 // Handles host, route and mcast events respectively
326 private ScheduledExecutorService hostEventExecutor;
327 private ScheduledExecutorService routeEventExecutor;
328 private ScheduledExecutorService mcastEventExecutor;
Charles Chan77cdde42018-05-08 21:35:50 -0700329 private ExecutorService packetExecutor;
Charles Chana7601c92019-01-23 15:03:17 -0800330 ExecutorService neighborExecutor;
Charles Chan52003922018-04-05 16:31:15 -0700331
332 Map<DeviceId, DefaultGroupHandler> groupHandlerMap = new ConcurrentHashMap<>();
Charles Chanb7f75ac2016-01-11 18:28:54 -0800333 /**
Saurav Das261c3002017-06-13 15:35:54 -0700334 * Per device next objective ID store with (device id + destination set) as key.
Charles Chan53de91f2017-08-22 15:07:34 -0700335 * Used to keep track on MPLS group information.
Charles Chanb7f75ac2016-01-11 18:28:54 -0800336 */
Charles Chan873661e2017-11-30 15:37:50 -0800337 private EventuallyConsistentMap<DestinationSetNextObjectiveStoreKey, NextNeighbors>
Saurav Das261c3002017-06-13 15:35:54 -0700338 dsNextObjStore = null;
Charles Chanb7f75ac2016-01-11 18:28:54 -0800339 /**
Charles Chan53de91f2017-08-22 15:07:34 -0700340 * Per device next objective ID store with (device id + vlanid) as key.
341 * Used to keep track on L2 flood group information.
Charles Chanb7f75ac2016-01-11 18:28:54 -0800342 */
Charles Chan873661e2017-11-30 15:37:50 -0800343 private EventuallyConsistentMap<VlanNextObjectiveStoreKey, Integer>
Charles Chan10b0fb72017-02-02 16:20:42 -0800344 vlanNextObjStore = null;
Charles Chanb7f75ac2016-01-11 18:28:54 -0800345 /**
Charles Chan53de91f2017-08-22 15:07:34 -0700346 * Per device next objective ID store with (device id + port + treatment + meta) as key.
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000347 * Used to keep track on L2 interface group and L3 unicast group information for direct hosts.
Charles Chanb7f75ac2016-01-11 18:28:54 -0800348 */
Charles Chan873661e2017-11-30 15:37:50 -0800349 private EventuallyConsistentMap<PortNextObjectiveStoreKey, Integer>
Saurav Das2d94d312015-11-24 23:21:05 -0800350 portNextObjStore = null;
Charles Chan10b0fb72017-02-02 16:20:42 -0800351
Jonghwan Hyun9aaa34f2018-04-09 09:40:50 -0700352 /**
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000353 * Per device next objective ID store with (device id + MAC address + vlan) as key.
354 * Used to keep track of L3 unicast group for indirect hosts.
355 */
356 private EventuallyConsistentMap<MacVlanNextObjectiveStoreKey, Integer>
357 macVlanNextObjStore = null;
358
Saurav Das2d94d312015-11-24 23:21:05 -0800359 private EventuallyConsistentMap<String, Tunnel> tunnelStore = null;
360 private EventuallyConsistentMap<String, Policy> policyStore = null;
sangho4a5c42a2015-05-20 22:16:38 -0700361
Saurav Das261c3002017-06-13 15:35:54 -0700362 private AtomicBoolean programmingScheduled = new AtomicBoolean();
363
Charles Chanc91c8782016-03-30 17:54:24 -0700364 private final ConfigFactory<DeviceId, SegmentRoutingDeviceConfig> deviceConfigFactory =
Charles Chan82f19972016-05-17 13:13:55 -0700365 new ConfigFactory<DeviceId, SegmentRoutingDeviceConfig>(
366 SubjectFactories.DEVICE_SUBJECT_FACTORY,
Charles Chanc91c8782016-03-30 17:54:24 -0700367 SegmentRoutingDeviceConfig.class, "segmentrouting") {
Charles Chan72f556a2015-10-05 17:50:33 -0700368 @Override
Charles Chan82ab1932016-01-30 23:22:37 -0800369 public SegmentRoutingDeviceConfig createConfig() {
370 return new SegmentRoutingDeviceConfig();
Charles Chan72f556a2015-10-05 17:50:33 -0700371 }
372 };
Pier Ventre6b19e482016-11-07 16:21:04 -0800373
Charles Chanc91c8782016-03-30 17:54:24 -0700374 private final ConfigFactory<ApplicationId, SegmentRoutingAppConfig> appConfigFactory =
Charles Chan82f19972016-05-17 13:13:55 -0700375 new ConfigFactory<ApplicationId, SegmentRoutingAppConfig>(
376 SubjectFactories.APP_SUBJECT_FACTORY,
Charles Chanc91c8782016-03-30 17:54:24 -0700377 SegmentRoutingAppConfig.class, "segmentrouting") {
Charles Chan82ab1932016-01-30 23:22:37 -0800378 @Override
379 public SegmentRoutingAppConfig createConfig() {
380 return new SegmentRoutingAppConfig();
381 }
382 };
Pier Ventre6b19e482016-11-07 16:21:04 -0800383
Charles Chanc91c8782016-03-30 17:54:24 -0700384 private ConfigFactory<ApplicationId, McastConfig> mcastConfigFactory =
Charles Chan82f19972016-05-17 13:13:55 -0700385 new ConfigFactory<ApplicationId, McastConfig>(
386 SubjectFactories.APP_SUBJECT_FACTORY,
Charles Chanc91c8782016-03-30 17:54:24 -0700387 McastConfig.class, "multicast") {
388 @Override
389 public McastConfig createConfig() {
390 return new McastConfig();
391 }
392 };
393
Charles Chan1963f4f2016-02-18 14:22:42 -0800394 /**
395 * Segment Routing App ID.
396 */
Charles Chan46fdfaf2016-11-09 20:51:44 -0800397 public static final String APP_NAME = "org.onosproject.segmentrouting";
Saurav Das7c305372015-10-28 12:39:42 -0700398
Jonghwan Hyun9aaa34f2018-04-09 09:40:50 -0700399 /**
400 * Minumum and maximum value of dummy VLAN ID to be allocated.
401 */
402 public static final int MIN_DUMMY_VLAN_ID = 2;
403 public static final int MAX_DUMMY_VLAN_ID = 4093;
404
Charles Chana7601c92019-01-23 15:03:17 -0800405 private static final int DEFAULT_POOL_SIZE = 32;
406
Saurav Dasec683dc2018-04-27 18:42:30 -0700407 Instant lastEdgePortEvent = Instant.EPOCH;
408
Charles Chanb4f9cd12019-02-27 11:46:32 -0800409 protected void bindXconnectService(XconnectService xconnectService) {
410 if (this.xconnectService == null) {
411 log.info("Binding XconnectService");
412 this.xconnectService = xconnectService;
413 } else {
414 log.warn("Trying to bind XconnectService but it is already bound");
415 }
416 }
417
418 protected void unbindXconnectService(XconnectService xconnectService) {
419 if (this.xconnectService == xconnectService) {
420 log.info("Unbinding XconnectService");
421 this.xconnectService = null;
422 } else {
423 log.warn("Trying to unbind XconnectService but it is already unbound");
424 }
425 }
426
sangho80f11cb2015-04-01 13:05:26 -0700427 @Activate
Charles Chan873661e2017-11-30 15:37:50 -0800428 protected void activate(ComponentContext context) {
Charles Chan46fdfaf2016-11-09 20:51:44 -0800429 appId = coreService.registerApplication(APP_NAME);
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700430
Charles Chana7601c92019-01-23 15:03:17 -0800431 mainEventExecutor = Executors.newSingleThreadScheduledExecutor(
432 groupedThreads("onos/sr", "event-main-%d", log));
433 hostEventExecutor = Executors.newSingleThreadScheduledExecutor(
434 groupedThreads("onos/sr", "event-host-%d", log));
435 routeEventExecutor = Executors.newSingleThreadScheduledExecutor(
436 groupedThreads("onos/sr", "event-route-%d", log));
437 mcastEventExecutor = Executors.newSingleThreadScheduledExecutor(
438 groupedThreads("onos/sr", "event-mcast-%d", log));
439 packetExecutor = Executors.newSingleThreadExecutor(groupedThreads("onos/sr", "packet-%d", log));
440 neighborExecutor = Executors.newFixedThreadPool(DEFAULT_POOL_SIZE,
441 groupedThreads("onos/sr", "neighbor-%d", log));
Charles Chanfbcb8812018-04-18 18:41:05 -0700442
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700443 log.debug("Creating EC map nsnextobjectivestore");
Saurav Das261c3002017-06-13 15:35:54 -0700444 EventuallyConsistentMapBuilder<DestinationSetNextObjectiveStoreKey, NextNeighbors>
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700445 nsNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
Saurav Das261c3002017-06-13 15:35:54 -0700446 dsNextObjStore = nsNextObjMapBuilder
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700447 .withName("nsnextobjectivestore")
Jonathan Hart54541d12016-04-12 15:39:44 -0700448 .withSerializer(createSerializer())
Madan Jampani675ae202015-06-24 19:05:56 -0700449 .withTimestampProvider((k, v) -> new WallClockTimestamp())
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700450 .build();
Saurav Das261c3002017-06-13 15:35:54 -0700451 log.trace("Current size {}", dsNextObjStore.size());
Srikanth Vavilapalli7cd16712015-05-04 09:48:09 -0700452
Charles Chan10b0fb72017-02-02 16:20:42 -0800453 log.debug("Creating EC map vlannextobjectivestore");
454 EventuallyConsistentMapBuilder<VlanNextObjectiveStoreKey, Integer>
455 vlanNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
456 vlanNextObjStore = vlanNextObjMapBuilder
457 .withName("vlannextobjectivestore")
Jonathan Hart54541d12016-04-12 15:39:44 -0700458 .withSerializer(createSerializer())
Charles Chan77277672015-10-20 16:24:19 -0700459 .withTimestampProvider((k, v) -> new WallClockTimestamp())
460 .build();
461
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000462 log.debug("Creating EC map macvlannextobjectivestore");
463 EventuallyConsistentMapBuilder<MacVlanNextObjectiveStoreKey, Integer>
464 macVlanNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
465 macVlanNextObjStore = macVlanNextObjMapBuilder
466 .withName("macvlannextobjectivestore")
467 .withSerializer(createSerializer())
468 .withTimestampProvider((k, v) -> new WallClockTimestamp())
469 .build();
470
Saurav Das2d94d312015-11-24 23:21:05 -0800471 log.debug("Creating EC map subnetnextobjectivestore");
472 EventuallyConsistentMapBuilder<PortNextObjectiveStoreKey, Integer>
473 portNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
474 portNextObjStore = portNextObjMapBuilder
475 .withName("portnextobjectivestore")
Jonathan Hart54541d12016-04-12 15:39:44 -0700476 .withSerializer(createSerializer())
Saurav Das2d94d312015-11-24 23:21:05 -0800477 .withTimestampProvider((k, v) -> new WallClockTimestamp())
478 .build();
479
sangho4a5c42a2015-05-20 22:16:38 -0700480 EventuallyConsistentMapBuilder<String, Tunnel> tunnelMapBuilder =
481 storageService.eventuallyConsistentMapBuilder();
sangho4a5c42a2015-05-20 22:16:38 -0700482 tunnelStore = tunnelMapBuilder
483 .withName("tunnelstore")
Jonathan Hart54541d12016-04-12 15:39:44 -0700484 .withSerializer(createSerializer())
Madan Jampani675ae202015-06-24 19:05:56 -0700485 .withTimestampProvider((k, v) -> new WallClockTimestamp())
sangho4a5c42a2015-05-20 22:16:38 -0700486 .build();
487
488 EventuallyConsistentMapBuilder<String, Policy> policyMapBuilder =
489 storageService.eventuallyConsistentMapBuilder();
sangho4a5c42a2015-05-20 22:16:38 -0700490 policyStore = policyMapBuilder
491 .withName("policystore")
Jonathan Hart54541d12016-04-12 15:39:44 -0700492 .withSerializer(createSerializer())
Madan Jampani675ae202015-06-24 19:05:56 -0700493 .withTimestampProvider((k, v) -> new WallClockTimestamp())
sangho4a5c42a2015-05-20 22:16:38 -0700494 .build();
495
Saurav Dasc3604f12016-03-23 11:22:49 -0700496 compCfgService.preSetProperty("org.onosproject.net.group.impl.GroupManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700497 "purgeOnDisconnection", "true", false);
Saurav Dasc3604f12016-03-23 11:22:49 -0700498 compCfgService.preSetProperty("org.onosproject.net.flow.impl.FlowRuleManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700499 "purgeOnDisconnection", "true", false);
Pier Luigib9632ba2017-01-12 18:14:58 -0800500 compCfgService.preSetProperty("org.onosproject.provider.host.impl.HostLocationProvider",
Charles Chan0fa51db2019-04-10 17:12:20 -0700501 "requestInterceptsEnabled", "false", false);
Charles Chanc1909e12017-08-08 15:13:37 -0700502 compCfgService.preSetProperty("org.onosproject.net.neighbour.impl.NeighbourResolutionManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700503 "requestInterceptsEnabled", "false", false);
Charles Chan9597f8d2017-07-24 15:56:10 -0700504 compCfgService.preSetProperty("org.onosproject.dhcprelay.DhcpRelayManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700505 "arpEnabled", "false", false);
Pier Luigi0ebeb312017-02-02 22:31:34 -0800506 compCfgService.preSetProperty("org.onosproject.net.host.impl.HostManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700507 "greedyLearningIpv6", "true", false);
Charles Chancf8ea472017-02-28 15:15:17 -0800508 compCfgService.preSetProperty("org.onosproject.routing.cpr.ControlPlaneRedirectManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700509 "forceUnprovision", "true", false);
Charles Chanc7b73c72017-08-10 16:57:28 -0700510 compCfgService.preSetProperty("org.onosproject.routeservice.store.RouteStoreImpl",
Charles Chan0fa51db2019-04-10 17:12:20 -0700511 "distributed", "true", false);
Charles Chan804772f2017-08-14 11:42:11 -0700512 compCfgService.preSetProperty("org.onosproject.provider.host.impl.HostLocationProvider",
Charles Chan0fa51db2019-04-10 17:12:20 -0700513 "multihomingEnabled", "true", false);
Charles Chan0c9c19f2017-11-29 19:54:20 -0800514 compCfgService.preSetProperty("org.onosproject.provider.lldp.impl.LldpLinkProvider",
Charles Chan0fa51db2019-04-10 17:12:20 -0700515 "staleLinkAge", "15000", false);
Charles Chan0c9c19f2017-11-29 19:54:20 -0800516 compCfgService.preSetProperty("org.onosproject.net.host.impl.HostManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700517 "allowDuplicateIps", "false", false);
Yi Tsenga7da8d82018-08-19 03:09:54 +0800518 // For P4 switches
519 compCfgService.preSetProperty("org.onosproject.net.flow.impl.FlowRuleManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700520 "fallbackFlowPollFrequency", "4", false);
Yi Tsenga7da8d82018-08-19 03:09:54 +0800521 compCfgService.preSetProperty("org.onosproject.net.group.impl.GroupManager",
Charles Chan0fa51db2019-04-10 17:12:20 -0700522 "fallbackGroupPollFrequency", "3", false);
Charles Chan873661e2017-11-30 15:37:50 -0800523 compCfgService.registerProperties(getClass());
524 modified(context);
Saurav Dasc3604f12016-03-23 11:22:49 -0700525
Charles Chan2b078ae2015-10-14 11:24:40 -0700526 processor = new InternalPacketProcessor();
527 linkListener = new InternalLinkListener();
528 deviceListener = new InternalDeviceListener();
Charles Chan82f19972016-05-17 13:13:55 -0700529 appCfgHandler = new AppConfigHandler(this);
Charles Chan1eaf4802016-04-18 13:44:03 -0700530 mcastHandler = new McastHandler(this);
531 hostHandler = new HostHandler(this);
Saurav Dase6c448a2018-01-18 12:07:33 -0800532 linkHandler = new LinkHandler(this);
Charles Chandebfea32016-10-24 14:52:01 -0700533 routeHandler = new RouteHandler(this);
Pier Ventreb6b81d52016-12-02 08:16:05 -0800534 neighbourHandler = new SegmentRoutingNeighbourDispatcher(this);
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800535 l2TunnelHandler = new DefaultL2TunnelHandler(this);
Pier Luigid8a15162018-02-15 16:33:08 +0100536 topologyHandler = new TopologyHandler(this);
Charles Chan2b078ae2015-10-14 11:24:40 -0700537
Charles Chand6d25332016-02-26 22:19:52 -0800538 cfgService.addListener(cfgListener);
Charles Chanc91c8782016-03-30 17:54:24 -0700539 cfgService.registerConfigFactory(deviceConfigFactory);
540 cfgService.registerConfigFactory(appConfigFactory);
541 cfgService.registerConfigFactory(mcastConfigFactory);
Saurav Dase321cff2018-02-09 17:26:45 -0800542 log.info("Configuring network before adding listeners");
Andrea Campanella060cad82018-04-17 12:09:34 +0200543
Charles Chan6961f222018-01-04 14:26:07 -0800544 cfgListener.configureNetwork();
545
Charles Chan82ab1932016-01-30 23:22:37 -0800546 hostService.addListener(hostListener);
Charles Chan2b078ae2015-10-14 11:24:40 -0700547 packetService.addProcessor(processor, PacketProcessor.director(2));
548 linkService.addListener(linkListener);
549 deviceService.addListener(deviceListener);
Charles Chanc91c8782016-03-30 17:54:24 -0700550 multicastRouteService.addListener(mcastListener);
Charles Chanfd48c222017-06-19 00:43:31 -0700551 routeService.addListener(routeListener);
Pier Luigid8a15162018-02-15 16:33:08 +0100552 topologyService.addListener(topologyListener);
Charles Chanfbcb8812018-04-18 18:41:05 -0700553 mastershipService.addListener(mastershipListener);
Saurav Das00e553b2018-04-21 17:19:48 -0700554 clusterService.addListener(clusterListener);
Charles Chan2b078ae2015-10-14 11:24:40 -0700555
Charles Chanc12c3d02018-03-09 15:53:44 -0800556 linkHandler.init();
Andreas Pantelopoulos75eef062018-01-11 07:53:48 -0800557 l2TunnelHandler.init();
558
Ray Milkey521e4392018-11-16 15:15:14 -0800559 synchronized (networkConfigCompletionLock) {
560 networkConfigCompletion.whenComplete((value, ex) -> {
561 //setting to null for easier fall through
562 networkConfigCompletion = null;
563 //process all queued events
564 queuedEvents.forEach(event -> {
565 mainEventExecutor.execute(new InternalEventHandler(event));
566 });
Andrea Campanella060cad82018-04-17 12:09:34 +0200567 });
Ray Milkey521e4392018-11-16 15:15:14 -0800568 }
Andrea Campanella060cad82018-04-17 12:09:34 +0200569
sangho80f11cb2015-04-01 13:05:26 -0700570 log.info("Started");
571 }
572
Saurav Dase6c448a2018-01-18 12:07:33 -0800573 KryoNamespace.Builder createSerializer() {
Jonathan Hart54541d12016-04-12 15:39:44 -0700574 return new KryoNamespace.Builder()
575 .register(KryoNamespaces.API)
Saurav Das261c3002017-06-13 15:35:54 -0700576 .register(DestinationSetNextObjectiveStoreKey.class,
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800577 VlanNextObjectiveStoreKey.class,
578 DestinationSet.class,
Andreas Pantelopoulos92998c92018-05-29 13:11:14 -0700579 DestinationSet.DestinationSetType.class,
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800580 NextNeighbors.class,
581 Tunnel.class,
582 DefaultTunnel.class,
583 Policy.class,
584 TunnelPolicy.class,
585 Policy.Type.class,
586 PortNextObjectiveStoreKey.class,
587 XConnectStoreKey.class,
588 L2Tunnel.class,
589 L2TunnelPolicy.class,
590 DefaultL2Tunnel.class,
Jonghwan Hyun9aaa34f2018-04-09 09:40:50 -0700591 DefaultL2TunnelPolicy.class,
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000592 MacVlanNextObjectiveStoreKey.class
Jonathan Hart54541d12016-04-12 15:39:44 -0700593 );
594 }
595
sangho80f11cb2015-04-01 13:05:26 -0700596 @Deactivate
597 protected void deactivate() {
Charles Chanfbcb8812018-04-18 18:41:05 -0700598 mainEventExecutor.shutdown();
599 hostEventExecutor.shutdown();
600 routeEventExecutor.shutdown();
601 mcastEventExecutor.shutdown();
Charles Chan77cdde42018-05-08 21:35:50 -0700602 packetExecutor.shutdown();
Charles Chana7601c92019-01-23 15:03:17 -0800603 neighborExecutor.shutdown();
Charles Chanfbcb8812018-04-18 18:41:05 -0700604
Ray Milkeyaee4d3e2018-05-11 09:59:19 -0700605 mainEventExecutor = null;
606 hostEventExecutor = null;
607 routeEventExecutor = null;
608 mcastEventExecutor = null;
609 packetExecutor = null;
Charles Chana7601c92019-01-23 15:03:17 -0800610 neighborExecutor = null;
Ray Milkeyaee4d3e2018-05-11 09:59:19 -0700611
Charles Chan72f556a2015-10-05 17:50:33 -0700612 cfgService.removeListener(cfgListener);
Charles Chanc91c8782016-03-30 17:54:24 -0700613 cfgService.unregisterConfigFactory(deviceConfigFactory);
614 cfgService.unregisterConfigFactory(appConfigFactory);
615 cfgService.unregisterConfigFactory(mcastConfigFactory);
Charles Chan873661e2017-11-30 15:37:50 -0800616 compCfgService.unregisterProperties(getClass(), false);
Charles Chan72f556a2015-10-05 17:50:33 -0700617
Charles Chanfd48c222017-06-19 00:43:31 -0700618 hostService.removeListener(hostListener);
sangho80f11cb2015-04-01 13:05:26 -0700619 packetService.removeProcessor(processor);
Charles Chan2b078ae2015-10-14 11:24:40 -0700620 linkService.removeListener(linkListener);
621 deviceService.removeListener(deviceListener);
Charles Chanc91c8782016-03-30 17:54:24 -0700622 multicastRouteService.removeListener(mcastListener);
Charles Chandebfea32016-10-24 14:52:01 -0700623 routeService.removeListener(routeListener);
Pier Luigid8a15162018-02-15 16:33:08 +0100624 topologyService.removeListener(topologyListener);
Charles Chanfbcb8812018-04-18 18:41:05 -0700625 mastershipService.removeListener(mastershipListener);
Saurav Das00e553b2018-04-21 17:19:48 -0700626 clusterService.removeListener(clusterListener);
Charles Chanc91c8782016-03-30 17:54:24 -0700627
Charles Chan2e71ef32017-02-23 15:44:08 -0800628 neighbourResolutionService.unregisterNeighbourHandlers(appId);
629
sangho80f11cb2015-04-01 13:05:26 -0700630 processor = null;
Charles Chan2b078ae2015-10-14 11:24:40 -0700631 linkListener = null;
Charles Chanc91c8782016-03-30 17:54:24 -0700632 deviceListener = null;
Charles Chan05bb1702018-04-19 13:10:01 -0700633 groupHandlerMap.forEach((k, v) -> v.shutdown());
Charles Chan2b078ae2015-10-14 11:24:40 -0700634 groupHandlerMap.clear();
Saurav Das49368392018-04-23 18:42:12 -0700635 defaultRoutingHandler.shutdown();
Charles Chan2b078ae2015-10-14 11:24:40 -0700636
Saurav Das261c3002017-06-13 15:35:54 -0700637 dsNextObjStore.destroy();
Charles Chan10b0fb72017-02-02 16:20:42 -0800638 vlanNextObjStore.destroy();
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000639 macVlanNextObjStore.destroy();
Charles Chanc91c8782016-03-30 17:54:24 -0700640 portNextObjStore.destroy();
Charles Chanc91c8782016-03-30 17:54:24 -0700641 tunnelStore.destroy();
642 policyStore.destroy();
Pier Luigi35dab3f2018-01-25 16:16:02 +0100643
644 mcastHandler.terminate();
piercf557922019-05-17 20:47:06 +0200645 hostHandler.terminate();
sangho80f11cb2015-04-01 13:05:26 -0700646 log.info("Stopped");
647 }
648
Charles Chan873661e2017-11-30 15:37:50 -0800649 @Modified
650 private void modified(ComponentContext context) {
651 Dictionary<?, ?> properties = context.getProperties();
652 if (properties == null) {
653 return;
654 }
655
Ray Milkey48d10c02018-10-24 10:04:03 -0700656 String strActiveProbing = Tools.get(properties, PROP_ACTIVE_PROBING);
Andreas Pantelopoulos6464d862018-06-18 12:50:35 -0700657 boolean expectActiveProbing = Boolean.parseBoolean(strActiveProbing);
Charles Chan873661e2017-11-30 15:37:50 -0800658 if (expectActiveProbing != activeProbing) {
659 activeProbing = expectActiveProbing;
660 log.info("{} active probing", activeProbing ? "Enabling" : "Disabling");
661 }
Saurav Dasec683dc2018-04-27 18:42:30 -0700662
Ray Milkeye96d0de2018-11-02 17:12:21 -0700663
664 String strSymmetricProbing = Tools.get(properties, PROP_SYMMETRIC_PROBING);
665 boolean expectSymmetricProbing = Boolean.parseBoolean(strSymmetricProbing);
Mayank Tiwarif7942402018-10-29 18:27:35 -0400666 if (expectSymmetricProbing != symmetricProbing) {
667 symmetricProbing = expectSymmetricProbing;
668 log.info("{} symmetric probing", symmetricProbing ? "Enabling" : "Disabling");
669 }
670
Ray Milkey48d10c02018-10-24 10:04:03 -0700671 String strSingleHomedDown = Tools.get(properties, PROP_SINGLE_HOMED_DOWN);
Saurav Dasec683dc2018-04-27 18:42:30 -0700672 boolean expectSingleHomedDown = Boolean.parseBoolean(strSingleHomedDown);
673 if (expectSingleHomedDown != singleHomedDown) {
674 singleHomedDown = expectSingleHomedDown;
675 log.info("{} downing of single homed hosts for lost uplinks",
676 singleHomedDown ? "Enabling" : "Disabling");
677 if (singleHomedDown && linkHandler != null) {
678 hostService.getHosts().forEach(host -> host.locations()
679 .forEach(loc -> {
680 if (interfaceService.isConfigured(loc)) {
681 linkHandler.checkUplinksForHost(loc);
682 }
683 }));
684 } else {
685 log.warn("Disabling singleHomedDown does not re-enable already "
686 + "downed ports for single-homed hosts");
687 }
688 }
Andreas Pantelopoulos6464d862018-06-18 12:50:35 -0700689
Ray Milkey48d10c02018-10-24 10:04:03 -0700690 String strRespondToUnknownHosts = Tools.get(properties, PROP_RESPOND_TO_UNKNOWN_HOSTS);
Andreas Pantelopoulos6464d862018-06-18 12:50:35 -0700691 boolean expectRespondToUnknownHosts = Boolean.parseBoolean(strRespondToUnknownHosts);
692 if (expectRespondToUnknownHosts != respondToUnknownHosts) {
693 respondToUnknownHosts = expectRespondToUnknownHosts;
694 log.info("{} responding to ARPs/NDPs from unknown hosts", respondToUnknownHosts ? "Enabling" : "Disabling");
695 }
Charles Chan4eb73bb2018-07-19 14:55:31 -0700696
Ray Milkey48d10c02018-10-24 10:04:03 -0700697 String strRouteDoubleTaggedHosts = Tools.get(properties, PROP_ROUTE_DOUBLE_TAGGED_HOSTS);
Charles Chanfbca55e2018-07-24 16:40:35 -0700698 boolean expectRouteDoubleTaggedHosts = Boolean.parseBoolean(strRouteDoubleTaggedHosts);
699 if (expectRouteDoubleTaggedHosts != routeDoubleTaggedHosts) {
700 routeDoubleTaggedHosts = expectRouteDoubleTaggedHosts;
701 log.info("{} routing for double tagged hosts", routeDoubleTaggedHosts ? "Enabling" : "Disabling");
Charles Chan4eb73bb2018-07-19 14:55:31 -0700702
Charles Chanfbca55e2018-07-24 16:40:35 -0700703 if (routeDoubleTaggedHosts) {
Charles Chan4eb73bb2018-07-19 14:55:31 -0700704 hostHandler.populateAllDoubleTaggedHost();
705 } else {
706 hostHandler.revokeAllDoubleTaggedHost();
707 }
708 }
Saurav Das9bf49582018-08-13 15:34:26 -0700709
Ray Milkey48d10c02018-10-24 10:04:03 -0700710 String strDefaultInternalVlan = Tools.get(properties, PROP_DEFAULT_INTERNAL_VLAN);
Saurav Das9bf49582018-08-13 15:34:26 -0700711 int defIntVlan = Integer.parseInt(strDefaultInternalVlan);
712 if (defIntVlan != defaultInternalVlan) {
713 if (canUseVlanId(defIntVlan)) {
714 log.warn("Default internal vlan value changed from {} to {}.. "
715 + "re-programming filtering rules, but NOT any groups already "
716 + "created with the former value", defaultInternalVlan, defIntVlan);
717 VlanId oldDefIntVlan = VlanId.vlanId((short) defaultInternalVlan);
718 defaultInternalVlan = defIntVlan;
719 routingRulePopulator
720 .updateSpecialVlanFilteringRules(true, oldDefIntVlan,
721 VlanId.vlanId((short) defIntVlan));
722 } else {
723 log.warn("Cannot change default internal vlan to unusable "
724 + "value {}", defIntVlan);
725 }
726 }
727
Ray Milkey48d10c02018-10-24 10:04:03 -0700728 String strPwTxpVlan = Tools.get(properties, PROP_PW_TRANSPORT_VLAN);
Saurav Das9bf49582018-08-13 15:34:26 -0700729 int pwTxpVlan = Integer.parseInt(strPwTxpVlan);
730 if (pwTxpVlan != pwTransportVlan) {
731 if (canUseVlanId(pwTxpVlan)) {
732 log.warn("Pseudowire transport vlan value changed from {} to {}.. "
733 + "re-programming filtering rules, but NOT any groups already "
734 + "created with the former value", pwTransportVlan,
735 pwTxpVlan);
736 VlanId oldPwTxpVlan = VlanId.vlanId((short) pwTransportVlan);
737 pwTransportVlan = pwTxpVlan;
738 routingRulePopulator
739 .updateSpecialVlanFilteringRules(false, oldPwTxpVlan,
740 VlanId.vlanId((short) pwTxpVlan));
741 } else {
742 log.warn("Cannot change pseudowire transport vlan to unusable "
743 + "value {}", pwTxpVlan);
744 }
745 }
746
psneha86e60d32019-03-26 06:31:41 -0400747 String strRouteSimplification = Tools.get(properties, PROP_ROUTE_SIMPLIFICATION);
748 boolean expectRouteSimplification = Boolean.parseBoolean(strRouteSimplification);
749 if (expectRouteSimplification != routeSimplification) {
750 routeSimplification = expectRouteSimplification;
751 log.info("{} route simplification", routeSimplification ? "Enabling" : "Disabling");
752 }
753
Saurav Das9bf49582018-08-13 15:34:26 -0700754 }
755
756 /**
757 * Returns true if given vlan id is not being used in the system currently,
758 * either as one of the default system wide vlans or as one of the
759 * configured interface vlans.
760 *
761 * @param vlanId given vlan id
762 * @return true if vlan is not currently in use
763 */
764 public boolean canUseVlanId(int vlanId) {
765 if (vlanId >= 4095 || vlanId <= 1) {
766 log.error("Vlan id {} value is not in valid range 2 <--> 4094",
767 vlanId);
768 return false;
769 }
770
771 VlanId vid = VlanId.vlanId((short) vlanId);
772 if (getDefaultInternalVlan().equals(vid) || getPwTransportVlan().equals(vid)) {
773 log.warn("Vlan id {} value is already in use system-wide. "
774 + "DefaultInternalVlan:{} PwTransportVlan:{} ", vlanId,
775 getDefaultInternalVlan(), getPwTransportVlan());
776 return false;
777 }
778
779 if (interfaceService.inUse(vid)) {
780 log.warn("Vlan id {} value is already in use on a configured "
781 + "interface in the system", vlanId);
782 return false;
783 }
784 return true;
785 }
786
787 /**
788 * Returns the VlanId assigned internally by default to unconfigured ports.
789 *
790 * @return the default internal vlan id
791 */
792 public VlanId getDefaultInternalVlan() {
793 return VlanId.vlanId((short) defaultInternalVlan);
794 }
795
796 /**
797 * Returns the Vlan id used to transport pseudowire traffic across the
798 * network.
799 *
800 * @return the pseudowire transport vlan id
801 */
802 public VlanId getPwTransportVlan() {
803 return VlanId.vlanId((short) pwTransportVlan);
Charles Chan873661e2017-11-30 15:37:50 -0800804 }
805
sangho27462c62015-05-14 00:39:53 -0700806 @Override
807 public List<Tunnel> getTunnels() {
808 return tunnelHandler.getTunnels();
809 }
810
811 @Override
sanghobd812f82015-06-29 14:58:47 -0700812 public TunnelHandler.Result createTunnel(Tunnel tunnel) {
813 return tunnelHandler.createTunnel(tunnel);
sangho27462c62015-05-14 00:39:53 -0700814 }
815
816 @Override
sanghobd812f82015-06-29 14:58:47 -0700817 public TunnelHandler.Result removeTunnel(Tunnel tunnel) {
sangho27462c62015-05-14 00:39:53 -0700818 for (Policy policy: policyHandler.getPolicies()) {
819 if (policy.type() == Policy.Type.TUNNEL_FLOW) {
820 TunnelPolicy tunnelPolicy = (TunnelPolicy) policy;
821 if (tunnelPolicy.tunnelId().equals(tunnel.id())) {
822 log.warn("Cannot remove the tunnel used by a policy");
sanghobd812f82015-06-29 14:58:47 -0700823 return TunnelHandler.Result.TUNNEL_IN_USE;
sangho27462c62015-05-14 00:39:53 -0700824 }
825 }
826 }
sanghobd812f82015-06-29 14:58:47 -0700827 return tunnelHandler.removeTunnel(tunnel);
sangho27462c62015-05-14 00:39:53 -0700828 }
829
830 @Override
sanghobd812f82015-06-29 14:58:47 -0700831 public PolicyHandler.Result removePolicy(Policy policy) {
832 return policyHandler.removePolicy(policy);
sangho27462c62015-05-14 00:39:53 -0700833 }
834
835 @Override
sanghobd812f82015-06-29 14:58:47 -0700836 public PolicyHandler.Result createPolicy(Policy policy) {
837 return policyHandler.createPolicy(policy);
sangho27462c62015-05-14 00:39:53 -0700838 }
839
840 @Override
841 public List<Policy> getPolicies() {
842 return policyHandler.getPolicies();
843 }
844
Saurav Das07c74602016-04-27 18:35:50 -0700845 @Override
Andreas Pantelopoulosd988c1a2018-03-15 16:56:09 -0700846 public Set<L2TunnelDescription> getL2TunnelDescriptions(boolean pending) {
847 return l2TunnelHandler.getL2Descriptions(pending);
Andreas Pantelopoulosfc4bc2a2018-03-12 16:30:20 -0700848 }
849
850 @Override
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800851 public List<L2Tunnel> getL2Tunnels() {
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -0700852 return l2TunnelHandler.getL2Tunnels();
853 }
854
855 @Override
Andreas Pantelopoulos4c7de132018-02-22 12:32:42 -0800856 public List<L2TunnelPolicy> getL2Policies() {
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -0700857 return l2TunnelHandler.getL2Policies();
858 }
859
Saurav Dasdebcf882018-04-06 20:16:01 -0700860 @Override
Andreas Pantelopoulos96851252018-03-20 13:58:49 -0700861 @Deprecated
Andreas Pantelopoulosfc4bc2a2018-03-12 16:30:20 -0700862 public L2TunnelHandler.Result addPseudowiresBulk(List<DefaultL2TunnelDescription> bulkPseudowires) {
863
Andreas Pantelopoulosd988c1a2018-03-15 16:56:09 -0700864 // get both added and pending pseudowires
865 List<L2TunnelDescription> pseudowires = new ArrayList<>();
866 pseudowires.addAll(l2TunnelHandler.getL2Descriptions(false));
867 pseudowires.addAll(l2TunnelHandler.getL2Descriptions(true));
Andreas Pantelopoulosfc4bc2a2018-03-12 16:30:20 -0700868 pseudowires.addAll(bulkPseudowires);
Andreas Pantelopoulosd988c1a2018-03-15 16:56:09 -0700869
Andreas Pantelopoulosfc4bc2a2018-03-12 16:30:20 -0700870 Set<L2TunnelDescription> newPseudowires = new HashSet(bulkPseudowires);
871
Andreas Pantelopoulos96851252018-03-20 13:58:49 -0700872 L2TunnelHandler.Result retRes = L2TunnelHandler.Result.SUCCESS;
873 L2TunnelHandler.Result res;
874 for (DefaultL2TunnelDescription pw : bulkPseudowires) {
875 res = addPseudowire(pw);
876 if (res != L2TunnelHandler.Result.SUCCESS) {
877 log.error("Pseudowire with id {} can not be instantiated !", res);
878 retRes = res;
879 }
Andreas Pantelopoulosfc4bc2a2018-03-12 16:30:20 -0700880 }
Andreas Pantelopoulos96851252018-03-20 13:58:49 -0700881
882 return retRes;
Andreas Pantelopoulosfc4bc2a2018-03-12 16:30:20 -0700883 }
884
885 @Override
Andreas Pantelopouloscdbb22c2018-02-23 14:18:00 -0800886 public L2TunnelHandler.Result addPseudowire(L2TunnelDescription l2TunnelDescription) {
Andreas Pantelopoulos87a06102018-03-21 16:44:18 -0700887 return l2TunnelHandler.deployPseudowire(l2TunnelDescription);
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -0700888 }
889
890 @Override
Andreas Pantelopouloscdbb22c2018-02-23 14:18:00 -0800891 public L2TunnelHandler.Result removePseudowire(Integer pwId) {
Andreas Pantelopoulos87a06102018-03-21 16:44:18 -0700892 return l2TunnelHandler.tearDownPseudowire(pwId);
Andreas Pantelopoulos5e7be3d2017-10-23 12:18:25 -0700893 }
894
895 @Override
Saurav Das07c74602016-04-27 18:35:50 -0700896 public void rerouteNetwork() {
897 cfgListener.configureNetwork();
Saurav Das07c74602016-04-27 18:35:50 -0700898 }
899
Charles Chand7844e52016-10-20 17:02:44 -0700900 @Override
Pier Ventreb6a7f342016-11-26 21:05:22 -0800901 public Map<DeviceId, Set<IpPrefix>> getDeviceSubnetMap() {
902 Map<DeviceId, Set<IpPrefix>> deviceSubnetMap = Maps.newHashMap();
Jonathan Hart61e24e12017-11-30 18:23:42 -0800903 deviceConfiguration.getRouters().forEach(device ->
904 deviceSubnetMap.put(device, deviceConfiguration.getSubnets(device)));
Charles Chand7844e52016-10-20 17:02:44 -0700905 return deviceSubnetMap;
906 }
907
Saurav Das62ae6792017-05-15 15:34:25 -0700908
909 @Override
910 public ImmutableMap<DeviceId, EcmpShortestPathGraph> getCurrentEcmpSpg() {
911 if (defaultRoutingHandler != null) {
912 return defaultRoutingHandler.getCurrentEmcpSpgMap();
913 } else {
914 return null;
915 }
916 }
917
918 @Override
Charles Chan0b1dd7e2018-08-19 19:21:46 -0700919 public ImmutableMap<DestinationSetNextObjectiveStoreKey, NextNeighbors> getDstNextObjStore() {
Saurav Das261c3002017-06-13 15:35:54 -0700920 if (dsNextObjStore != null) {
921 return ImmutableMap.copyOf(dsNextObjStore.entrySet());
Saurav Das62ae6792017-05-15 15:34:25 -0700922 } else {
923 return ImmutableMap.of();
924 }
925 }
926
Saurav Dasfbe74572017-08-03 18:30:35 -0700927 @Override
Charles Chan0b1dd7e2018-08-19 19:21:46 -0700928 public ImmutableMap<VlanNextObjectiveStoreKey, Integer> getVlanNextObjStore() {
929 if (vlanNextObjStore != null) {
930 return ImmutableMap.copyOf(vlanNextObjStore.entrySet());
931 } else {
932 return ImmutableMap.of();
933 }
934 }
935
936 @Override
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000937 public ImmutableMap<MacVlanNextObjectiveStoreKey, Integer> getMacVlanNextObjStore() {
938 if (macVlanNextObjStore != null) {
939 return ImmutableMap.copyOf(macVlanNextObjStore.entrySet());
940 } else {
941 return ImmutableMap.of();
942 }
943 }
944
945 @Override
Charles Chan0b1dd7e2018-08-19 19:21:46 -0700946 public ImmutableMap<PortNextObjectiveStoreKey, Integer> getPortNextObjStore() {
947 if (portNextObjStore != null) {
948 return ImmutableMap.copyOf(portNextObjStore.entrySet());
949 } else {
950 return ImmutableMap.of();
951 }
952 }
953
954 @Override
955 public ImmutableMap<String, NextObjective> getPwInitNext() {
956 if (l2TunnelHandler != null) {
957 return l2TunnelHandler.getInitNext();
958 } else {
959 return ImmutableMap.of();
960 }
961 }
962
963 @Override
964 public ImmutableMap<String, NextObjective> getPwTermNext() {
965 if (l2TunnelHandler != null) {
966 return l2TunnelHandler.getTermNext();
967 } else {
968 return ImmutableMap.of();
969 }
970 }
971
972 @Override
973 public void invalidateNextObj(int nextId) {
974 if (dsNextObjStore != null) {
975 dsNextObjStore.entrySet().forEach(e -> {
976 if (e.getValue().nextId() == nextId) {
977 dsNextObjStore.remove(e.getKey());
978 }
979 });
980 }
981 if (vlanNextObjStore != null) {
982 vlanNextObjStore.entrySet().forEach(e -> {
983 if (e.getValue() == nextId) {
984 vlanNextObjStore.remove(e.getKey());
985 }
986 });
987 }
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +0000988 if (macVlanNextObjStore != null) {
989 macVlanNextObjStore.entrySet().forEach(e -> {
990 if (e.getValue() == nextId) {
991 macVlanNextObjStore.remove(e.getKey());
992 }
993 });
994 }
Charles Chan0b1dd7e2018-08-19 19:21:46 -0700995 if (portNextObjStore != null) {
996 portNextObjStore.entrySet().forEach(e -> {
997 if (e.getValue() == nextId) {
998 portNextObjStore.remove(e.getKey());
999 }
1000 });
1001 }
1002 if (mcastHandler != null) {
1003 mcastHandler.removeNextId(nextId);
1004 }
1005 if (l2TunnelHandler != null) {
1006 l2TunnelHandler.removeNextId(nextId);
1007 }
1008 if (xconnectService != null) {
1009 xconnectService.removeNextId(nextId);
1010 }
1011 }
1012
1013 @Override
Saurav Dasfbe74572017-08-03 18:30:35 -07001014 public void verifyGroups(DeviceId id) {
1015 DefaultGroupHandler gh = groupHandlerMap.get(id);
1016 if (gh != null) {
1017 gh.triggerBucketCorrector();
1018 }
1019 }
1020
Saurav Das6430f412018-01-25 09:49:01 -08001021 @Override
1022 public ImmutableMap<Link, Boolean> getSeenLinks() {
1023 return linkHandler.getSeenLinks();
1024 }
1025
1026 @Override
1027 public ImmutableMap<DeviceId, Set<PortNumber>> getDownedPortState() {
1028 return linkHandler.getDownedPorts();
1029 }
1030
Pier Luigi0f9635b2018-01-15 18:06:43 +01001031 @Override
1032 public Map<McastStoreKey, Integer> getMcastNextIds(IpAddress mcastIp) {
Charles Chan0b1dd7e2018-08-19 19:21:46 -07001033 return mcastHandler.getNextIds(mcastIp);
Pier Luigi0f9635b2018-01-15 18:06:43 +01001034 }
1035
1036 @Override
Pier Luigi69f774d2018-02-28 12:10:50 +01001037 public Map<McastStoreKey, McastRole> getMcastRoles(IpAddress mcastIp) {
Pier Luigi0f9635b2018-01-15 18:06:43 +01001038 return mcastHandler.getMcastRoles(mcastIp);
1039 }
1040
1041 @Override
Piere99511d2018-04-19 16:47:06 +02001042 public Map<McastRoleStoreKey, McastRole> getMcastRoles(IpAddress mcastIp, ConnectPoint sourcecp) {
1043 return mcastHandler.getMcastRoles(mcastIp, sourcecp);
1044 }
1045
1046 @Override
Pier Luigi0f9635b2018-01-15 18:06:43 +01001047 public Map<ConnectPoint, List<ConnectPoint>> getMcastPaths(IpAddress mcastIp) {
1048 return mcastHandler.getMcastPaths(mcastIp);
1049 }
1050
Pierdb27b8d2018-04-17 16:29:56 +02001051 @Override
Pier71c55772018-04-17 17:25:22 +02001052 public Multimap<ConnectPoint, List<ConnectPoint>> getMcastTrees(IpAddress mcastIp,
1053 ConnectPoint sourcecp) {
1054 return mcastHandler.getMcastTrees(mcastIp, sourcecp);
1055 }
1056
1057 @Override
Pierdb27b8d2018-04-17 16:29:56 +02001058 public Map<IpAddress, NodeId> getMcastLeaders(IpAddress mcastIp) {
1059 return mcastHandler.getMcastLeaders(mcastIp);
1060 }
1061
Charles Chanb13e0702018-04-17 18:56:53 -07001062 @Override
1063 public Map<Set<DeviceId>, NodeId> getShouldProgram() {
1064 return defaultRoutingHandler == null ? ImmutableMap.of() :
1065 ImmutableMap.copyOf(defaultRoutingHandler.shouldProgram);
1066 }
1067
1068 @Override
1069 public Map<DeviceId, Boolean> getShouldProgramCache() {
1070 return defaultRoutingHandler == null ? ImmutableMap.of() :
1071 ImmutableMap.copyOf(defaultRoutingHandler.shouldProgramCache);
1072 }
1073
Charles Chan8d316332018-06-19 20:31:57 -07001074 @Override
jayakumarthazhath66c9ec12018-10-01 00:51:54 +05301075 public boolean shouldProgram(DeviceId deviceId) {
1076 return defaultRoutingHandler.shouldProgram(deviceId);
1077 }
1078
1079 @Override
Ray Milkeyb85de082017-04-05 09:42:04 -07001080 public ApplicationId appId() {
1081 return appId;
1082 }
1083
1084 /**
1085 * Returns the device configuration.
1086 *
1087 * @return device configuration
1088 */
1089 public DeviceConfiguration deviceConfiguration() {
1090 return deviceConfiguration;
1091 }
1092
1093 /**
Saurav Das261c3002017-06-13 15:35:54 -07001094 * Per device next objective ID store with (device id + destination set) as key.
Charles Chan53de91f2017-08-22 15:07:34 -07001095 * Used to keep track on MPLS group information.
Ray Milkeyb85de082017-04-05 09:42:04 -07001096 *
1097 * @return next objective ID store
1098 */
Saurav Das261c3002017-06-13 15:35:54 -07001099 public EventuallyConsistentMap<DestinationSetNextObjectiveStoreKey, NextNeighbors>
1100 dsNextObjStore() {
1101 return dsNextObjStore;
Ray Milkeyb85de082017-04-05 09:42:04 -07001102 }
1103
1104 /**
Charles Chan53de91f2017-08-22 15:07:34 -07001105 * Per device next objective ID store with (device id + vlanid) as key.
1106 * Used to keep track on L2 flood group information.
Ray Milkeyb85de082017-04-05 09:42:04 -07001107 *
1108 * @return vlan next object store
1109 */
1110 public EventuallyConsistentMap<VlanNextObjectiveStoreKey, Integer> vlanNextObjStore() {
1111 return vlanNextObjStore;
1112 }
1113
1114 /**
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001115 * Per device next objective ID store with (device id + MAC address + vlan) as key.
1116 * Used to keep track on L3 Unicast group information for indirect hosts.
1117 *
1118 * @return mac vlan next object store
1119 */
1120 public EventuallyConsistentMap<MacVlanNextObjectiveStoreKey, Integer> macVlanNextObjStore() {
1121 return macVlanNextObjStore;
1122 }
1123
1124 /**
Charles Chan53de91f2017-08-22 15:07:34 -07001125 * Per device next objective ID store with (device id + port + treatment + meta) as key.
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001126 * Used to keep track on L2 interface group and L3 unicast group information for direct hosts.
Ray Milkeyb85de082017-04-05 09:42:04 -07001127 *
1128 * @return port next object store.
1129 */
1130 public EventuallyConsistentMap<PortNextObjectiveStoreKey, Integer> portNextObjStore() {
1131 return portNextObjStore;
1132 }
1133
1134 /**
Saurav Das261c3002017-06-13 15:35:54 -07001135 * Returns the MPLS-ECMP configuration which indicates whether ECMP on
1136 * labeled packets should be programmed or not.
Pier Ventre7a78de22016-10-31 15:00:01 -07001137 *
1138 * @return MPLS-ECMP value
1139 */
1140 public boolean getMplsEcmp() {
1141 SegmentRoutingAppConfig segmentRoutingAppConfig = cfgService
1142 .getConfig(this.appId, SegmentRoutingAppConfig.class);
1143 return segmentRoutingAppConfig != null && segmentRoutingAppConfig.mplsEcmp();
1144 }
1145
1146 /**
sangho80f1f892015-05-19 11:57:42 -07001147 * Returns the tunnel object with the tunnel ID.
1148 *
1149 * @param tunnelId Tunnel ID
1150 * @return Tunnel reference
1151 */
sangho27462c62015-05-14 00:39:53 -07001152 public Tunnel getTunnel(String tunnelId) {
1153 return tunnelHandler.getTunnel(tunnelId);
1154 }
1155
Charles Chan8d316332018-06-19 20:31:57 -07001156 @Override
Pier Luigi69f774d2018-02-28 12:10:50 +01001157 public VlanId getInternalVlanId(ConnectPoint connectPoint) {
Charles Chan098ca202018-05-01 11:50:20 -07001158 VlanId untaggedVlanId = interfaceService.getUntaggedVlanId(connectPoint);
1159 VlanId nativeVlanId = interfaceService.getNativeVlanId(connectPoint);
Charles Chand9265a32017-06-16 15:19:24 -07001160 return untaggedVlanId != null ? untaggedVlanId : nativeVlanId;
1161 }
1162
Charles Chan8d316332018-06-19 20:31:57 -07001163 @Override
1164 public Optional<DeviceId> getPairDeviceId(DeviceId deviceId) {
Charles Chan3ed34d82017-06-22 18:03:14 -07001165 SegmentRoutingDeviceConfig deviceConfig =
1166 cfgService.getConfig(deviceId, SegmentRoutingDeviceConfig.class);
1167 return Optional.ofNullable(deviceConfig).map(SegmentRoutingDeviceConfig::pairDeviceId);
1168 }
Charles Chan8d316332018-06-19 20:31:57 -07001169
1170 @Override
Saurav Dasec683dc2018-04-27 18:42:30 -07001171 public Optional<PortNumber> getPairLocalPort(DeviceId deviceId) {
Charles Chan3ed34d82017-06-22 18:03:14 -07001172 SegmentRoutingDeviceConfig deviceConfig =
1173 cfgService.getConfig(deviceId, SegmentRoutingDeviceConfig.class);
1174 return Optional.ofNullable(deviceConfig).map(SegmentRoutingDeviceConfig::pairLocalPort);
1175 }
1176
1177 /**
Charles Chanf0ae41e2017-08-23 13:55:39 -07001178 * Returns locations of given resolved route.
1179 *
1180 * @param resolvedRoute resolved route
1181 * @return locations of nexthop. Might be empty if next hop is not found
1182 */
Charles Chan19b70032019-04-17 14:20:26 -07001183 public Set<ConnectPoint> nextHopLocations(ResolvedRoute resolvedRoute) {
Charles Chanf0ae41e2017-08-23 13:55:39 -07001184 HostId hostId = HostId.hostId(resolvedRoute.nextHopMac(), resolvedRoute.nextHopVlan());
1185 return Optional.ofNullable(hostService.getHost(hostId))
1186 .map(Host::locations).orElse(Sets.newHashSet())
1187 .stream().map(l -> (ConnectPoint) l).collect(Collectors.toSet());
1188 }
1189
1190 /**
Charles Chan90772a72017-02-08 15:52:08 -08001191 * Returns vlan port map of given device.
1192 *
1193 * @param deviceId device id
1194 * @return vlan-port multimap
1195 */
1196 public Multimap<VlanId, PortNumber> getVlanPortMap(DeviceId deviceId) {
1197 HashMultimap<VlanId, PortNumber> vlanPortMap = HashMultimap.create();
1198
1199 interfaceService.getInterfaces().stream()
1200 .filter(intf -> intf.connectPoint().deviceId().equals(deviceId))
1201 .forEach(intf -> {
1202 vlanPortMap.put(intf.vlanUntagged(), intf.connectPoint().port());
Charles Chan3ed34d82017-06-22 18:03:14 -07001203 intf.vlanTagged().forEach(vlanTagged ->
1204 vlanPortMap.put(vlanTagged, intf.connectPoint().port())
1205 );
Charles Chan90772a72017-02-08 15:52:08 -08001206 vlanPortMap.put(intf.vlanNative(), intf.connectPoint().port());
1207 });
1208 vlanPortMap.removeAll(VlanId.NONE);
1209
1210 return vlanPortMap;
1211 }
1212
1213 /**
Charles Chan10b0fb72017-02-02 16:20:42 -08001214 * Returns the next objective ID for the given vlan id. It is expected
Saurav Das2d94d312015-11-24 23:21:05 -08001215 * that the next-objective has been pre-created from configuration.
Charles Chan77277672015-10-20 16:24:19 -07001216 *
1217 * @param deviceId Device ID
Charles Chan10b0fb72017-02-02 16:20:42 -08001218 * @param vlanId VLAN ID
Saurav Das2d94d312015-11-24 23:21:05 -08001219 * @return next objective ID or -1 if it was not found
Charles Chan77277672015-10-20 16:24:19 -07001220 */
Charles Chan3ed34d82017-06-22 18:03:14 -07001221 int getVlanNextObjectiveId(DeviceId deviceId, VlanId vlanId) {
Charles Chan77277672015-10-20 16:24:19 -07001222 if (groupHandlerMap.get(deviceId) != null) {
Charles Chan10b0fb72017-02-02 16:20:42 -08001223 log.trace("getVlanNextObjectiveId query in device {}", deviceId);
1224 return groupHandlerMap.get(deviceId).getVlanNextObjectiveId(vlanId);
Charles Chan77277672015-10-20 16:24:19 -07001225 } else {
Charles Chan10b0fb72017-02-02 16:20:42 -08001226 log.warn("getVlanNextObjectiveId query - groupHandler for "
Saurav Das2d94d312015-11-24 23:21:05 -08001227 + "device {} not found", deviceId);
1228 return -1;
1229 }
1230 }
1231
1232 /**
1233 * Returns the next objective ID for the given portNumber, given the treatment.
1234 * There could be multiple different treatments to the same outport, which
Saurav Das2cb38292017-03-29 19:09:17 -07001235 * would result in different objectives. If the next object does not exist,
1236 * and should be created, a new one is created and its id is returned.
Saurav Das2d94d312015-11-24 23:21:05 -08001237 *
1238 * @param deviceId Device ID
1239 * @param portNum port number on device for which NextObjective is queried
1240 * @param treatment the actions to apply on the packets (should include outport)
1241 * @param meta metadata passed into the creation of a Next Objective if necessary
Saurav Das2cb38292017-03-29 19:09:17 -07001242 * @param createIfMissing true if a next object should be created if not found
Saurav Das07c74602016-04-27 18:35:50 -07001243 * @return next objective ID or -1 if an error occurred during retrieval or creation
Saurav Das2d94d312015-11-24 23:21:05 -08001244 */
1245 public int getPortNextObjectiveId(DeviceId deviceId, PortNumber portNum,
1246 TrafficTreatment treatment,
Saurav Das2cb38292017-03-29 19:09:17 -07001247 TrafficSelector meta,
1248 boolean createIfMissing) {
Saurav Das2d94d312015-11-24 23:21:05 -08001249 DefaultGroupHandler ghdlr = groupHandlerMap.get(deviceId);
1250 if (ghdlr != null) {
Saurav Das2cb38292017-03-29 19:09:17 -07001251 return ghdlr.getPortNextObjectiveId(portNum, treatment, meta, createIfMissing);
Saurav Das2d94d312015-11-24 23:21:05 -08001252 } else {
Charles Chanb7f75ac2016-01-11 18:28:54 -08001253 log.warn("getPortNextObjectiveId query - groupHandler for device {}"
1254 + " not found", deviceId);
1255 return -1;
1256 }
1257 }
1258
Saurav Das62ae6792017-05-15 15:34:25 -07001259 /**
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001260 * Returns the next Objective ID for the given mac and vlan, given the treatment.
1261 * There could be multiple different treatments to the same outport, which
1262 * would result in different objectives. If the next object does not exist,
1263 * and should be created, a new one is created and its id is returned.
1264 *
1265 * @param deviceId Device ID
1266 * @param macAddr mac of host for which Next ID is required.
1267 * @param vlanId vlan of host for which Next ID is required.
Ruchi Sahota07869322019-05-09 17:26:14 -04001268 * @param port port with which to create the Next Obj.
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001269 * @param createIfMissing true if a next object should be created if not found
1270 * @return next objective ID or -1 if an error occurred during retrieval or creation
1271 */
1272 public int getMacVlanNextObjectiveId(DeviceId deviceId, MacAddress macAddr, VlanId vlanId,
Ruchi Sahota07869322019-05-09 17:26:14 -04001273 PortNumber port, boolean createIfMissing) {
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001274 DefaultGroupHandler ghdlr = groupHandlerMap.get(deviceId);
1275 if (ghdlr != null) {
Ruchi Sahota07869322019-05-09 17:26:14 -04001276 return ghdlr.getMacVlanNextObjectiveId(macAddr, vlanId, port, createIfMissing);
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001277 } else {
1278 log.warn("getMacVlanNextObjectiveId query - groupHandler for device {}"
1279 + " not found", deviceId);
1280 return -1;
1281 }
1282 }
1283
1284 /**
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001285 * Updates the next objective for the given nextId .
1286 *
1287 * @param deviceId Device ID
1288 * @param hostMac mac of host for which Next obj is to be updated.
1289 * @param hostVlanId vlan of host for which Next obj is to be updated.
1290 * @param port port with which to update the Next Obj.
1291 * @param nextId of Next Obj which needs to be updated.
1292 */
1293 public void updateMacVlanTreatment(DeviceId deviceId, MacAddress hostMac,
1294 VlanId hostVlanId, PortNumber port, int nextId) {
pierf0e37ec2019-11-26 11:48:48 +01001295 // Check if we are the king of this device
1296 // just one instance should perform this update
1297 if (!defaultRoutingHandler.shouldProgram(deviceId)) {
1298 log.debug("This instance is not handling the routing towards the "
1299 + "device {}", deviceId);
1300 return;
1301 }
1302 // Get the handler and perform the update
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001303 DefaultGroupHandler ghdlr = groupHandlerMap.get(deviceId);
1304 if (ghdlr != null) {
1305 ghdlr.updateL3UcastGroupBucket(hostMac, hostVlanId, port, nextId);
1306 } else {
1307 log.warn("updateL3UcastGroupBucket query - groupHandler for device {}"
1308 + " not found", deviceId);
1309 }
1310 }
1311
1312
1313 /**
Saurav Das62ae6792017-05-15 15:34:25 -07001314 * Returns the group handler object for the specified device id.
1315 *
1316 * @param devId the device identifier
1317 * @return the groupHandler object for the device id, or null if not found
1318 */
Charles Chan3ed34d82017-06-22 18:03:14 -07001319 DefaultGroupHandler getGroupHandler(DeviceId devId) {
Saurav Das62ae6792017-05-15 15:34:25 -07001320 return groupHandlerMap.get(devId);
1321 }
1322
1323 /**
Saurav Dasfbe74572017-08-03 18:30:35 -07001324 * Returns the default routing handler object.
1325 *
1326 * @return the default routing handler object
1327 */
1328 public DefaultRoutingHandler getRoutingHandler() {
1329 return defaultRoutingHandler;
1330 }
1331
sangho80f11cb2015-04-01 13:05:26 -07001332 private class InternalPacketProcessor implements PacketProcessor {
sangho80f11cb2015-04-01 13:05:26 -07001333 @Override
1334 public void process(PacketContext context) {
Charles Chan77cdde42018-05-08 21:35:50 -07001335 packetExecutor.execute(() -> processPacketInternal(context));
1336 }
sangho80f11cb2015-04-01 13:05:26 -07001337
Charles Chan77cdde42018-05-08 21:35:50 -07001338 private void processPacketInternal(PacketContext context) {
sangho80f11cb2015-04-01 13:05:26 -07001339 if (context.isHandled()) {
1340 return;
1341 }
1342
1343 InboundPacket pkt = context.inPacket();
1344 Ethernet ethernet = pkt.parsed();
Pier Luigi37a35432017-02-01 13:50:04 -08001345
1346 if (ethernet == null) {
1347 return;
1348 }
1349
Saurav Das261c3002017-06-13 15:35:54 -07001350 log.trace("Rcvd pktin from {}: {}", context.inPacket().receivedFrom(),
1351 ethernet);
Pier Ventreadb4ae62016-11-23 09:57:42 -08001352 if (ethernet.getEtherType() == TYPE_ARP) {
Saurav Das62ae6792017-05-15 15:34:25 -07001353 log.warn("Received unexpected ARP packet on {}",
1354 context.inPacket().receivedFrom());
Saurav Das368cf212017-03-15 15:15:14 -07001355 log.trace("{}", ethernet);
Pier Ventre6b2c1b32016-12-09 17:26:04 -08001356 return;
sangho80f11cb2015-04-01 13:05:26 -07001357 } else if (ethernet.getEtherType() == Ethernet.TYPE_IPV4) {
Pier Ventreb6b81d52016-12-02 08:16:05 -08001358 IPv4 ipv4Packet = (IPv4) ethernet.getPayload();
1359 //ipHandler.addToPacketBuffer(ipv4Packet);
1360 if (ipv4Packet.getProtocol() == IPv4.PROTOCOL_ICMP) {
1361 icmpHandler.processIcmp(ethernet, pkt.receivedFrom());
sangho80f11cb2015-04-01 13:05:26 -07001362 } else {
Charles Chand041ad82017-01-13 17:20:44 -08001363 // NOTE: We don't support IP learning at this moment so this
1364 // is not necessary. Also it causes duplication of DHCP packets.
Pier Ventre6b2c1b32016-12-09 17:26:04 -08001365 // ipHandler.processPacketIn(ipv4Packet, pkt.receivedFrom());
sangho80f11cb2015-04-01 13:05:26 -07001366 }
Pier Ventreb6a7f342016-11-26 21:05:22 -08001367 } else if (ethernet.getEtherType() == Ethernet.TYPE_IPV6) {
1368 IPv6 ipv6Packet = (IPv6) ethernet.getPayload();
Pier Ventreb6b81d52016-12-02 08:16:05 -08001369 //ipHandler.addToPacketBuffer(ipv6Packet);
Pier Luigi37a35432017-02-01 13:50:04 -08001370 // We deal with the packet only if the packet is a ICMP6 ECHO/REPLY
Pier Ventreb6b81d52016-12-02 08:16:05 -08001371 if (ipv6Packet.getNextHeader() == IPv6.PROTOCOL_ICMP6) {
1372 ICMP6 icmp6Packet = (ICMP6) ipv6Packet.getPayload();
1373 if (icmp6Packet.getIcmpType() == ICMP6.ECHO_REQUEST ||
1374 icmp6Packet.getIcmpType() == ICMP6.ECHO_REPLY) {
1375 icmpHandler.processIcmpv6(ethernet, pkt.receivedFrom());
1376 } else {
Saurav Das62ae6792017-05-15 15:34:25 -07001377 log.trace("Received ICMPv6 0x{} - not handled",
Charles Chand3727b72017-03-13 13:10:30 -07001378 Integer.toHexString(icmp6Packet.getIcmpType() & 0xff));
Pier Ventreb6b81d52016-12-02 08:16:05 -08001379 }
1380 } else {
1381 // NOTE: We don't support IP learning at this moment so this
1382 // is not necessary. Also it causes duplication of DHCPv6 packets.
1383 // ipHandler.processPacketIn(ipv6Packet, pkt.receivedFrom());
1384 }
sangho80f11cb2015-04-01 13:05:26 -07001385 }
1386 }
1387 }
1388
sangho80f11cb2015-04-01 13:05:26 -07001389 private class InternalEventHandler implements Runnable {
Charles Chan52003922018-04-05 16:31:15 -07001390 private Event event;
1391
1392 InternalEventHandler(Event event) {
1393 this.event = event;
1394 }
1395
Srikanth Vavilapalli37a461b2015-04-07 15:12:32 -07001396 @Override
sangho80f11cb2015-04-01 13:05:26 -07001397 public void run() {
Charles Chan52003922018-04-05 16:31:15 -07001398 try {
1399 // TODO We should also change SR routing and PW to listen to TopologyEvents
1400 if (event.type() == LinkEvent.Type.LINK_ADDED ||
1401 event.type() == LinkEvent.Type.LINK_UPDATED) {
1402 linkHandler.processLinkAdded((Link) event.subject());
1403 } else if (event.type() == LinkEvent.Type.LINK_REMOVED) {
1404 linkHandler.processLinkRemoved((Link) event.subject());
1405 } else if (event.type() == DeviceEvent.Type.DEVICE_ADDED ||
1406 event.type() == DeviceEvent.Type.DEVICE_AVAILABILITY_CHANGED ||
1407 event.type() == DeviceEvent.Type.DEVICE_UPDATED) {
1408 DeviceId deviceId = ((Device) event.subject()).id();
1409 if (deviceService.isAvailable(deviceId)) {
1410 log.info("** DEVICE UP Processing device event {} "
1411 + "for available device {}",
1412 event.type(), ((Device) event.subject()).id());
1413 processDeviceAdded((Device) event.subject());
Srikanth Vavilapalli64d96c12015-05-14 20:22:47 -07001414 } else {
Charles Chanb8f3af52018-08-29 21:21:51 -07001415 if (event.type() == DeviceEvent.Type.DEVICE_ADDED) {
1416 // Note: For p4 devices, the device will be added but unavailable at the beginning.
1417 // The device will later on being marked as available once the pipeline is pushed
1418 // to the device.
1419 log.info("** DEVICE ADDED but unavailable. Ignore");
1420 return;
1421 }
Charles Chan52003922018-04-05 16:31:15 -07001422 log.info(" ** DEVICE DOWN Processing device event {}"
1423 + " for unavailable device {}",
1424 event.type(), ((Device) event.subject()).id());
1425 processDeviceRemoved((Device) event.subject());
Srikanth Vavilapalli64d96c12015-05-14 20:22:47 -07001426 }
Charles Chan52003922018-04-05 16:31:15 -07001427 } else if (event.type() == DeviceEvent.Type.PORT_ADDED) {
1428 // typically these calls come when device is added first time
1429 // so port filtering rules are handled at the device_added event.
1430 // port added calls represent all ports on the device,
1431 // enabled or not.
1432 log.trace("** PORT ADDED {}/{} -> {}",
1433 ((DeviceEvent) event).subject().id(),
1434 ((DeviceEvent) event).port().number(),
1435 event.type());
1436 } else if (event.type() == DeviceEvent.Type.PORT_UPDATED) {
1437 // these calls happen for every subsequent event
1438 // ports enabled, disabled, switch goes away, comes back
1439 log.info("** PORT UPDATED {}/{} -> {}",
1440 event.subject(),
1441 ((DeviceEvent) event).port(),
1442 event.type());
Saurav Dasec683dc2018-04-27 18:42:30 -07001443 processPortUpdatedInternal(((Device) event.subject()),
Charles Chan52003922018-04-05 16:31:15 -07001444 ((DeviceEvent) event).port());
1445 } else if (event.type() == TopologyEvent.Type.TOPOLOGY_CHANGED) {
1446 // Process topology event, needed for all modules relying on
1447 // topology service for path computation
1448 TopologyEvent topologyEvent = (TopologyEvent) event;
1449 log.info("Processing topology event {}, topology age {}, reasons {}",
1450 event.type(), topologyEvent.subject().time(),
1451 topologyEvent.reasons().size());
1452 topologyHandler.processTopologyChange(topologyEvent.reasons());
1453 } else if (event.type() == HostEvent.Type.HOST_ADDED) {
1454 hostHandler.processHostAddedEvent((HostEvent) event);
1455 } else if (event.type() == HostEvent.Type.HOST_MOVED) {
1456 hostHandler.processHostMovedEvent((HostEvent) event);
1457 routeHandler.processHostMovedEvent((HostEvent) event);
Charles Chana2ccb582019-11-25 09:47:22 -08001458 } else if (event.type() == HostEvent.Type.HOST_AUX_MOVED) {
1459 hostHandler.processHostMovedEvent((HostEvent) event);
1460 // TODO RouteHandler also needs to process this event in order to
1461 // support nexthops that has auxLocations
Charles Chan52003922018-04-05 16:31:15 -07001462 } else if (event.type() == HostEvent.Type.HOST_REMOVED) {
1463 hostHandler.processHostRemovedEvent((HostEvent) event);
1464 } else if (event.type() == HostEvent.Type.HOST_UPDATED) {
1465 hostHandler.processHostUpdatedEvent((HostEvent) event);
1466 } else if (event.type() == RouteEvent.Type.ROUTE_ADDED) {
1467 routeHandler.processRouteAdded((RouteEvent) event);
1468 } else if (event.type() == RouteEvent.Type.ROUTE_UPDATED) {
1469 routeHandler.processRouteUpdated((RouteEvent) event);
1470 } else if (event.type() == RouteEvent.Type.ROUTE_REMOVED) {
1471 routeHandler.processRouteRemoved((RouteEvent) event);
1472 } else if (event.type() == RouteEvent.Type.ALTERNATIVE_ROUTES_CHANGED) {
1473 routeHandler.processAlternativeRoutesChanged((RouteEvent) event);
1474 } else if (event.type() == McastEvent.Type.SOURCES_ADDED ||
1475 event.type() == McastEvent.Type.SOURCES_REMOVED ||
1476 event.type() == McastEvent.Type.SINKS_ADDED ||
1477 event.type() == McastEvent.Type.SINKS_REMOVED ||
1478 event.type() == McastEvent.Type.ROUTE_ADDED ||
1479 event.type() == McastEvent.Type.ROUTE_REMOVED) {
1480 mcastHandler.processMcastEvent((McastEvent) event);
1481 } else if (event.type() == NetworkConfigEvent.Type.CONFIG_ADDED) {
1482 NetworkConfigEvent netcfgEvent = (NetworkConfigEvent) event;
1483 Class configClass = netcfgEvent.configClass();
1484 if (configClass.equals(SegmentRoutingAppConfig.class)) {
1485 appCfgHandler.processAppConfigAdded(netcfgEvent);
1486 log.info("App config event .. configuring network");
1487 cfgListener.configureNetwork();
1488 } else if (configClass.equals(SegmentRoutingDeviceConfig.class)) {
1489 log.info("Segment Routing Device Config added for {}", event.subject());
1490 cfgListener.configureNetwork();
Charles Chan52003922018-04-05 16:31:15 -07001491 } else if (configClass.equals(InterfaceConfig.class)) {
1492 log.info("Interface Config added for {}", event.subject());
1493 cfgListener.configureNetwork();
1494 } else {
1495 log.error("Unhandled config class: {}", configClass);
1496 }
1497 } else if (event.type() == NetworkConfigEvent.Type.CONFIG_UPDATED) {
1498 NetworkConfigEvent netcfgEvent = (NetworkConfigEvent) event;
1499 Class configClass = netcfgEvent.configClass();
1500 if (configClass.equals(SegmentRoutingAppConfig.class)) {
1501 appCfgHandler.processAppConfigUpdated(netcfgEvent);
1502 log.info("App config event .. configuring network");
1503 cfgListener.configureNetwork();
1504 } else if (configClass.equals(SegmentRoutingDeviceConfig.class)) {
1505 log.info("Segment Routing Device Config updated for {}", event.subject());
1506 createOrUpdateDeviceConfiguration();
Charles Chan52003922018-04-05 16:31:15 -07001507 } else if (configClass.equals(InterfaceConfig.class)) {
1508 log.info("Interface Config updated for {}", event.subject());
1509 createOrUpdateDeviceConfiguration();
1510 updateInterface((InterfaceConfig) netcfgEvent.config().get(),
1511 (InterfaceConfig) netcfgEvent.prevConfig().get());
1512 } else {
1513 log.error("Unhandled config class: {}", configClass);
1514 }
1515 } else if (event.type() == NetworkConfigEvent.Type.CONFIG_REMOVED) {
1516 NetworkConfigEvent netcfgEvent = (NetworkConfigEvent) event;
1517 Class configClass = netcfgEvent.configClass();
1518 if (configClass.equals(SegmentRoutingAppConfig.class)) {
1519 appCfgHandler.processAppConfigRemoved(netcfgEvent);
1520 log.info("App config event .. configuring network");
1521 cfgListener.configureNetwork();
1522 } else if (configClass.equals(SegmentRoutingDeviceConfig.class)) {
1523 // TODO Handle sr device config removal
1524 log.info("SegmentRoutingDeviceConfig removal is not handled in current implementation");
Charles Chan52003922018-04-05 16:31:15 -07001525 } else if (configClass.equals(InterfaceConfig.class)) {
1526 // TODO Handle interface removal
1527 log.info("InterfaceConfig removal is not handled in current implementation");
1528 } else {
1529 log.error("Unhandled config class: {}", configClass);
1530 }
Saurav Das00e553b2018-04-21 17:19:48 -07001531 } else if (event.type() == MastershipEvent.Type.MASTER_CHANGED) {
1532 MastershipEvent me = (MastershipEvent) event;
1533 DeviceId deviceId = me.subject();
1534 Optional<DeviceId> pairDeviceId = getPairDeviceId(deviceId);
1535 log.info(" ** MASTERSHIP CHANGED Invalidating shouldProgram cache"
1536 + " for {}/pair={} due to change", deviceId, pairDeviceId);
1537 defaultRoutingHandler.invalidateShouldProgramCache(deviceId);
1538 pairDeviceId.ifPresent(defaultRoutingHandler::invalidateShouldProgramCache);
1539 defaultRoutingHandler.checkFullRerouteForMasterChange(deviceId, me);
Charles Chan52003922018-04-05 16:31:15 -07001540 } else {
1541 log.warn("Unhandled event type: {}", event.type());
sangho80f11cb2015-04-01 13:05:26 -07001542 }
Charles Chan52003922018-04-05 16:31:15 -07001543 } catch (Exception e) {
1544 log.error("SegmentRouting event handler thread thrown an exception: {}",
1545 e.getMessage(), e);
sangho80f11cb2015-04-01 13:05:26 -07001546 }
sangho80f11cb2015-04-01 13:05:26 -07001547 }
1548 }
1549
Saurav Dase6c448a2018-01-18 12:07:33 -08001550 void processDeviceAdded(Device device) {
Saurav Dasb149be12016-06-07 10:08:06 -07001551 log.info("** DEVICE ADDED with ID {}", device.id());
Charles Chan9bd6aea2017-06-27 18:48:32 -07001552
1553 // NOTE: Punt ARP/NDP even when the device is not configured.
1554 // Host learning without network config is required for CORD config generator.
1555 routingRulePopulator.populateIpPunts(device.id());
1556 routingRulePopulator.populateArpNdpPunts(device.id());
1557
Charles Chan319d1a22015-11-03 10:42:14 -08001558 if (deviceConfiguration == null || !deviceConfiguration.isConfigured(device.id())) {
Saurav Das261c3002017-06-13 15:35:54 -07001559 log.warn("Device configuration unavailable. Device {} will be "
1560 + "processed after configuration.", device.id());
Saurav Das8ec0ec42015-11-03 14:39:27 -08001561 return;
1562 }
Charles Chan72779502016-04-23 17:36:10 -07001563 processDeviceAddedInternal(device.id());
1564 }
1565
1566 private void processDeviceAddedInternal(DeviceId deviceId) {
Saurav Dasc28b3432015-10-30 17:45:38 -07001567 // Irrespective of whether the local is a MASTER or not for this device,
1568 // we need to create a SR-group-handler instance. This is because in a
1569 // multi-instance setup, any instance can initiate forwarding/next-objectives
1570 // for any switch (even if this instance is a SLAVE or not even connected
1571 // to the switch). To handle this, a default-group-handler instance is necessary
1572 // per switch.
Charles Chan72779502016-04-23 17:36:10 -07001573 log.debug("Current groupHandlerMap devs: {}", groupHandlerMap.keySet());
1574 if (groupHandlerMap.get(deviceId) == null) {
Charles Chan319d1a22015-11-03 10:42:14 -08001575 DefaultGroupHandler groupHandler;
1576 try {
1577 groupHandler = DefaultGroupHandler.
Charles Chan72779502016-04-23 17:36:10 -07001578 createGroupHandler(deviceId,
1579 appId,
1580 deviceConfiguration,
1581 linkService,
1582 flowObjectiveService,
1583 this);
Charles Chan319d1a22015-11-03 10:42:14 -08001584 } catch (DeviceConfigNotFoundException e) {
1585 log.warn(e.getMessage() + " Aborting processDeviceAdded.");
1586 return;
1587 }
Saurav Das2b6a00f2017-12-05 15:00:23 -08001588 log.debug("updating groupHandlerMap with new grpHdlr for device: {}",
Charles Chan72779502016-04-23 17:36:10 -07001589 deviceId);
1590 groupHandlerMap.put(deviceId, groupHandler);
Saurav Das8ec0ec42015-11-03 14:39:27 -08001591 }
Saurav Dasb149be12016-06-07 10:08:06 -07001592
Charles Chan72779502016-04-23 17:36:10 -07001593 if (mastershipService.isLocalMaster(deviceId)) {
Saurav Dasf9332192017-02-18 14:05:44 -08001594 defaultRoutingHandler.populatePortAddressingRules(deviceId);
Charles Chan72779502016-04-23 17:36:10 -07001595 DefaultGroupHandler groupHandler = groupHandlerMap.get(deviceId);
Charles Chan10b0fb72017-02-02 16:20:42 -08001596 groupHandler.createGroupsFromVlanConfig();
Charles Chan72779502016-04-23 17:36:10 -07001597 routingRulePopulator.populateSubnetBroadcastRule(deviceId);
Charles Chan77277672015-10-20 16:24:19 -07001598 }
Charles Chan82ab1932016-01-30 23:22:37 -08001599
Charles Chandebfea32016-10-24 14:52:01 -07001600 appCfgHandler.init(deviceId);
Charles Chan074fae62018-04-29 18:11:37 -07001601 hostEventExecutor.execute(() -> hostHandler.init(deviceId));
1602 routeEventExecutor.execute(() -> routeHandler.init(deviceId));
sangho80f11cb2015-04-01 13:05:26 -07001603 }
1604
Saurav Dasc3604f12016-03-23 11:22:49 -07001605 private void processDeviceRemoved(Device device) {
Saurav Das261c3002017-06-13 15:35:54 -07001606 dsNextObjStore.entrySet().stream()
Saurav Dasc3604f12016-03-23 11:22:49 -07001607 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
Charles Chan873661e2017-11-30 15:37:50 -08001608 .forEach(entry -> dsNextObjStore.remove(entry.getKey()));
Charles Chan10b0fb72017-02-02 16:20:42 -08001609 vlanNextObjStore.entrySet().stream()
Saurav Dasc3604f12016-03-23 11:22:49 -07001610 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
Charles Chan3ed34d82017-06-22 18:03:14 -07001611 .forEach(entry -> vlanNextObjStore.remove(entry.getKey()));
Ruchi Sahota71bcb4e2019-01-28 01:08:18 +00001612 macVlanNextObjStore.entrySet().stream()
1613 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
1614 .forEach(entry -> macVlanNextObjStore.remove(entry.getKey()));
Saurav Dasc3604f12016-03-23 11:22:49 -07001615 portNextObjStore.entrySet().stream()
1616 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
Charles Chan3ed34d82017-06-22 18:03:14 -07001617 .forEach(entry -> portNextObjStore.remove(entry.getKey()));
Saurav Dase6c448a2018-01-18 12:07:33 -08001618 linkHandler.processDeviceRemoved(device);
Charles Chan17d75d82017-06-15 00:44:51 -07001619
Saurav Dasfbe74572017-08-03 18:30:35 -07001620 DefaultGroupHandler gh = groupHandlerMap.remove(device.id());
1621 if (gh != null) {
1622 gh.shutdown();
1623 }
Saurav Das62ae6792017-05-15 15:34:25 -07001624 // Note that a switch going down is associated with all of its links
1625 // going down as well, but it is treated as a single switch down event
Saurav Dasdebcf882018-04-06 20:16:01 -07001626 // while the link-downs are ignored. We cannot rely on the ordering of
1627 // events - i.e we cannot expect all link-downs to come before the
1628 // switch down - so we purge all seen-links for the switch before
1629 // handling route-path changes for the switch-down
Saurav Das62ae6792017-05-15 15:34:25 -07001630 defaultRoutingHandler
Saurav Dasdc7f2752018-03-18 21:28:15 -07001631 .populateRoutingRulesForLinkStatusChange(null, null, device.id(), true);
Saurav Das6430f412018-01-25 09:49:01 -08001632 defaultRoutingHandler.purgeEcmpGraph(device.id());
Saurav Das97241862018-02-14 14:14:54 -08001633
1634 // Cleanup all internal groupHandler stores for this device. Should be
1635 // done after all rerouting or rehashing has been completed
1636 groupHandlerMap.entrySet()
1637 .forEach(entry -> entry.getValue().cleanUpForNeighborDown(device.id()));
Saurav Dasc3604f12016-03-23 11:22:49 -07001638 }
1639
Saurav Das49368392018-04-23 18:42:12 -07001640 /**
1641 * Purge the destinationSet nextObjective store of entries with this device
1642 * as key. Erases app-level knowledge of hashed groups in this device.
1643 *
1644 * @param devId the device identifier
1645 */
Saurav Das00e553b2018-04-21 17:19:48 -07001646 void purgeHashedNextObjectiveStore(DeviceId devId) {
Saurav Das49368392018-04-23 18:42:12 -07001647 log.debug("Purging hashed next-obj store for dev:{}", devId);
Saurav Das00e553b2018-04-21 17:19:48 -07001648 dsNextObjStore.entrySet().stream()
1649 .filter(entry -> entry.getKey().deviceId().equals(devId))
1650 .forEach(entry -> dsNextObjStore.remove(entry.getKey()));
1651 }
1652
Saurav Dasec683dc2018-04-27 18:42:30 -07001653 private void processPortUpdatedInternal(Device device, Port port) {
Saurav Dasf0f592d2016-11-18 15:21:57 -08001654 if (deviceConfiguration == null || !deviceConfiguration.isConfigured(device.id())) {
1655 log.warn("Device configuration uploading. Not handling port event for"
1656 + "dev: {} port: {}", device.id(), port.number());
1657 return;
1658 }
Saurav Dasf9332192017-02-18 14:05:44 -08001659
Saurav Dasec683dc2018-04-27 18:42:30 -07001660 if (interfaceService.isConfigured(new ConnectPoint(device.id(), port.number()))) {
1661 lastEdgePortEvent = Instant.now();
1662 }
1663
Saurav Dasf9332192017-02-18 14:05:44 -08001664 if (!mastershipService.isLocalMaster(device.id())) {
1665 log.debug("Not master for dev:{} .. not handling port updated event"
1666 + "for port {}", device.id(), port.number());
1667 return;
1668 }
Saurav Dasec683dc2018-04-27 18:42:30 -07001669 processPortUpdated(device.id(), port);
1670 }
Saurav Dasf9332192017-02-18 14:05:44 -08001671
Saurav Dasec683dc2018-04-27 18:42:30 -07001672 /**
1673 * Adds or remove filtering rules for the given switchport. If switchport is
1674 * an edge facing port, additionally handles host probing and broadcast
1675 * rules. Must be called by local master of device.
1676 *
1677 * @param deviceId the device identifier
1678 * @param port the port to update
1679 */
1680 void processPortUpdated(DeviceId deviceId, Port port) {
Saurav Dasf9332192017-02-18 14:05:44 -08001681 // first we handle filtering rules associated with the port
1682 if (port.isEnabled()) {
1683 log.info("Switchport {}/{} enabled..programming filters",
Saurav Dasec683dc2018-04-27 18:42:30 -07001684 deviceId, port.number());
1685 routingRulePopulator.processSinglePortFilters(deviceId, port.number(), true);
Saurav Dasf9332192017-02-18 14:05:44 -08001686 } else {
1687 log.info("Switchport {}/{} disabled..removing filters",
Saurav Dasec683dc2018-04-27 18:42:30 -07001688 deviceId, port.number());
1689 routingRulePopulator.processSinglePortFilters(deviceId, port.number(), false);
Saurav Dasf9332192017-02-18 14:05:44 -08001690 }
Saurav Dasf0f592d2016-11-18 15:21:57 -08001691
1692 // portUpdated calls are for ports that have gone down or up. For switch
1693 // to switch ports, link-events should take care of any re-routing or
1694 // group editing necessary for port up/down. Here we only process edge ports
1695 // that are already configured.
Saurav Dasec683dc2018-04-27 18:42:30 -07001696 ConnectPoint cp = new ConnectPoint(deviceId, port.number());
Charles Chan098ca202018-05-01 11:50:20 -07001697 VlanId untaggedVlan = interfaceService.getUntaggedVlanId(cp);
1698 VlanId nativeVlan = interfaceService.getNativeVlanId(cp);
1699 Set<VlanId> taggedVlans = interfaceService.getTaggedVlanId(cp);
Charles Chan10b0fb72017-02-02 16:20:42 -08001700
Saurav Das3fb28272017-03-04 16:08:47 -08001701 if (untaggedVlan == null && nativeVlan == null && taggedVlans.isEmpty()) {
Saurav Das62ae6792017-05-15 15:34:25 -07001702 log.debug("Not handling port updated event for non-edge port (unconfigured) "
Saurav Dasec683dc2018-04-27 18:42:30 -07001703 + "dev/port: {}/{}", deviceId, port.number());
Saurav Dasf0f592d2016-11-18 15:21:57 -08001704 return;
1705 }
Saurav Das3fb28272017-03-04 16:08:47 -08001706 if (untaggedVlan != null) {
Saurav Dasec683dc2018-04-27 18:42:30 -07001707 processEdgePort(deviceId, port, untaggedVlan, true);
Saurav Das3fb28272017-03-04 16:08:47 -08001708 }
1709 if (nativeVlan != null) {
Saurav Dasec683dc2018-04-27 18:42:30 -07001710 processEdgePort(deviceId, port, nativeVlan, true);
Saurav Das3fb28272017-03-04 16:08:47 -08001711 }
1712 if (!taggedVlans.isEmpty()) {
Saurav Dasec683dc2018-04-27 18:42:30 -07001713 taggedVlans.forEach(tag -> processEdgePort(deviceId, port, tag, false));
Saurav Das3fb28272017-03-04 16:08:47 -08001714 }
Saurav Dasf0f592d2016-11-18 15:21:57 -08001715 }
1716
Saurav Dasec683dc2018-04-27 18:42:30 -07001717 private void processEdgePort(DeviceId deviceId, Port port, VlanId vlanId,
Saurav Das3fb28272017-03-04 16:08:47 -08001718 boolean popVlan) {
Saurav Dasf0f592d2016-11-18 15:21:57 -08001719 boolean portUp = port.isEnabled();
1720 if (portUp) {
Saurav Dasec683dc2018-04-27 18:42:30 -07001721 log.info("Device:EdgePort {}:{} is enabled in vlan: {}", deviceId,
Charles Chan10b0fb72017-02-02 16:20:42 -08001722 port.number(), vlanId);
Charles Chan074fae62018-04-29 18:11:37 -07001723 hostEventExecutor.execute(() -> hostHandler.processPortUp(new ConnectPoint(deviceId, port.number())));
Saurav Dasf0f592d2016-11-18 15:21:57 -08001724 } else {
Saurav Dasec683dc2018-04-27 18:42:30 -07001725 log.info("Device:EdgePort {}:{} is disabled in vlan: {}", deviceId,
Charles Chan10b0fb72017-02-02 16:20:42 -08001726 port.number(), vlanId);
Saurav Dasf0f592d2016-11-18 15:21:57 -08001727 }
1728
Saurav Dasec683dc2018-04-27 18:42:30 -07001729 DefaultGroupHandler groupHandler = groupHandlerMap.get(deviceId);
sangho80f11cb2015-04-01 13:05:26 -07001730 if (groupHandler != null) {
Saurav Das3fb28272017-03-04 16:08:47 -08001731 groupHandler.processEdgePort(port.number(), vlanId, popVlan, portUp);
Saurav Dasf0f592d2016-11-18 15:21:57 -08001732 } else {
1733 log.warn("Group handler not found for dev:{}. Not handling edge port"
Saurav Dasec683dc2018-04-27 18:42:30 -07001734 + " {} event for port:{}", deviceId,
Saurav Dasf0f592d2016-11-18 15:21:57 -08001735 (portUp) ? "UP" : "DOWN", port.number());
sangho80f11cb2015-04-01 13:05:26 -07001736 }
1737 }
sangho27462c62015-05-14 00:39:53 -07001738
Charles Chan8ca5a122017-10-20 16:06:55 -07001739 private void createOrUpdateDeviceConfiguration() {
1740 if (deviceConfiguration == null) {
Saurav Dase321cff2018-02-09 17:26:45 -08001741 log.info("Creating new DeviceConfiguration");
Charles Chan8ca5a122017-10-20 16:06:55 -07001742 deviceConfiguration = new DeviceConfiguration(this);
1743 } else {
Saurav Dase321cff2018-02-09 17:26:45 -08001744 log.info("Updating DeviceConfiguration");
Charles Chan8ca5a122017-10-20 16:06:55 -07001745 deviceConfiguration.updateConfig();
1746 }
1747 }
1748
Charles Chanfbcb8812018-04-18 18:41:05 -07001749 private void createOrUpdateDefaultRoutingHandler() {
1750 if (defaultRoutingHandler == null) {
1751 log.info("Creating new DefaultRoutingHandler");
1752 defaultRoutingHandler = new DefaultRoutingHandler(this);
1753 } else {
1754 log.info("Updating DefaultRoutingHandler");
1755 defaultRoutingHandler.update(this);
1756 }
1757 }
1758
Pier Ventreb6a7f342016-11-26 21:05:22 -08001759 /**
1760 * Registers the given connect point with the NRS, this is necessary
1761 * to receive the NDP and ARP packets from the NRS.
1762 *
1763 * @param portToRegister connect point to register
1764 */
1765 public void registerConnectPoint(ConnectPoint portToRegister) {
Charles Chan2e71ef32017-02-23 15:44:08 -08001766 neighbourResolutionService.registerNeighbourHandler(
Pier Ventreb6a7f342016-11-26 21:05:22 -08001767 portToRegister,
1768 neighbourHandler,
1769 appId
1770 );
1771 }
1772
Charles Chan72f556a2015-10-05 17:50:33 -07001773 private class InternalConfigListener implements NetworkConfigListener {
Saurav Das261c3002017-06-13 15:35:54 -07001774 private static final long PROGRAM_DELAY = 2;
Charles Chan46fdfaf2016-11-09 20:51:44 -08001775 SegmentRoutingManager srManager;
Charles Chane7c61022015-10-07 14:21:45 -07001776
Charles Chanb7f75ac2016-01-11 18:28:54 -08001777 /**
1778 * Constructs the internal network config listener.
1779 *
Charles Chan46fdfaf2016-11-09 20:51:44 -08001780 * @param srManager segment routing manager
Charles Chanb7f75ac2016-01-11 18:28:54 -08001781 */
Charles Chan3ed34d82017-06-22 18:03:14 -07001782 InternalConfigListener(SegmentRoutingManager srManager) {
Charles Chan46fdfaf2016-11-09 20:51:44 -08001783 this.srManager = srManager;
Charles Chane7c61022015-10-07 14:21:45 -07001784 }
1785
Charles Chanb7f75ac2016-01-11 18:28:54 -08001786 /**
1787 * Reads network config and initializes related data structure accordingly.
1788 */
Charles Chan873661e2017-11-30 15:37:50 -08001789 void configureNetwork() {
Saurav Dase321cff2018-02-09 17:26:45 -08001790 log.info("Configuring network ...");
Andrea Campanella060cad82018-04-17 12:09:34 +02001791
1792 // Setting handling of network configuration events completable future
1793 // The completable future is needed because of the async behaviour of the configureNetwork,
1794 // listener registration and event arrival
1795 // Enables us to buffer the events and execute them when the configure network is done.
Ray Milkey521e4392018-11-16 15:15:14 -08001796 synchronized (networkConfigCompletionLock) {
1797 networkConfigCompletion = new CompletableFuture<>();
Andrea Campanella060cad82018-04-17 12:09:34 +02001798
Ray Milkey521e4392018-11-16 15:15:14 -08001799 // add a small delay to absorb multiple network config added notifications
1800 if (!programmingScheduled.get()) {
1801 log.info("Buffering config calls for {} secs", PROGRAM_DELAY);
1802 programmingScheduled.set(true);
1803 mainEventExecutor.schedule(new ConfigChange(), PROGRAM_DELAY, TimeUnit.SECONDS);
1804 }
1805
1806 createOrUpdateDeviceConfiguration();
1807
1808 arpHandler = new ArpHandler(srManager);
1809 icmpHandler = new IcmpHandler(srManager);
1810 ipHandler = new IpHandler(srManager);
1811 routingRulePopulator = new RoutingRulePopulator(srManager);
1812 createOrUpdateDefaultRoutingHandler();
1813
1814 tunnelHandler = new TunnelHandler(linkService, deviceConfiguration,
1815 groupHandlerMap, tunnelStore);
1816 policyHandler = new PolicyHandler(appId, deviceConfiguration,
1817 flowObjectiveService,
1818 tunnelHandler, policyStore);
1819 networkConfigCompletion.complete(true);
Andrea Campanella060cad82018-04-17 12:09:34 +02001820 }
1821
Charles Chan72779502016-04-23 17:36:10 -07001822 mcastHandler.init();
Andrea Campanella060cad82018-04-17 12:09:34 +02001823
Charles Chane7c61022015-10-07 14:21:45 -07001824 }
1825
Charles Chan72f556a2015-10-05 17:50:33 -07001826 @Override
1827 public void event(NetworkConfigEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07001828 if (mainEventExecutor == null) {
1829 return;
1830 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001831 checkState(appCfgHandler != null, "NetworkConfigEventHandler is not initialized");
Charles Chan3f4aca62018-03-21 16:57:47 -07001832 switch (event.type()) {
1833 case CONFIG_ADDED:
1834 case CONFIG_UPDATED:
1835 case CONFIG_REMOVED:
1836 log.trace("Schedule Network Config event {}", event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001837 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1838 mainEventExecutor.execute(new InternalEventHandler(event));
1839 } else {
Charles Chan39b75522018-04-21 00:44:29 -07001840 queuedEvents.add(event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001841 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001842 break;
1843 default:
1844 break;
Charles Chan72f556a2015-10-05 17:50:33 -07001845 }
1846 }
Saurav Das261c3002017-06-13 15:35:54 -07001847
Charles Chanc4a68c32018-01-03 16:26:32 -08001848 @Override
1849 public boolean isRelevant(NetworkConfigEvent event) {
Saurav Dase321cff2018-02-09 17:26:45 -08001850 if (event.type() == CONFIG_REGISTERED ||
1851 event.type() == CONFIG_UNREGISTERED) {
1852 log.debug("Ignore event {} due to type mismatch", event);
1853 return false;
Charles Chanc4a68c32018-01-03 16:26:32 -08001854 }
Saurav Dase321cff2018-02-09 17:26:45 -08001855
1856 if (!event.configClass().equals(SegmentRoutingDeviceConfig.class) &&
1857 !event.configClass().equals(SegmentRoutingAppConfig.class) &&
Charles Chana01d57c2019-07-19 16:25:38 -07001858 !event.configClass().equals(InterfaceConfig.class)) {
Saurav Dase321cff2018-02-09 17:26:45 -08001859 log.debug("Ignore event {} due to class mismatch", event);
1860 return false;
1861 }
1862
1863 return true;
Charles Chanc4a68c32018-01-03 16:26:32 -08001864 }
1865
Saurav Das261c3002017-06-13 15:35:54 -07001866 private final class ConfigChange implements Runnable {
1867 @Override
1868 public void run() {
1869 programmingScheduled.set(false);
Saurav Dase321cff2018-02-09 17:26:45 -08001870 log.info("Reacting to config changes after buffer delay");
Saurav Das261c3002017-06-13 15:35:54 -07001871 for (Device device : deviceService.getDevices()) {
1872 processDeviceAdded(device);
1873 }
1874 defaultRoutingHandler.startPopulationProcess();
1875 }
1876 }
Charles Chan72f556a2015-10-05 17:50:33 -07001877 }
Charles Chanf4586112015-11-09 16:37:23 -08001878
Charles Chan3f4aca62018-03-21 16:57:47 -07001879 private class InternalLinkListener implements LinkListener {
1880 @Override
1881 public void event(LinkEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07001882 if (mainEventExecutor == null) {
1883 return;
1884 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001885 if (event.type() == LinkEvent.Type.LINK_ADDED ||
1886 event.type() == LinkEvent.Type.LINK_UPDATED ||
1887 event.type() == LinkEvent.Type.LINK_REMOVED) {
1888 log.trace("Schedule Link event {}", event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001889 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1890 mainEventExecutor.execute(new InternalEventHandler(event));
1891 } else {
Charles Chan39b75522018-04-21 00:44:29 -07001892 queuedEvents.add(event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001893 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001894 }
1895 }
1896 }
1897
1898 private class InternalDeviceListener implements DeviceListener {
1899 @Override
1900 public void event(DeviceEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07001901 if (mainEventExecutor == null) {
1902 return;
1903 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001904 switch (event.type()) {
1905 case DEVICE_ADDED:
1906 case PORT_UPDATED:
1907 case PORT_ADDED:
1908 case DEVICE_UPDATED:
1909 case DEVICE_AVAILABILITY_CHANGED:
1910 log.trace("Schedule Device event {}", event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001911 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1912 mainEventExecutor.execute(new InternalEventHandler(event));
1913 } else {
Charles Chan39b75522018-04-21 00:44:29 -07001914 queuedEvents.add(event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001915 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001916 break;
1917 default:
1918 }
1919 }
1920 }
1921
1922 private class InternalTopologyListener implements TopologyListener {
1923 @Override
1924 public void event(TopologyEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07001925 if (mainEventExecutor == null) {
1926 return;
1927 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001928 switch (event.type()) {
1929 case TOPOLOGY_CHANGED:
1930 log.trace("Schedule Topology event {}", event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001931 if (networkConfigCompletion == null || networkConfigCompletion.isDone()) {
1932 mainEventExecutor.execute(new InternalEventHandler(event));
1933 } else {
Charles Chan39b75522018-04-21 00:44:29 -07001934 queuedEvents.add(event);
Andrea Campanella060cad82018-04-17 12:09:34 +02001935 }
Charles Chan3f4aca62018-03-21 16:57:47 -07001936 break;
1937 default:
1938 }
1939 }
1940 }
1941
Charles Chanf4586112015-11-09 16:37:23 -08001942 private class InternalHostListener implements HostListener {
Charles Chanf4586112015-11-09 16:37:23 -08001943 @Override
1944 public void event(HostEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07001945 if (hostEventExecutor == null) {
1946 return;
1947 }
Charles Chanf4586112015-11-09 16:37:23 -08001948 switch (event.type()) {
1949 case HOST_ADDED:
Charles Chanf4586112015-11-09 16:37:23 -08001950 case HOST_MOVED:
Charles Chanf4586112015-11-09 16:37:23 -08001951 case HOST_REMOVED:
Charles Chanf4586112015-11-09 16:37:23 -08001952 case HOST_UPDATED:
Charles Chan3f4aca62018-03-21 16:57:47 -07001953 log.trace("Schedule Host event {}", event);
Charles Chandbbbb8a2018-04-07 11:35:08 -07001954 hostEventExecutor.execute(new InternalEventHandler(event));
Charles Chanf4586112015-11-09 16:37:23 -08001955 break;
1956 default:
1957 log.warn("Unsupported host event type: {}", event.type());
1958 break;
1959 }
1960 }
1961 }
1962
Charles Chanc91c8782016-03-30 17:54:24 -07001963 private class InternalMcastListener implements McastListener {
1964 @Override
1965 public void event(McastEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07001966 if (mcastEventExecutor == null) {
1967 return;
1968 }
Charles Chanc91c8782016-03-30 17:54:24 -07001969 switch (event.type()) {
Pier1f87aca2018-03-14 16:47:32 -07001970 case SOURCES_ADDED:
1971 case SOURCES_REMOVED:
1972 case SINKS_ADDED:
1973 case SINKS_REMOVED:
Charles Chanc91c8782016-03-30 17:54:24 -07001974 case ROUTE_REMOVED:
Pierdb27b8d2018-04-17 16:29:56 +02001975 case ROUTE_ADDED:
Charles Chan3f4aca62018-03-21 16:57:47 -07001976 log.trace("Schedule Mcast event {}", event);
Charles Chandbbbb8a2018-04-07 11:35:08 -07001977 mcastEventExecutor.execute(new InternalEventHandler(event));
Pier Luigi6786b922018-02-02 16:19:11 +01001978 break;
Charles Chanc91c8782016-03-30 17:54:24 -07001979 default:
Charles Chan3f4aca62018-03-21 16:57:47 -07001980 log.warn("Unsupported mcast event type: {}", event.type());
Charles Chanc91c8782016-03-30 17:54:24 -07001981 break;
1982 }
1983 }
1984 }
Charles Chan41f5ec02016-06-13 18:54:31 -07001985
Charles Chandebfea32016-10-24 14:52:01 -07001986 private class InternalRouteEventListener implements RouteListener {
1987 @Override
1988 public void event(RouteEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07001989 if (routeEventExecutor == null) {
1990 return;
1991 }
Charles Chandebfea32016-10-24 14:52:01 -07001992 switch (event.type()) {
1993 case ROUTE_ADDED:
Charles Chandebfea32016-10-24 14:52:01 -07001994 case ROUTE_UPDATED:
Charles Chandebfea32016-10-24 14:52:01 -07001995 case ROUTE_REMOVED:
Charles Chan910be6a2017-08-23 14:46:43 -07001996 case ALTERNATIVE_ROUTES_CHANGED:
Charles Chan3f4aca62018-03-21 16:57:47 -07001997 log.trace("Schedule Route event {}", event);
Charles Chandbbbb8a2018-04-07 11:35:08 -07001998 routeEventExecutor.execute(new InternalEventHandler(event));
Charles Chan910be6a2017-08-23 14:46:43 -07001999 break;
Charles Chandebfea32016-10-24 14:52:01 -07002000 default:
Charles Chan3f4aca62018-03-21 16:57:47 -07002001 log.warn("Unsupported route event type: {}", event.type());
Charles Chandebfea32016-10-24 14:52:01 -07002002 break;
2003 }
2004 }
2005 }
Saurav Das62ae6792017-05-15 15:34:25 -07002006
Charles Chanfbcb8812018-04-18 18:41:05 -07002007 private class InternalMastershipListener implements MastershipListener {
2008 @Override
2009 public void event(MastershipEvent event) {
Ray Milkeyaee4d3e2018-05-11 09:59:19 -07002010 if (mainEventExecutor == null) {
2011 return;
2012 }
Charles Chanfbcb8812018-04-18 18:41:05 -07002013 switch (event.type()) {
Saurav Das00e553b2018-04-21 17:19:48 -07002014 case MASTER_CHANGED:
2015 log.debug("Mastership event: {}/{}", event.subject(),
2016 event.roleInfo());
2017 mainEventExecutor.execute(new InternalEventHandler(event));
2018 break;
2019 case BACKUPS_CHANGED:
2020 case SUSPENDED:
2021 default:
2022 log.debug("Mastership event type {} not handled", event.type());
2023 break;
Charles Chanfbcb8812018-04-18 18:41:05 -07002024 }
2025 }
2026 }
2027
Saurav Das00e553b2018-04-21 17:19:48 -07002028 class InternalClusterListener implements ClusterEventListener {
2029 private Instant lastClusterEvent = Instant.EPOCH;
2030
2031 long timeSinceLastClusterEvent() {
2032 return Instant.now().toEpochMilli() - lastClusterEvent.toEpochMilli();
2033 }
2034
2035 @Override
2036 public void event(ClusterEvent event) {
2037 switch (event.type()) {
2038 case INSTANCE_ACTIVATED:
2039 case INSTANCE_ADDED:
2040 case INSTANCE_READY:
2041 log.debug("Cluster event {} ignored", event.type());
2042 break;
2043 case INSTANCE_DEACTIVATED:
2044 case INSTANCE_REMOVED:
2045 log.info("** Cluster event {}", event.type());
2046 lastClusterEvent = Instant.now();
2047 break;
2048 default:
2049 break;
2050 }
2051
2052 }
2053
2054 }
2055
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002056 private void updateInterface(InterfaceConfig conf, InterfaceConfig prevConf) {
2057 try {
2058 Set<Interface> intfs = conf.getInterfaces();
2059 Set<Interface> prevIntfs = prevConf.getInterfaces();
2060
2061 // Now we only handle one interface config at each port.
2062 if (intfs.size() != 1 || prevIntfs.size() != 1) {
2063 log.warn("Interface update aborted - one at a time is allowed, " +
2064 "but {} / {}(prev) received.", intfs.size(), prevIntfs.size());
2065 return;
2066 }
2067
Andrea Campanella060cad82018-04-17 12:09:34 +02002068 //The system is in an incoherent state, abort
2069 if (defaultRoutingHandler == null) {
2070 log.warn("Interface update aborted, defaultRoutingHandler is null");
2071 return;
2072 }
2073
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002074 Interface intf = intfs.stream().findFirst().get();
2075 Interface prevIntf = prevIntfs.stream().findFirst().get();
2076
2077 DeviceId deviceId = intf.connectPoint().deviceId();
2078 PortNumber portNum = intf.connectPoint().port();
2079
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002080 removeSubnetConfig(prevIntf.connectPoint(),
2081 Sets.difference(new HashSet<>(prevIntf.ipAddressesList()),
2082 new HashSet<>(intf.ipAddressesList())));
2083
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002084 if (!prevIntf.vlanNative().equals(VlanId.NONE)
2085 && !prevIntf.vlanNative().equals(intf.vlanUntagged())
2086 && !prevIntf.vlanNative().equals(intf.vlanNative())) {
2087 if (intf.vlanTagged().contains(prevIntf.vlanNative())) {
2088 // Update filtering objective and L2IG group bucket
2089 updatePortVlanTreatment(deviceId, portNum, prevIntf.vlanNative(), false);
2090 } else {
2091 // RemoveVlanNative
2092 updateVlanConfigInternal(deviceId, portNum, prevIntf.vlanNative(), true, false);
2093 }
2094 }
2095
2096 if (!prevIntf.vlanUntagged().equals(VlanId.NONE)
2097 && !prevIntf.vlanUntagged().equals(intf.vlanUntagged())
2098 && !prevIntf.vlanUntagged().equals(intf.vlanNative())) {
2099 if (intf.vlanTagged().contains(prevIntf.vlanUntagged())) {
2100 // Update filtering objective and L2IG group bucket
2101 updatePortVlanTreatment(deviceId, portNum, prevIntf.vlanUntagged(), false);
2102 } else {
2103 // RemoveVlanUntagged
2104 updateVlanConfigInternal(deviceId, portNum, prevIntf.vlanUntagged(), true, false);
2105 }
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002106 }
2107
2108 if (!prevIntf.vlanTagged().isEmpty() && !intf.vlanTagged().equals(prevIntf.vlanTagged())) {
2109 // RemoveVlanTagged
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002110 Sets.difference(prevIntf.vlanTagged(), intf.vlanTagged()).stream()
2111 .filter(i -> !intf.vlanUntagged().equals(i))
2112 .filter(i -> !intf.vlanNative().equals(i))
2113 .forEach(vlanId -> updateVlanConfigInternal(
2114 deviceId, portNum, vlanId, false, false));
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002115 }
2116
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002117 if (!intf.vlanNative().equals(VlanId.NONE)
2118 && !prevIntf.vlanNative().equals(intf.vlanNative())
2119 && !prevIntf.vlanUntagged().equals(intf.vlanNative())) {
2120 if (prevIntf.vlanTagged().contains(intf.vlanNative())) {
2121 // Update filtering objective and L2IG group bucket
2122 updatePortVlanTreatment(deviceId, portNum, intf.vlanNative(), true);
2123 } else {
2124 // AddVlanNative
2125 updateVlanConfigInternal(deviceId, portNum, intf.vlanNative(), true, true);
2126 }
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002127 }
2128
2129 if (!intf.vlanTagged().isEmpty() && !intf.vlanTagged().equals(prevIntf.vlanTagged())) {
2130 // AddVlanTagged
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002131 Sets.difference(intf.vlanTagged(), prevIntf.vlanTagged()).stream()
2132 .filter(i -> !prevIntf.vlanUntagged().equals(i))
2133 .filter(i -> !prevIntf.vlanNative().equals(i))
2134 .forEach(vlanId -> updateVlanConfigInternal(
2135 deviceId, portNum, vlanId, false, true)
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002136 );
2137 }
2138
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002139 if (!intf.vlanUntagged().equals(VlanId.NONE)
2140 && !prevIntf.vlanUntagged().equals(intf.vlanUntagged())
2141 && !prevIntf.vlanNative().equals(intf.vlanUntagged())) {
2142 if (prevIntf.vlanTagged().contains(intf.vlanUntagged())) {
2143 // Update filtering objective and L2IG group bucket
2144 updatePortVlanTreatment(deviceId, portNum, intf.vlanUntagged(), true);
2145 } else {
2146 // AddVlanUntagged
2147 updateVlanConfigInternal(deviceId, portNum, intf.vlanUntagged(), true, true);
2148 }
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002149 }
2150 addSubnetConfig(prevIntf.connectPoint(),
2151 Sets.difference(new HashSet<>(intf.ipAddressesList()),
2152 new HashSet<>(prevIntf.ipAddressesList())));
2153 } catch (ConfigException e) {
2154 log.error("Error in configuration");
2155 }
2156 }
2157
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002158 private void updatePortVlanTreatment(DeviceId deviceId, PortNumber portNum,
2159 VlanId vlanId, boolean pushVlan) {
2160 DefaultGroupHandler grpHandler = getGroupHandler(deviceId);
2161 if (grpHandler == null) {
2162 log.warn("Failed to retrieve group handler for device {}", deviceId);
2163 return;
2164 }
2165
2166 // Update filtering objective for a single port
2167 routingRulePopulator.updateSinglePortFilters(deviceId, portNum, !pushVlan, vlanId, false);
2168 routingRulePopulator.updateSinglePortFilters(deviceId, portNum, pushVlan, vlanId, true);
2169
2170 if (getVlanNextObjectiveId(deviceId, vlanId) != -1) {
2171 // Update L2IG bucket of the port
2172 grpHandler.updateL2InterfaceGroupBucket(portNum, vlanId, pushVlan);
2173 } else {
2174 log.warn("Failed to retrieve next objective for vlan {} in device {}:{}", vlanId, deviceId, portNum);
2175 }
2176 }
2177
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002178 private void updateVlanConfigInternal(DeviceId deviceId, PortNumber portNum,
2179 VlanId vlanId, boolean pushVlan, boolean install) {
2180 DefaultGroupHandler grpHandler = getGroupHandler(deviceId);
2181 if (grpHandler == null) {
2182 log.warn("Failed to retrieve group handler for device {}", deviceId);
2183 return;
2184 }
2185
2186 // Update filtering objective for a single port
2187 routingRulePopulator.updateSinglePortFilters(deviceId, portNum, pushVlan, vlanId, install);
2188
2189 // Update filtering objective for multicast ingress port
2190 mcastHandler.updateFilterToDevice(deviceId, portNum, vlanId, install);
2191
2192 int nextId = getVlanNextObjectiveId(deviceId, vlanId);
2193
2194 if (nextId != -1 && !install) {
2195 // Update next objective for a single port as an output port
2196 // Remove a single port from L2FG
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002197 grpHandler.updateGroupFromVlanConfiguration(vlanId, portNum, nextId, install);
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002198 // Remove L2 Bridging rule and L3 Unicast rule to the host
Charles Chan074fae62018-04-29 18:11:37 -07002199 hostEventExecutor.execute(() -> hostHandler.processIntfVlanUpdatedEvent(deviceId, portNum,
2200 vlanId, pushVlan, install));
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002201 // Remove broadcast forwarding rule and corresponding L2FG for VLAN
2202 // only if there is no port configured on that VLAN ID
2203 if (!getVlanPortMap(deviceId).containsKey(vlanId)) {
2204 // Remove broadcast forwarding rule for the VLAN
2205 routingRulePopulator.updateSubnetBroadcastRule(deviceId, vlanId, install);
2206 // Remove L2FG for VLAN
2207 grpHandler.removeBcastGroupFromVlan(deviceId, portNum, vlanId, pushVlan);
2208 } else {
2209 // Remove L2IG of the port
2210 grpHandler.removePortNextObjective(deviceId, portNum, vlanId, pushVlan);
2211 }
2212 } else if (install) {
2213 if (nextId != -1) {
2214 // Add a single port to L2FG
Jonghwan Hyuna4ce0aa2018-02-12 16:43:45 +09002215 grpHandler.updateGroupFromVlanConfiguration(vlanId, portNum, nextId, install);
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002216 } else {
2217 // Create L2FG for VLAN
2218 grpHandler.createBcastGroupFromVlan(vlanId, Collections.singleton(portNum));
2219 routingRulePopulator.updateSubnetBroadcastRule(deviceId, vlanId, install);
2220 }
Charles Chan074fae62018-04-29 18:11:37 -07002221 hostEventExecutor.execute(() -> hostHandler.processIntfVlanUpdatedEvent(deviceId, portNum,
2222 vlanId, pushVlan, install));
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002223 } else {
2224 log.warn("Failed to retrieve next objective for vlan {} in device {}:{}", vlanId, deviceId, portNum);
2225 }
2226 }
2227
2228 private void removeSubnetConfig(ConnectPoint cp, Set<InterfaceIpAddress> ipAddressSet) {
2229 Set<IpPrefix> ipPrefixSet = ipAddressSet.stream().
2230 map(InterfaceIpAddress::subnetAddress).collect(Collectors.toSet());
2231
2232 Set<InterfaceIpAddress> deviceIntfIpAddrs = interfaceService.getInterfaces().stream()
2233 .filter(intf -> intf.connectPoint().deviceId().equals(cp.deviceId()))
2234 .filter(intf -> !intf.connectPoint().equals(cp))
2235 .flatMap(intf -> intf.ipAddressesList().stream())
2236 .collect(Collectors.toSet());
2237 // 1. Partial subnet population
2238 // Remove routing rules for removed subnet from previous configuration,
2239 // which does not also exist in other interfaces in the same device
2240 Set<IpPrefix> deviceIpPrefixSet = deviceIntfIpAddrs.stream()
2241 .map(InterfaceIpAddress::subnetAddress)
2242 .collect(Collectors.toSet());
2243
2244 defaultRoutingHandler.revokeSubnet(
2245 ipPrefixSet.stream()
2246 .filter(ipPrefix -> !deviceIpPrefixSet.contains(ipPrefix))
2247 .collect(Collectors.toSet()));
2248
2249 // 2. Interface IP punts
2250 // Remove IP punts for old Intf address
2251 Set<IpAddress> deviceIpAddrs = deviceIntfIpAddrs.stream()
2252 .map(InterfaceIpAddress::ipAddress)
2253 .collect(Collectors.toSet());
2254 ipAddressSet.stream()
2255 .map(InterfaceIpAddress::ipAddress)
2256 .filter(interfaceIpAddress -> !deviceIpAddrs.contains(interfaceIpAddress))
2257 .forEach(interfaceIpAddress ->
2258 routingRulePopulator.revokeSingleIpPunts(
2259 cp.deviceId(), interfaceIpAddress));
2260
2261 // 3. Host unicast routing rule
2262 // Remove unicast routing rule
Charles Chan074fae62018-04-29 18:11:37 -07002263 hostEventExecutor.execute(() -> hostHandler.processIntfIpUpdatedEvent(cp, ipPrefixSet, false));
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002264 }
2265
2266 private void addSubnetConfig(ConnectPoint cp, Set<InterfaceIpAddress> ipAddressSet) {
2267 Set<IpPrefix> ipPrefixSet = ipAddressSet.stream().
2268 map(InterfaceIpAddress::subnetAddress).collect(Collectors.toSet());
2269
2270 Set<InterfaceIpAddress> deviceIntfIpAddrs = interfaceService.getInterfaces().stream()
2271 .filter(intf -> intf.connectPoint().deviceId().equals(cp.deviceId()))
2272 .filter(intf -> !intf.connectPoint().equals(cp))
2273 .flatMap(intf -> intf.ipAddressesList().stream())
2274 .collect(Collectors.toSet());
2275 // 1. Partial subnet population
2276 // Add routing rules for newly added subnet, which does not also exist in
2277 // other interfaces in the same device
2278 Set<IpPrefix> deviceIpPrefixSet = deviceIntfIpAddrs.stream()
2279 .map(InterfaceIpAddress::subnetAddress)
2280 .collect(Collectors.toSet());
2281
2282 defaultRoutingHandler.populateSubnet(
2283 Collections.singleton(cp),
2284 ipPrefixSet.stream()
2285 .filter(ipPrefix -> !deviceIpPrefixSet.contains(ipPrefix))
2286 .collect(Collectors.toSet()));
2287
2288 // 2. Interface IP punts
2289 // Add IP punts for new Intf address
2290 Set<IpAddress> deviceIpAddrs = deviceIntfIpAddrs.stream()
2291 .map(InterfaceIpAddress::ipAddress)
2292 .collect(Collectors.toSet());
2293 ipAddressSet.stream()
2294 .map(InterfaceIpAddress::ipAddress)
2295 .filter(interfaceIpAddress -> !deviceIpAddrs.contains(interfaceIpAddress))
2296 .forEach(interfaceIpAddress ->
2297 routingRulePopulator.populateSingleIpPunts(
2298 cp.deviceId(), interfaceIpAddress));
2299
2300 // 3. Host unicast routing rule
2301 // Add unicast routing rule
Charles Chan074fae62018-04-29 18:11:37 -07002302 hostEventExecutor.execute(() -> hostHandler.processIntfIpUpdatedEvent(cp, ipPrefixSet, true));
Jonghwan Hyune5ef7622017-08-25 17:48:36 -07002303 }
sangho80f11cb2015-04-01 13:05:26 -07002304}