blob: 81fb2205f263f68f946c27c8e14bcd9d6670d986 [file] [log] [blame]
sanghob35a6192015-04-01 13:05:26 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
sanghob35a6192015-04-01 13:05:26 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.segmentrouting;
17
Charles Chanc81c45b2016-10-20 17:02:44 -070018import com.google.common.collect.Maps;
sanghob35a6192015-04-01 13:05:26 -070019import org.apache.felix.scr.annotations.Activate;
20import org.apache.felix.scr.annotations.Component;
21import org.apache.felix.scr.annotations.Deactivate;
22import org.apache.felix.scr.annotations.Reference;
23import org.apache.felix.scr.annotations.ReferenceCardinality;
sangho1e575652015-05-14 00:39:53 -070024import org.apache.felix.scr.annotations.Service;
sanghob35a6192015-04-01 13:05:26 -070025import org.onlab.packet.Ethernet;
Charles Chanc42e84e2015-10-20 16:24:19 -070026import org.onlab.packet.IPv4;
Charles Chanc42e84e2015-10-20 16:24:19 -070027import org.onlab.packet.Ip4Prefix;
Charles Chanc42e84e2015-10-20 16:24:19 -070028import org.onlab.packet.IpPrefix;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070029import org.onlab.packet.VlanId;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070030import org.onlab.util.KryoNamespace;
Saurav Das80980c72016-03-23 11:22:49 -070031import org.onosproject.cfg.ComponentConfigService;
sanghob35a6192015-04-01 13:05:26 -070032import org.onosproject.core.ApplicationId;
33import org.onosproject.core.CoreService;
34import org.onosproject.event.Event;
Charles Chand55e84d2016-03-30 17:54:24 -070035import org.onosproject.incubator.net.config.basics.McastConfig;
Charles Chan2c15aca2016-11-09 20:51:44 -080036import org.onosproject.incubator.net.intf.InterfaceService;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070037import org.onosproject.mastership.MastershipService;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070038import org.onosproject.net.Device;
39import org.onosproject.net.DeviceId;
40import org.onosproject.net.Link;
41import org.onosproject.net.Port;
Charles Chan68aa62d2015-11-09 16:37:23 -080042import org.onosproject.net.PortNumber;
Charles Chand6832882015-10-05 17:50:33 -070043import org.onosproject.net.config.ConfigFactory;
44import org.onosproject.net.config.NetworkConfigEvent;
Charles Chand6832882015-10-05 17:50:33 -070045import org.onosproject.net.config.NetworkConfigListener;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070046import org.onosproject.net.config.NetworkConfigRegistry;
Charles Chand6832882015-10-05 17:50:33 -070047import org.onosproject.net.config.basics.SubjectFactories;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070048import org.onosproject.net.device.DeviceEvent;
49import org.onosproject.net.device.DeviceListener;
50import org.onosproject.net.device.DeviceService;
Charles Chan68aa62d2015-11-09 16:37:23 -080051import org.onosproject.net.flow.DefaultTrafficSelector;
Charles Chan68aa62d2015-11-09 16:37:23 -080052import org.onosproject.net.flow.TrafficSelector;
53import org.onosproject.net.flow.TrafficTreatment;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070054import org.onosproject.net.flowobjective.FlowObjectiveService;
Charles Chan68aa62d2015-11-09 16:37:23 -080055import org.onosproject.net.host.HostEvent;
56import org.onosproject.net.host.HostListener;
Charles Chand55e84d2016-03-30 17:54:24 -070057import org.onosproject.net.mcast.McastEvent;
58import org.onosproject.net.mcast.McastListener;
59import org.onosproject.net.mcast.MulticastRouteService;
60import org.onosproject.net.packet.PacketPriority;
61import org.onosproject.net.topology.TopologyService;
62import org.onosproject.segmentrouting.config.DeviceConfigNotFoundException;
63import org.onosproject.segmentrouting.config.DeviceConfiguration;
64import org.onosproject.segmentrouting.config.SegmentRoutingDeviceConfig;
65import org.onosproject.segmentrouting.config.SegmentRoutingAppConfig;
Charles Chanfc5c7802016-05-17 13:13:55 -070066import org.onosproject.segmentrouting.config.XConnectConfig;
Charles Chand55e84d2016-03-30 17:54:24 -070067import org.onosproject.segmentrouting.grouphandler.DefaultGroupHandler;
68import org.onosproject.segmentrouting.grouphandler.NeighborSet;
Charles Chand2990362016-04-18 13:44:03 -070069import org.onosproject.segmentrouting.storekey.NeighborSetNextObjectiveStoreKey;
70import org.onosproject.segmentrouting.storekey.PortNextObjectiveStoreKey;
sanghob35a6192015-04-01 13:05:26 -070071import org.onosproject.net.host.HostService;
sanghob35a6192015-04-01 13:05:26 -070072import org.onosproject.net.link.LinkEvent;
73import org.onosproject.net.link.LinkListener;
74import org.onosproject.net.link.LinkService;
75import org.onosproject.net.packet.InboundPacket;
76import org.onosproject.net.packet.PacketContext;
77import org.onosproject.net.packet.PacketProcessor;
78import org.onosproject.net.packet.PacketService;
Charles Chand2990362016-04-18 13:44:03 -070079import org.onosproject.segmentrouting.storekey.SubnetAssignedVidStoreKey;
80import org.onosproject.segmentrouting.storekey.SubnetNextObjectiveStoreKey;
Charles Chanfc5c7802016-05-17 13:13:55 -070081import org.onosproject.segmentrouting.storekey.XConnectStoreKey;
Jonathan Hartc19f7c12016-04-12 15:39:44 -070082import org.onosproject.store.serializers.KryoNamespaces;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070083import org.onosproject.store.service.EventuallyConsistentMap;
84import org.onosproject.store.service.EventuallyConsistentMapBuilder;
85import org.onosproject.store.service.StorageService;
86import org.onosproject.store.service.WallClockTimestamp;
Charles Chan35fd1a72016-06-13 18:54:31 -070087import org.opencord.cordconfig.CordConfigEvent;
88import org.opencord.cordconfig.CordConfigListener;
89import org.opencord.cordconfig.CordConfigService;
sanghob35a6192015-04-01 13:05:26 -070090import org.slf4j.Logger;
91import org.slf4j.LoggerFactory;
92
Saurav Das0e99e2b2015-10-28 12:39:42 -070093import java.util.Collections;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070094import java.util.HashSet;
sangho1e575652015-05-14 00:39:53 -070095import java.util.List;
sanghob35a6192015-04-01 13:05:26 -070096import java.util.Map;
Charles Chan188ebf52015-12-23 00:15:11 -080097import java.util.Optional;
Saurav Das0e99e2b2015-10-28 12:39:42 -070098import java.util.Set;
sanghob35a6192015-04-01 13:05:26 -070099import java.util.concurrent.ConcurrentHashMap;
100import java.util.concurrent.ConcurrentLinkedQueue;
101import java.util.concurrent.Executors;
102import java.util.concurrent.ScheduledExecutorService;
103import java.util.concurrent.ScheduledFuture;
104import java.util.concurrent.TimeUnit;
105
Charles Chan3e783d02016-02-26 22:19:52 -0800106import static com.google.common.base.Preconditions.checkState;
Yuta HIGUCHI1624df12016-07-21 16:54:33 -0700107import static org.onlab.util.Tools.groupedThreads;
Charles Chan3e783d02016-02-26 22:19:52 -0800108
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700109
Charles Chane849c192016-01-11 18:28:54 -0800110/**
111 * Segment routing manager.
112 */
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700113@Service
114@Component(immediate = true)
sangho1e575652015-05-14 00:39:53 -0700115public class SegmentRoutingManager implements SegmentRoutingService {
sanghob35a6192015-04-01 13:05:26 -0700116
Charles Chan2c15aca2016-11-09 20:51:44 -0800117 private static Logger log = LoggerFactory.getLogger(SegmentRoutingManager.class);
sanghob35a6192015-04-01 13:05:26 -0700118
119 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
120 protected CoreService coreService;
121
122 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
sanghob35a6192015-04-01 13:05:26 -0700123 protected PacketService packetService;
124
125 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
sanghob35a6192015-04-01 13:05:26 -0700126 protected HostService hostService;
127
128 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
129 protected DeviceService deviceService;
130
131 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -0700132 protected FlowObjectiveService flowObjectiveService;
sanghob35a6192015-04-01 13:05:26 -0700133
134 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
135 protected LinkService linkService;
136
137 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
sanghob35a6192015-04-01 13:05:26 -0700138 protected MastershipService mastershipService;
sangho1e575652015-05-14 00:39:53 -0700139
Charles Chan5270ed02016-01-30 23:22:37 -0800140 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
141 protected StorageService storageService;
142
143 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Charles Chan2c15aca2016-11-09 20:51:44 -0800144 public NetworkConfigRegistry cfgService;
Charles Chan5270ed02016-01-30 23:22:37 -0800145
Saurav Das80980c72016-03-23 11:22:49 -0700146 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
147 protected ComponentConfigService compCfgService;
148
Charles Chand55e84d2016-03-30 17:54:24 -0700149 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
150 protected MulticastRouteService multicastRouteService;
151
152 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
153 protected TopologyService topologyService;
154
Charles Chan35fd1a72016-06-13 18:54:31 -0700155 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
156 protected CordConfigService cordConfigService;
157
Charles Chan2c15aca2016-11-09 20:51:44 -0800158 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
159 public InterfaceService interfaceService;
160
Srikanth Vavilapalli4db76e32015-04-07 15:12:32 -0700161 protected ArpHandler arpHandler = null;
162 protected IcmpHandler icmpHandler = null;
163 protected IpHandler ipHandler = null;
164 protected RoutingRulePopulator routingRulePopulator = null;
Charles Chan2c15aca2016-11-09 20:51:44 -0800165 public ApplicationId appId;
sangho666cd6d2015-04-14 16:27:13 -0700166 protected DeviceConfiguration deviceConfiguration = null;
sanghob35a6192015-04-01 13:05:26 -0700167
Charles Chan93e71ba2016-04-29 14:38:22 -0700168 protected DefaultRoutingHandler defaultRoutingHandler = null;
sangho1e575652015-05-14 00:39:53 -0700169 private TunnelHandler tunnelHandler = null;
170 private PolicyHandler policyHandler = null;
Charles Chanb8e10c82015-10-14 11:24:40 -0700171 private InternalPacketProcessor processor = null;
172 private InternalLinkListener linkListener = null;
173 private InternalDeviceListener deviceListener = null;
Charles Chanfc5c7802016-05-17 13:13:55 -0700174 private AppConfigHandler appCfgHandler = null;
175 protected XConnectHandler xConnectHandler = null;
Charles Chand2990362016-04-18 13:44:03 -0700176 private McastHandler mcastHandler = null;
Charles Chan35fd1a72016-06-13 18:54:31 -0700177 protected HostHandler hostHandler = null;
178 private CordConfigHandler cordConfigHandler = null;
sanghob35a6192015-04-01 13:05:26 -0700179 private InternalEventHandler eventHandler = new InternalEventHandler();
Charles Chan5270ed02016-01-30 23:22:37 -0800180 private final InternalHostListener hostListener = new InternalHostListener();
Charles Chand55e84d2016-03-30 17:54:24 -0700181 private final InternalConfigListener cfgListener = new InternalConfigListener(this);
182 private final InternalMcastListener mcastListener = new InternalMcastListener();
Charles Chan35fd1a72016-06-13 18:54:31 -0700183 private final InternalCordConfigListener cordConfigListener = new InternalCordConfigListener();
sanghob35a6192015-04-01 13:05:26 -0700184
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -0700185 private ScheduledExecutorService executorService = Executors
Yuta HIGUCHI1624df12016-07-21 16:54:33 -0700186 .newScheduledThreadPool(1, groupedThreads("SegmentRoutingManager", "event-%d", log));
sanghob35a6192015-04-01 13:05:26 -0700187
Saurav Das4ce45962015-11-24 23:21:05 -0800188 @SuppressWarnings("unused")
sanghob35a6192015-04-01 13:05:26 -0700189 private static ScheduledFuture<?> eventHandlerFuture = null;
Saurav Das4ce45962015-11-24 23:21:05 -0800190 @SuppressWarnings("rawtypes")
Yuta HIGUCHI1624df12016-07-21 16:54:33 -0700191 private ConcurrentLinkedQueue<Event> eventQueue = new ConcurrentLinkedQueue<>();
Charles Chan68aa62d2015-11-09 16:37:23 -0800192 private Map<DeviceId, DefaultGroupHandler> groupHandlerMap =
Charles Chane849c192016-01-11 18:28:54 -0800193 new ConcurrentHashMap<>();
194 /**
195 * Per device next objective ID store with (device id + neighbor set) as key.
196 */
197 public EventuallyConsistentMap<NeighborSetNextObjectiveStoreKey, Integer>
Charles Chan68aa62d2015-11-09 16:37:23 -0800198 nsNextObjStore = null;
Charles Chane849c192016-01-11 18:28:54 -0800199 /**
200 * Per device next objective ID store with (device id + subnet) as key.
201 */
202 public EventuallyConsistentMap<SubnetNextObjectiveStoreKey, Integer>
Charles Chan68aa62d2015-11-09 16:37:23 -0800203 subnetNextObjStore = null;
Charles Chane849c192016-01-11 18:28:54 -0800204 /**
205 * Per device next objective ID store with (device id + port) as key.
206 */
207 public EventuallyConsistentMap<PortNextObjectiveStoreKey, Integer>
Saurav Das4ce45962015-11-24 23:21:05 -0800208 portNextObjStore = null;
Saurav Das0e99e2b2015-10-28 12:39:42 -0700209 // Per device, per-subnet assigned-vlans store, with (device id + subnet
210 // IPv4 prefix) as key
211 private EventuallyConsistentMap<SubnetAssignedVidStoreKey, VlanId>
Charles Chane849c192016-01-11 18:28:54 -0800212 subnetVidStore = null;
Saurav Das4ce45962015-11-24 23:21:05 -0800213 private EventuallyConsistentMap<String, Tunnel> tunnelStore = null;
214 private EventuallyConsistentMap<String, Policy> policyStore = null;
sangho0b2b6d12015-05-20 22:16:38 -0700215
Charles Chand55e84d2016-03-30 17:54:24 -0700216 private final ConfigFactory<DeviceId, SegmentRoutingDeviceConfig> deviceConfigFactory =
Charles Chanfc5c7802016-05-17 13:13:55 -0700217 new ConfigFactory<DeviceId, SegmentRoutingDeviceConfig>(
218 SubjectFactories.DEVICE_SUBJECT_FACTORY,
Charles Chand55e84d2016-03-30 17:54:24 -0700219 SegmentRoutingDeviceConfig.class, "segmentrouting") {
Charles Chand6832882015-10-05 17:50:33 -0700220 @Override
Charles Chan5270ed02016-01-30 23:22:37 -0800221 public SegmentRoutingDeviceConfig createConfig() {
222 return new SegmentRoutingDeviceConfig();
Charles Chand6832882015-10-05 17:50:33 -0700223 }
224 };
Charles Chand55e84d2016-03-30 17:54:24 -0700225 private final ConfigFactory<ApplicationId, SegmentRoutingAppConfig> appConfigFactory =
Charles Chanfc5c7802016-05-17 13:13:55 -0700226 new ConfigFactory<ApplicationId, SegmentRoutingAppConfig>(
227 SubjectFactories.APP_SUBJECT_FACTORY,
Charles Chand55e84d2016-03-30 17:54:24 -0700228 SegmentRoutingAppConfig.class, "segmentrouting") {
Charles Chan5270ed02016-01-30 23:22:37 -0800229 @Override
230 public SegmentRoutingAppConfig createConfig() {
231 return new SegmentRoutingAppConfig();
232 }
233 };
Charles Chanfc5c7802016-05-17 13:13:55 -0700234 private final ConfigFactory<ApplicationId, XConnectConfig> xConnectConfigFactory =
235 new ConfigFactory<ApplicationId, XConnectConfig>(
236 SubjectFactories.APP_SUBJECT_FACTORY,
237 XConnectConfig.class, "xconnect") {
238 @Override
239 public XConnectConfig createConfig() {
240 return new XConnectConfig();
241 }
242 };
Charles Chand55e84d2016-03-30 17:54:24 -0700243 private ConfigFactory<ApplicationId, McastConfig> mcastConfigFactory =
Charles Chanfc5c7802016-05-17 13:13:55 -0700244 new ConfigFactory<ApplicationId, McastConfig>(
245 SubjectFactories.APP_SUBJECT_FACTORY,
Charles Chand55e84d2016-03-30 17:54:24 -0700246 McastConfig.class, "multicast") {
247 @Override
248 public McastConfig createConfig() {
249 return new McastConfig();
250 }
251 };
252
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700253 private Object threadSchedulerLock = new Object();
254 private static int numOfEventsQueued = 0;
255 private static int numOfEventsExecuted = 0;
sanghob35a6192015-04-01 13:05:26 -0700256 private static int numOfHandlerExecution = 0;
257 private static int numOfHandlerScheduled = 0;
258
Charles Chan116188d2016-02-18 14:22:42 -0800259 /**
260 * Segment Routing App ID.
261 */
Charles Chan2c15aca2016-11-09 20:51:44 -0800262 public static final String APP_NAME = "org.onosproject.segmentrouting";
Charles Chane849c192016-01-11 18:28:54 -0800263 /**
264 * The starting value of per-subnet VLAN ID assignment.
265 */
Saurav Das0e99e2b2015-10-28 12:39:42 -0700266 private static final short ASSIGNED_VLAN_START = 4093;
Charles Chane849c192016-01-11 18:28:54 -0800267 /**
268 * The default VLAN ID assigned to the interfaces without subnet config.
269 */
Saurav Das0e99e2b2015-10-28 12:39:42 -0700270 public static final short ASSIGNED_VLAN_NO_SUBNET = 4094;
271
sanghob35a6192015-04-01 13:05:26 -0700272 @Activate
273 protected void activate() {
Charles Chan2c15aca2016-11-09 20:51:44 -0800274 appId = coreService.registerApplication(APP_NAME);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700275
276 log.debug("Creating EC map nsnextobjectivestore");
277 EventuallyConsistentMapBuilder<NeighborSetNextObjectiveStoreKey, Integer>
278 nsNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700279 nsNextObjStore = nsNextObjMapBuilder
280 .withName("nsnextobjectivestore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700281 .withSerializer(createSerializer())
Madan Jampanibcf1a482015-06-24 19:05:56 -0700282 .withTimestampProvider((k, v) -> new WallClockTimestamp())
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700283 .build();
284 log.trace("Current size {}", nsNextObjStore.size());
285
Charles Chanc42e84e2015-10-20 16:24:19 -0700286 log.debug("Creating EC map subnetnextobjectivestore");
287 EventuallyConsistentMapBuilder<SubnetNextObjectiveStoreKey, Integer>
288 subnetNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
Charles Chanc42e84e2015-10-20 16:24:19 -0700289 subnetNextObjStore = subnetNextObjMapBuilder
290 .withName("subnetnextobjectivestore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700291 .withSerializer(createSerializer())
Charles Chanc42e84e2015-10-20 16:24:19 -0700292 .withTimestampProvider((k, v) -> new WallClockTimestamp())
293 .build();
294
Saurav Das4ce45962015-11-24 23:21:05 -0800295 log.debug("Creating EC map subnetnextobjectivestore");
296 EventuallyConsistentMapBuilder<PortNextObjectiveStoreKey, Integer>
297 portNextObjMapBuilder = storageService.eventuallyConsistentMapBuilder();
298 portNextObjStore = portNextObjMapBuilder
299 .withName("portnextobjectivestore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700300 .withSerializer(createSerializer())
Saurav Das4ce45962015-11-24 23:21:05 -0800301 .withTimestampProvider((k, v) -> new WallClockTimestamp())
302 .build();
303
sangho0b2b6d12015-05-20 22:16:38 -0700304 EventuallyConsistentMapBuilder<String, Tunnel> tunnelMapBuilder =
305 storageService.eventuallyConsistentMapBuilder();
sangho0b2b6d12015-05-20 22:16:38 -0700306 tunnelStore = tunnelMapBuilder
307 .withName("tunnelstore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700308 .withSerializer(createSerializer())
Madan Jampanibcf1a482015-06-24 19:05:56 -0700309 .withTimestampProvider((k, v) -> new WallClockTimestamp())
sangho0b2b6d12015-05-20 22:16:38 -0700310 .build();
311
312 EventuallyConsistentMapBuilder<String, Policy> policyMapBuilder =
313 storageService.eventuallyConsistentMapBuilder();
sangho0b2b6d12015-05-20 22:16:38 -0700314 policyStore = policyMapBuilder
315 .withName("policystore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700316 .withSerializer(createSerializer())
Madan Jampanibcf1a482015-06-24 19:05:56 -0700317 .withTimestampProvider((k, v) -> new WallClockTimestamp())
sangho0b2b6d12015-05-20 22:16:38 -0700318 .build();
319
Saurav Das0e99e2b2015-10-28 12:39:42 -0700320 EventuallyConsistentMapBuilder<SubnetAssignedVidStoreKey, VlanId>
321 subnetVidStoreMapBuilder = storageService.eventuallyConsistentMapBuilder();
Saurav Das0e99e2b2015-10-28 12:39:42 -0700322 subnetVidStore = subnetVidStoreMapBuilder
323 .withName("subnetvidstore")
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700324 .withSerializer(createSerializer())
Saurav Das0e99e2b2015-10-28 12:39:42 -0700325 .withTimestampProvider((k, v) -> new WallClockTimestamp())
326 .build();
327
Saurav Das80980c72016-03-23 11:22:49 -0700328 compCfgService.preSetProperty("org.onosproject.net.group.impl.GroupManager",
329 "purgeOnDisconnection", "true");
330 compCfgService.preSetProperty("org.onosproject.net.flow.impl.FlowRuleManager",
331 "purgeOnDisconnection", "true");
332
Charles Chanb8e10c82015-10-14 11:24:40 -0700333 processor = new InternalPacketProcessor();
334 linkListener = new InternalLinkListener();
335 deviceListener = new InternalDeviceListener();
Charles Chanfc5c7802016-05-17 13:13:55 -0700336 appCfgHandler = new AppConfigHandler(this);
337 xConnectHandler = new XConnectHandler(this);
Charles Chand2990362016-04-18 13:44:03 -0700338 mcastHandler = new McastHandler(this);
339 hostHandler = new HostHandler(this);
Charles Chan35fd1a72016-06-13 18:54:31 -0700340 cordConfigHandler = new CordConfigHandler(this);
Charles Chanb8e10c82015-10-14 11:24:40 -0700341
Charles Chan3e783d02016-02-26 22:19:52 -0800342 cfgService.addListener(cfgListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700343 cfgService.registerConfigFactory(deviceConfigFactory);
344 cfgService.registerConfigFactory(appConfigFactory);
Charles Chanfc5c7802016-05-17 13:13:55 -0700345 cfgService.registerConfigFactory(xConnectConfigFactory);
Charles Chand55e84d2016-03-30 17:54:24 -0700346 cfgService.registerConfigFactory(mcastConfigFactory);
Charles Chan5270ed02016-01-30 23:22:37 -0800347 hostService.addListener(hostListener);
Charles Chanb8e10c82015-10-14 11:24:40 -0700348 packetService.addProcessor(processor, PacketProcessor.director(2));
349 linkService.addListener(linkListener);
350 deviceService.addListener(deviceListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700351 multicastRouteService.addListener(mcastListener);
Charles Chan35fd1a72016-06-13 18:54:31 -0700352 cordConfigService.addListener(cordConfigListener);
Charles Chanb8e10c82015-10-14 11:24:40 -0700353
Charles Chan188ebf52015-12-23 00:15:11 -0800354 // Request ARP packet-in
355 TrafficSelector.Builder selector = DefaultTrafficSelector.builder();
356 selector.matchEthType(Ethernet.TYPE_ARP);
357 packetService.requestPackets(selector.build(), PacketPriority.CONTROL, appId, Optional.empty());
358
Charles Chanb8e10c82015-10-14 11:24:40 -0700359 cfgListener.configureNetwork();
360
sanghob35a6192015-04-01 13:05:26 -0700361 log.info("Started");
362 }
363
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700364 private KryoNamespace.Builder createSerializer() {
365 return new KryoNamespace.Builder()
366 .register(KryoNamespaces.API)
367 .register(NeighborSetNextObjectiveStoreKey.class,
368 SubnetNextObjectiveStoreKey.class,
369 SubnetAssignedVidStoreKey.class,
370 NeighborSet.class,
371 Tunnel.class,
372 DefaultTunnel.class,
373 Policy.class,
374 TunnelPolicy.class,
375 Policy.Type.class,
376 PortNextObjectiveStoreKey.class,
Charles Chanfc5c7802016-05-17 13:13:55 -0700377 XConnectStoreKey.class
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700378 );
379 }
380
sanghob35a6192015-04-01 13:05:26 -0700381 @Deactivate
382 protected void deactivate() {
Charles Chand6832882015-10-05 17:50:33 -0700383 cfgService.removeListener(cfgListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700384 cfgService.unregisterConfigFactory(deviceConfigFactory);
385 cfgService.unregisterConfigFactory(appConfigFactory);
386 cfgService.unregisterConfigFactory(mcastConfigFactory);
Charles Chand6832882015-10-05 17:50:33 -0700387
Charles Chan188ebf52015-12-23 00:15:11 -0800388 // Withdraw ARP packet-in
389 TrafficSelector.Builder selector = DefaultTrafficSelector.builder();
390 selector.matchEthType(Ethernet.TYPE_ARP);
391 packetService.cancelPackets(selector.build(), PacketPriority.CONTROL, appId, Optional.empty());
392
sanghob35a6192015-04-01 13:05:26 -0700393 packetService.removeProcessor(processor);
Charles Chanb8e10c82015-10-14 11:24:40 -0700394 linkService.removeListener(linkListener);
395 deviceService.removeListener(deviceListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700396 multicastRouteService.removeListener(mcastListener);
Charles Chan35fd1a72016-06-13 18:54:31 -0700397 cordConfigService.removeListener(cordConfigListener);
Charles Chand55e84d2016-03-30 17:54:24 -0700398
sanghob35a6192015-04-01 13:05:26 -0700399 processor = null;
Charles Chanb8e10c82015-10-14 11:24:40 -0700400 linkListener = null;
Charles Chand55e84d2016-03-30 17:54:24 -0700401 deviceListener = null;
Charles Chanb8e10c82015-10-14 11:24:40 -0700402 groupHandlerMap.clear();
403
Charles Chand55e84d2016-03-30 17:54:24 -0700404 nsNextObjStore.destroy();
405 subnetNextObjStore.destroy();
406 portNextObjStore.destroy();
Charles Chand55e84d2016-03-30 17:54:24 -0700407 tunnelStore.destroy();
408 policyStore.destroy();
409 subnetVidStore.destroy();
sanghob35a6192015-04-01 13:05:26 -0700410 log.info("Stopped");
411 }
412
sangho1e575652015-05-14 00:39:53 -0700413 @Override
414 public List<Tunnel> getTunnels() {
415 return tunnelHandler.getTunnels();
416 }
417
418 @Override
sangho71abe1b2015-06-29 14:58:47 -0700419 public TunnelHandler.Result createTunnel(Tunnel tunnel) {
420 return tunnelHandler.createTunnel(tunnel);
sangho1e575652015-05-14 00:39:53 -0700421 }
422
423 @Override
sangho71abe1b2015-06-29 14:58:47 -0700424 public TunnelHandler.Result removeTunnel(Tunnel tunnel) {
sangho1e575652015-05-14 00:39:53 -0700425 for (Policy policy: policyHandler.getPolicies()) {
426 if (policy.type() == Policy.Type.TUNNEL_FLOW) {
427 TunnelPolicy tunnelPolicy = (TunnelPolicy) policy;
428 if (tunnelPolicy.tunnelId().equals(tunnel.id())) {
429 log.warn("Cannot remove the tunnel used by a policy");
sangho71abe1b2015-06-29 14:58:47 -0700430 return TunnelHandler.Result.TUNNEL_IN_USE;
sangho1e575652015-05-14 00:39:53 -0700431 }
432 }
433 }
sangho71abe1b2015-06-29 14:58:47 -0700434 return tunnelHandler.removeTunnel(tunnel);
sangho1e575652015-05-14 00:39:53 -0700435 }
436
437 @Override
sangho71abe1b2015-06-29 14:58:47 -0700438 public PolicyHandler.Result removePolicy(Policy policy) {
439 return policyHandler.removePolicy(policy);
sangho1e575652015-05-14 00:39:53 -0700440 }
441
442 @Override
sangho71abe1b2015-06-29 14:58:47 -0700443 public PolicyHandler.Result createPolicy(Policy policy) {
444 return policyHandler.createPolicy(policy);
sangho1e575652015-05-14 00:39:53 -0700445 }
446
447 @Override
448 public List<Policy> getPolicies() {
449 return policyHandler.getPolicies();
450 }
451
Saurav Das59232cf2016-04-27 18:35:50 -0700452 @Override
453 public void rerouteNetwork() {
454 cfgListener.configureNetwork();
455 for (Device device : deviceService.getDevices()) {
456 defaultRoutingHandler.populatePortAddressingRules(device.id());
457 }
458 defaultRoutingHandler.startPopulationProcess();
459 }
460
Charles Chanc81c45b2016-10-20 17:02:44 -0700461 @Override
462 public Map<DeviceId, Set<Ip4Prefix>> getDeviceSubnetMap() {
463 Map<DeviceId, Set<Ip4Prefix>> deviceSubnetMap = Maps.newHashMap();
464 deviceService.getAvailableDevices().forEach(device -> {
465 deviceSubnetMap.put(device.id(), deviceConfiguration.getSubnets(device.id()));
466 });
467 return deviceSubnetMap;
468 }
469
sanghof9d0bf12015-05-19 11:57:42 -0700470 /**
Pier Ventre98161782016-10-31 15:00:01 -0700471 * Returns the MPLS-ECMP configuration.
472 *
473 * @return MPLS-ECMP value
474 */
475 public boolean getMplsEcmp() {
476 SegmentRoutingAppConfig segmentRoutingAppConfig = cfgService
477 .getConfig(this.appId, SegmentRoutingAppConfig.class);
478 return segmentRoutingAppConfig != null && segmentRoutingAppConfig.mplsEcmp();
479 }
480
481 /**
sanghof9d0bf12015-05-19 11:57:42 -0700482 * Returns the tunnel object with the tunnel ID.
483 *
484 * @param tunnelId Tunnel ID
485 * @return Tunnel reference
486 */
sangho1e575652015-05-14 00:39:53 -0700487 public Tunnel getTunnel(String tunnelId) {
488 return tunnelHandler.getTunnel(tunnelId);
489 }
490
sanghob35a6192015-04-01 13:05:26 -0700491 /**
Saurav Das0e99e2b2015-10-28 12:39:42 -0700492 * Returns the vlan-id assigned to the subnet configured for a device.
493 * If no vlan-id has been assigned, a new one is assigned out of a pool of ids,
494 * if and only if this controller instance is the master for the device.
495 * <p>
496 * USAGE: The assigned vlans are meant to be applied to untagged packets on those
497 * switches/pipelines that need this functionality. These vids are meant
498 * to be used internally within a switch, and thus need to be unique only
499 * on a switch level. Note that packets never go out on the wire with these
500 * vlans. Currently, vlan ids are assigned from value 4093 down.
501 * Vlan id 4094 expected to be used for all ports that are not assigned subnets.
502 * Vlan id 4095 is reserved and unused. Only a single vlan id is assigned
503 * per subnet.
sanghob35a6192015-04-01 13:05:26 -0700504 *
Saurav Das0e99e2b2015-10-28 12:39:42 -0700505 * @param deviceId switch dpid
506 * @param subnet IPv4 prefix for which assigned vlan is desired
507 * @return VlanId assigned for the subnet on the device, or
508 * null if no vlan assignment was found and this instance is not
509 * the master for the device.
sanghob35a6192015-04-01 13:05:26 -0700510 */
Charles Chane849c192016-01-11 18:28:54 -0800511 // TODO: We should avoid assigning VLAN IDs that are used by VLAN cross-connection.
Saurav Das0e99e2b2015-10-28 12:39:42 -0700512 public VlanId getSubnetAssignedVlanId(DeviceId deviceId, Ip4Prefix subnet) {
513 VlanId assignedVid = subnetVidStore.get(new SubnetAssignedVidStoreKey(
514 deviceId, subnet));
515 if (assignedVid != null) {
516 log.debug("Query for subnet:{} on device:{} returned assigned-vlan "
517 + "{}", subnet, deviceId, assignedVid);
518 return assignedVid;
519 }
520 //check mastership for the right to assign a vlan
521 if (!mastershipService.isLocalMaster(deviceId)) {
522 log.warn("This controller instance is not the master for device {}. "
523 + "Cannot assign vlan-id for subnet {}", deviceId, subnet);
524 return null;
525 }
526 // vlan assignment is expensive but done only once
Charles Chan9f676b62015-10-29 14:58:10 -0700527 Set<Ip4Prefix> configuredSubnets = deviceConfiguration.getSubnets(deviceId);
Saurav Das0e99e2b2015-10-28 12:39:42 -0700528 Set<Short> assignedVlans = new HashSet<>();
529 Set<Ip4Prefix> unassignedSubnets = new HashSet<>();
530 for (Ip4Prefix sub : configuredSubnets) {
531 VlanId v = subnetVidStore.get(new SubnetAssignedVidStoreKey(deviceId,
532 sub));
533 if (v != null) {
534 assignedVlans.add(v.toShort());
535 } else {
536 unassignedSubnets.add(sub);
537 }
538 }
539 short nextAssignedVlan = ASSIGNED_VLAN_START;
540 if (!assignedVlans.isEmpty()) {
541 nextAssignedVlan = (short) (Collections.min(assignedVlans) - 1);
542 }
543 for (Ip4Prefix unsub : unassignedSubnets) {
Charles Chan5270ed02016-01-30 23:22:37 -0800544 // Special case for default route. Assign default VLAN ID to /32 and /0 subnets
545 if (unsub.prefixLength() == IpPrefix.MAX_INET_MASK_LENGTH ||
546 unsub.prefixLength() == 0) {
547 subnetVidStore.put(new SubnetAssignedVidStoreKey(deviceId, unsub),
548 VlanId.vlanId(ASSIGNED_VLAN_NO_SUBNET));
549 } else {
550 subnetVidStore.put(new SubnetAssignedVidStoreKey(deviceId, unsub),
551 VlanId.vlanId(nextAssignedVlan--));
552 log.info("Assigned vlan: {} to subnet: {} on device: {}",
553 nextAssignedVlan + 1, unsub, deviceId);
554 }
sanghob35a6192015-04-01 13:05:26 -0700555 }
556
Saurav Das0e99e2b2015-10-28 12:39:42 -0700557 return subnetVidStore.get(new SubnetAssignedVidStoreKey(deviceId, subnet));
sanghob35a6192015-04-01 13:05:26 -0700558 }
559
sangho1e575652015-05-14 00:39:53 -0700560 /**
Saurav Das0e99e2b2015-10-28 12:39:42 -0700561 * Returns the next objective ID for the given NeighborSet.
Saurav Das8a0732e2015-11-20 15:27:53 -0800562 * If the nextObjective does not exist, a new one is created and
Saurav Das4ce45962015-11-24 23:21:05 -0800563 * its id is returned.
sangho1e575652015-05-14 00:39:53 -0700564 *
sanghof9d0bf12015-05-19 11:57:42 -0700565 * @param deviceId Device ID
566 * @param ns NegighborSet
Saurav Das8a0732e2015-11-20 15:27:53 -0800567 * @param meta metadata passed into the creation of a Next Objective
568 * @return next objective ID or -1 if an error was encountered during the
569 * creation of the nextObjective
sangho1e575652015-05-14 00:39:53 -0700570 */
Saurav Das8a0732e2015-11-20 15:27:53 -0800571 public int getNextObjectiveId(DeviceId deviceId, NeighborSet ns,
572 TrafficSelector meta) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700573 if (groupHandlerMap.get(deviceId) != null) {
574 log.trace("getNextObjectiveId query in device {}", deviceId);
575 return groupHandlerMap
Saurav Das8a0732e2015-11-20 15:27:53 -0800576 .get(deviceId).getNextObjectiveId(ns, meta);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700577 } else {
Saurav Das4ce45962015-11-24 23:21:05 -0800578 log.warn("getNextObjectiveId query - groupHandler for device {} "
579 + "not found", deviceId);
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700580 return -1;
581 }
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -0700582 }
583
Charles Chanc42e84e2015-10-20 16:24:19 -0700584 /**
Saurav Das4ce45962015-11-24 23:21:05 -0800585 * Returns the next objective ID for the given subnet prefix. It is expected
586 * that the next-objective has been pre-created from configuration.
Charles Chanc42e84e2015-10-20 16:24:19 -0700587 *
588 * @param deviceId Device ID
589 * @param prefix Subnet
Saurav Das4ce45962015-11-24 23:21:05 -0800590 * @return next objective ID or -1 if it was not found
Charles Chanc42e84e2015-10-20 16:24:19 -0700591 */
592 public int getSubnetNextObjectiveId(DeviceId deviceId, IpPrefix prefix) {
593 if (groupHandlerMap.get(deviceId) != null) {
594 log.trace("getSubnetNextObjectiveId query in device {}", deviceId);
595 return groupHandlerMap
596 .get(deviceId).getSubnetNextObjectiveId(prefix);
597 } else {
Saurav Das4ce45962015-11-24 23:21:05 -0800598 log.warn("getSubnetNextObjectiveId query - groupHandler for "
599 + "device {} not found", deviceId);
600 return -1;
601 }
602 }
603
604 /**
605 * Returns the next objective ID for the given portNumber, given the treatment.
606 * There could be multiple different treatments to the same outport, which
607 * would result in different objectives. If the next object
608 * does not exist, a new one is created and its id is returned.
609 *
610 * @param deviceId Device ID
611 * @param portNum port number on device for which NextObjective is queried
612 * @param treatment the actions to apply on the packets (should include outport)
613 * @param meta metadata passed into the creation of a Next Objective if necessary
Saurav Das59232cf2016-04-27 18:35:50 -0700614 * @return next objective ID or -1 if an error occurred during retrieval or creation
Saurav Das4ce45962015-11-24 23:21:05 -0800615 */
616 public int getPortNextObjectiveId(DeviceId deviceId, PortNumber portNum,
617 TrafficTreatment treatment,
618 TrafficSelector meta) {
619 DefaultGroupHandler ghdlr = groupHandlerMap.get(deviceId);
620 if (ghdlr != null) {
621 return ghdlr.getPortNextObjectiveId(portNum, treatment, meta);
622 } else {
Charles Chane849c192016-01-11 18:28:54 -0800623 log.warn("getPortNextObjectiveId query - groupHandler for device {}"
624 + " not found", deviceId);
625 return -1;
626 }
627 }
628
sanghob35a6192015-04-01 13:05:26 -0700629 private class InternalPacketProcessor implements PacketProcessor {
sanghob35a6192015-04-01 13:05:26 -0700630 @Override
631 public void process(PacketContext context) {
632
633 if (context.isHandled()) {
634 return;
635 }
636
637 InboundPacket pkt = context.inPacket();
638 Ethernet ethernet = pkt.parsed();
Saurav Das4ce45962015-11-24 23:21:05 -0800639 log.trace("Rcvd pktin: {}", ethernet);
sanghob35a6192015-04-01 13:05:26 -0700640 if (ethernet.getEtherType() == Ethernet.TYPE_ARP) {
641 arpHandler.processPacketIn(pkt);
642 } else if (ethernet.getEtherType() == Ethernet.TYPE_IPV4) {
643 IPv4 ipPacket = (IPv4) ethernet.getPayload();
644 ipHandler.addToPacketBuffer(ipPacket);
645 if (ipPacket.getProtocol() == IPv4.PROTOCOL_ICMP) {
646 icmpHandler.processPacketIn(pkt);
647 } else {
648 ipHandler.processPacketIn(pkt);
649 }
650 }
651 }
652 }
653
654 private class InternalLinkListener implements LinkListener {
655 @Override
656 public void event(LinkEvent event) {
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -0700657 if (event.type() == LinkEvent.Type.LINK_ADDED
658 || event.type() == LinkEvent.Type.LINK_REMOVED) {
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700659 log.debug("Event {} received from Link Service", event.type());
sanghob35a6192015-04-01 13:05:26 -0700660 scheduleEventHandlerIfNotScheduled(event);
661 }
662 }
663 }
664
665 private class InternalDeviceListener implements DeviceListener {
sanghob35a6192015-04-01 13:05:26 -0700666 @Override
667 public void event(DeviceEvent event) {
sanghob35a6192015-04-01 13:05:26 -0700668 switch (event.type()) {
669 case DEVICE_ADDED:
670 case PORT_REMOVED:
sangho20eff1d2015-04-13 15:15:58 -0700671 case DEVICE_UPDATED:
672 case DEVICE_AVAILABILITY_CHANGED:
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700673 log.debug("Event {} received from Device Service", event.type());
sanghob35a6192015-04-01 13:05:26 -0700674 scheduleEventHandlerIfNotScheduled(event);
675 break;
676 default:
677 }
678 }
679 }
680
Saurav Das4ce45962015-11-24 23:21:05 -0800681 @SuppressWarnings("rawtypes")
sanghob35a6192015-04-01 13:05:26 -0700682 private void scheduleEventHandlerIfNotScheduled(Event event) {
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700683 synchronized (threadSchedulerLock) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700684 eventQueue.add(event);
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700685 numOfEventsQueued++;
686
687 if ((numOfHandlerScheduled - numOfHandlerExecution) == 0) {
688 //No pending scheduled event handling threads. So start a new one.
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700689 eventHandlerFuture = executorService
690 .schedule(eventHandler, 100, TimeUnit.MILLISECONDS);
691 numOfHandlerScheduled++;
692 }
Jonathan Hartc19f7c12016-04-12 15:39:44 -0700693 log.trace("numOfEventsQueued {}, numOfEventHandlerScheduled {}",
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700694 numOfEventsQueued,
695 numOfHandlerScheduled);
sanghob35a6192015-04-01 13:05:26 -0700696 }
sanghob35a6192015-04-01 13:05:26 -0700697 }
698
699 private class InternalEventHandler implements Runnable {
Srikanth Vavilapalli4db76e32015-04-07 15:12:32 -0700700 @Override
sanghob35a6192015-04-01 13:05:26 -0700701 public void run() {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700702 try {
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700703 while (true) {
Saurav Das4ce45962015-11-24 23:21:05 -0800704 @SuppressWarnings("rawtypes")
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700705 Event event = null;
706 synchronized (threadSchedulerLock) {
707 if (!eventQueue.isEmpty()) {
708 event = eventQueue.poll();
709 numOfEventsExecuted++;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700710 } else {
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700711 numOfHandlerExecution++;
712 log.debug("numOfHandlerExecution {} numOfEventsExecuted {}",
713 numOfHandlerExecution, numOfEventsExecuted);
714 break;
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700715 }
sangho20eff1d2015-04-13 15:15:58 -0700716 }
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700717 if (event.type() == LinkEvent.Type.LINK_ADDED) {
718 processLinkAdded((Link) event.subject());
719 } else if (event.type() == LinkEvent.Type.LINK_REMOVED) {
Pier Ventre2c515312016-09-13 21:33:40 -0700720 Link linkRemoved = (Link) event.subject();
721 if (linkRemoved.src().elementId() instanceof DeviceId &&
722 !deviceService.isAvailable(linkRemoved.src().deviceId())) {
723 continue;
724 }
725 if (linkRemoved.dst().elementId() instanceof DeviceId &&
726 !deviceService.isAvailable(linkRemoved.dst().deviceId())) {
727 continue;
728 }
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700729 processLinkRemoved((Link) event.subject());
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700730 } else if (event.type() == DeviceEvent.Type.DEVICE_ADDED ||
731 event.type() == DeviceEvent.Type.DEVICE_AVAILABILITY_CHANGED ||
732 event.type() == DeviceEvent.Type.DEVICE_UPDATED) {
Saurav Das423fe2b2015-12-04 10:52:59 -0800733 DeviceId deviceId = ((Device) event.subject()).id();
734 if (deviceService.isAvailable(deviceId)) {
Saurav Das837e0bb2015-10-30 17:45:38 -0700735 log.info("Processing device event {} for available device {}",
736 event.type(), ((Device) event.subject()).id());
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700737 processDeviceAdded((Device) event.subject());
Saurav Das80980c72016-03-23 11:22:49 -0700738 } else {
739 log.info("Processing device event {} for unavailable device {}",
740 event.type(), ((Device) event.subject()).id());
741 processDeviceRemoved((Device) event.subject());
742 }
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700743 } else if (event.type() == DeviceEvent.Type.PORT_REMOVED) {
744 processPortRemoved((Device) event.subject(),
745 ((DeviceEvent) event).port());
Saurav Dasb5c236e2016-06-07 10:08:06 -0700746 } else if (event.type() == DeviceEvent.Type.PORT_ADDED ||
747 event.type() == DeviceEvent.Type.PORT_UPDATED) {
748 log.info("** PORT ADDED OR UPDATED {}/{} -> {}",
Yuta HIGUCHI1624df12016-07-21 16:54:33 -0700749 event.subject(),
Saurav Dasb5c236e2016-06-07 10:08:06 -0700750 ((DeviceEvent) event).port(),
751 event.type());
752 /* XXX create method for single port filtering rules
753 if (defaultRoutingHandler != null) {
754 defaultRoutingHandler.populatePortAddressingRules(
755 ((Device) event.subject()).id());
756 }*/
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700757 } else {
758 log.warn("Unhandled event type: {}", event.type());
759 }
sanghob35a6192015-04-01 13:05:26 -0700760 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700761 } catch (Exception e) {
762 log.error("SegmentRouting event handler "
763 + "thread thrown an exception: {}", e);
sanghob35a6192015-04-01 13:05:26 -0700764 }
sanghob35a6192015-04-01 13:05:26 -0700765 }
766 }
767
sanghob35a6192015-04-01 13:05:26 -0700768 private void processLinkAdded(Link link) {
Saurav Dasb5c236e2016-06-07 10:08:06 -0700769 log.info("** LINK ADDED {}", link.toString());
Charles Chan0b4e6182015-11-03 10:42:14 -0800770 if (!deviceConfiguration.isConfigured(link.src().deviceId())) {
771 log.warn("Source device of this link is not configured.");
772 return;
773 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700774 //Irrespective whether the local is a MASTER or not for this device,
775 //create group handler instance and push default TTP flow rules.
776 //Because in a multi-instance setup, instances can initiate
777 //groups for any devices. Also the default TTP rules are needed
778 //to be pushed before inserting any IP table entries for any device
779 DefaultGroupHandler groupHandler = groupHandlerMap.get(link.src()
780 .deviceId());
781 if (groupHandler != null) {
Saurav Das8a0732e2015-11-20 15:27:53 -0800782 groupHandler.linkUp(link, mastershipService.isLocalMaster(
783 link.src().deviceId()));
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700784 } else {
785 Device device = deviceService.getDevice(link.src().deviceId());
786 if (device != null) {
787 log.warn("processLinkAdded: Link Added "
788 + "Notification without Device Added "
789 + "event, still handling it");
790 processDeviceAdded(device);
791 groupHandler = groupHandlerMap.get(link.src()
792 .deviceId());
Saurav Das8a0732e2015-11-20 15:27:53 -0800793 groupHandler.linkUp(link, mastershipService.isLocalMaster(device.id()));
sanghob35a6192015-04-01 13:05:26 -0700794 }
795 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700796
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700797 log.trace("Starting optimized route population process");
798 defaultRoutingHandler.populateRoutingRulesForLinkStatusChange(null);
799 //log.trace("processLinkAdded: re-starting route population process");
800 //defaultRoutingHandler.startPopulationProcess();
Charles Chan2199c302016-04-23 17:36:10 -0700801
802 mcastHandler.init();
sanghob35a6192015-04-01 13:05:26 -0700803 }
804
805 private void processLinkRemoved(Link link) {
Saurav Dasb5c236e2016-06-07 10:08:06 -0700806 log.info("** LINK REMOVED {}", link.toString());
sangho834e4b02015-05-01 09:38:25 -0700807 DefaultGroupHandler groupHandler = groupHandlerMap.get(link.src().deviceId());
808 if (groupHandler != null) {
Saurav Das423fe2b2015-12-04 10:52:59 -0800809 groupHandler.portDown(link.src().port(),
810 mastershipService.isLocalMaster(link.src().deviceId()));
sangho834e4b02015-05-01 09:38:25 -0700811 }
Srikanth Vavilapalli5428b6c2015-05-14 20:22:47 -0700812 log.trace("Starting optimized route population process");
813 defaultRoutingHandler.populateRoutingRulesForLinkStatusChange(link);
814 //log.trace("processLinkRemoved: re-starting route population process");
815 //defaultRoutingHandler.startPopulationProcess();
Charles Chan2199c302016-04-23 17:36:10 -0700816
817 mcastHandler.processLinkDown(link);
sanghob35a6192015-04-01 13:05:26 -0700818 }
819
820 private void processDeviceAdded(Device device) {
Saurav Dasb5c236e2016-06-07 10:08:06 -0700821 log.info("** DEVICE ADDED with ID {}", device.id());
Charles Chan0b4e6182015-11-03 10:42:14 -0800822 if (deviceConfiguration == null || !deviceConfiguration.isConfigured(device.id())) {
Saurav Das2857f382015-11-03 14:39:27 -0800823 log.warn("Device configuration uploading. Device {} will be "
824 + "processed after config completes.", device.id());
825 return;
826 }
Charles Chan2199c302016-04-23 17:36:10 -0700827 processDeviceAddedInternal(device.id());
828 }
829
830 private void processDeviceAddedInternal(DeviceId deviceId) {
Saurav Das837e0bb2015-10-30 17:45:38 -0700831 // Irrespective of whether the local is a MASTER or not for this device,
832 // we need to create a SR-group-handler instance. This is because in a
833 // multi-instance setup, any instance can initiate forwarding/next-objectives
834 // for any switch (even if this instance is a SLAVE or not even connected
835 // to the switch). To handle this, a default-group-handler instance is necessary
836 // per switch.
Charles Chan2199c302016-04-23 17:36:10 -0700837 log.debug("Current groupHandlerMap devs: {}", groupHandlerMap.keySet());
838 if (groupHandlerMap.get(deviceId) == null) {
Charles Chan0b4e6182015-11-03 10:42:14 -0800839 DefaultGroupHandler groupHandler;
840 try {
841 groupHandler = DefaultGroupHandler.
Charles Chan2199c302016-04-23 17:36:10 -0700842 createGroupHandler(deviceId,
843 appId,
844 deviceConfiguration,
845 linkService,
846 flowObjectiveService,
847 this);
Charles Chan0b4e6182015-11-03 10:42:14 -0800848 } catch (DeviceConfigNotFoundException e) {
849 log.warn(e.getMessage() + " Aborting processDeviceAdded.");
850 return;
851 }
Charles Chan2199c302016-04-23 17:36:10 -0700852 log.debug("updating groupHandlerMap with new config for device: {}",
853 deviceId);
854 groupHandlerMap.put(deviceId, groupHandler);
Saurav Das2857f382015-11-03 14:39:27 -0800855 }
Saurav Dasb5c236e2016-06-07 10:08:06 -0700856 // Also, in some cases, drivers may need extra
857 // information to process rules (eg. Router IP/MAC); and so, we send
858 // port addressing rules to the driver as well irrespective of whether
859 // this instance is the master or not.
860 defaultRoutingHandler.populatePortAddressingRules(deviceId);
861
Charles Chan2199c302016-04-23 17:36:10 -0700862 if (mastershipService.isLocalMaster(deviceId)) {
863 hostHandler.readInitialHosts(deviceId);
Charles Chanfc5c7802016-05-17 13:13:55 -0700864 xConnectHandler.init(deviceId);
Charles Chan35fd1a72016-06-13 18:54:31 -0700865 cordConfigHandler.init(deviceId);
Charles Chan2199c302016-04-23 17:36:10 -0700866 DefaultGroupHandler groupHandler = groupHandlerMap.get(deviceId);
Charles Chanc42e84e2015-10-20 16:24:19 -0700867 groupHandler.createGroupsFromSubnetConfig();
Charles Chan2199c302016-04-23 17:36:10 -0700868 routingRulePopulator.populateSubnetBroadcastRule(deviceId);
Charles Chanc42e84e2015-10-20 16:24:19 -0700869 }
Charles Chan5270ed02016-01-30 23:22:37 -0800870
Charles Chanfc5c7802016-05-17 13:13:55 -0700871 appCfgHandler.initVRouters(deviceId);
sanghob35a6192015-04-01 13:05:26 -0700872 }
873
Saurav Das80980c72016-03-23 11:22:49 -0700874 private void processDeviceRemoved(Device device) {
875 nsNextObjStore.entrySet().stream()
876 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
877 .forEach(entry -> {
878 nsNextObjStore.remove(entry.getKey());
879 });
Saurav Das80980c72016-03-23 11:22:49 -0700880 subnetNextObjStore.entrySet().stream()
881 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
882 .forEach(entry -> {
883 subnetNextObjStore.remove(entry.getKey());
884 });
Saurav Das80980c72016-03-23 11:22:49 -0700885 portNextObjStore.entrySet().stream()
886 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
887 .forEach(entry -> {
888 portNextObjStore.remove(entry.getKey());
889 });
Saurav Das80980c72016-03-23 11:22:49 -0700890 subnetVidStore.entrySet().stream()
891 .filter(entry -> entry.getKey().deviceId().equals(device.id()))
892 .forEach(entry -> {
893 subnetVidStore.remove(entry.getKey());
894 });
Saurav Das80980c72016-03-23 11:22:49 -0700895 groupHandlerMap.remove(device.id());
Saurav Das80980c72016-03-23 11:22:49 -0700896 defaultRoutingHandler.purgeEcmpGraph(device.id());
Charles Chan2199c302016-04-23 17:36:10 -0700897 mcastHandler.removeDevice(device.id());
Charles Chanfc5c7802016-05-17 13:13:55 -0700898 xConnectHandler.removeDevice(device.id());
Saurav Das80980c72016-03-23 11:22:49 -0700899 }
900
sanghob35a6192015-04-01 13:05:26 -0700901 private void processPortRemoved(Device device, Port port) {
Saurav Dasb5c236e2016-06-07 10:08:06 -0700902 log.info("Port {} was removed", port.toString());
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -0700903 DefaultGroupHandler groupHandler = groupHandlerMap.get(device.id());
sanghob35a6192015-04-01 13:05:26 -0700904 if (groupHandler != null) {
Saurav Das423fe2b2015-12-04 10:52:59 -0800905 groupHandler.portDown(port.number(),
906 mastershipService.isLocalMaster(device.id()));
sanghob35a6192015-04-01 13:05:26 -0700907 }
908 }
sangho1e575652015-05-14 00:39:53 -0700909
Charles Chand6832882015-10-05 17:50:33 -0700910 private class InternalConfigListener implements NetworkConfigListener {
Charles Chan2c15aca2016-11-09 20:51:44 -0800911 SegmentRoutingManager srManager;
Charles Chan4636be02015-10-07 14:21:45 -0700912
Charles Chane849c192016-01-11 18:28:54 -0800913 /**
914 * Constructs the internal network config listener.
915 *
Charles Chan2c15aca2016-11-09 20:51:44 -0800916 * @param srManager segment routing manager
Charles Chane849c192016-01-11 18:28:54 -0800917 */
Charles Chan2c15aca2016-11-09 20:51:44 -0800918 public InternalConfigListener(SegmentRoutingManager srManager) {
919 this.srManager = srManager;
Charles Chan4636be02015-10-07 14:21:45 -0700920 }
921
Charles Chane849c192016-01-11 18:28:54 -0800922 /**
923 * Reads network config and initializes related data structure accordingly.
924 */
Charles Chan4636be02015-10-07 14:21:45 -0700925 public void configureNetwork() {
Charles Chan2c15aca2016-11-09 20:51:44 -0800926 deviceConfiguration = new DeviceConfiguration(srManager);
Charles Chan4636be02015-10-07 14:21:45 -0700927
Charles Chan2c15aca2016-11-09 20:51:44 -0800928 arpHandler = new ArpHandler(srManager);
929 icmpHandler = new IcmpHandler(srManager);
930 ipHandler = new IpHandler(srManager);
931 routingRulePopulator = new RoutingRulePopulator(srManager);
932 defaultRoutingHandler = new DefaultRoutingHandler(srManager);
Charles Chan4636be02015-10-07 14:21:45 -0700933
934 tunnelHandler = new TunnelHandler(linkService, deviceConfiguration,
935 groupHandlerMap, tunnelStore);
936 policyHandler = new PolicyHandler(appId, deviceConfiguration,
937 flowObjectiveService,
938 tunnelHandler, policyStore);
939
Charles Chan4636be02015-10-07 14:21:45 -0700940 for (Device device : deviceService.getDevices()) {
Charles Chan2199c302016-04-23 17:36:10 -0700941 processDeviceAddedInternal(device.id());
Charles Chan4636be02015-10-07 14:21:45 -0700942 }
943
944 defaultRoutingHandler.startPopulationProcess();
Charles Chan2199c302016-04-23 17:36:10 -0700945 mcastHandler.init();
Charles Chan4636be02015-10-07 14:21:45 -0700946 }
947
Charles Chand6832882015-10-05 17:50:33 -0700948 @Override
949 public void event(NetworkConfigEvent event) {
Charles Chan5270ed02016-01-30 23:22:37 -0800950 // TODO move this part to NetworkConfigEventHandler
951 if (event.configClass().equals(SegmentRoutingDeviceConfig.class)) {
952 switch (event.type()) {
953 case CONFIG_ADDED:
954 log.info("Segment Routing Config added.");
955 configureNetwork();
956 break;
957 case CONFIG_UPDATED:
958 log.info("Segment Routing Config updated.");
959 // TODO support dynamic configuration
960 break;
961 default:
962 break;
Charles Chanb8e10c82015-10-14 11:24:40 -0700963 }
Charles Chan5270ed02016-01-30 23:22:37 -0800964 } else if (event.configClass().equals(SegmentRoutingAppConfig.class)) {
Charles Chanfc5c7802016-05-17 13:13:55 -0700965 checkState(appCfgHandler != null, "NetworkConfigEventHandler is not initialized");
Charles Chan5270ed02016-01-30 23:22:37 -0800966 switch (event.type()) {
967 case CONFIG_ADDED:
Charles Chanfc5c7802016-05-17 13:13:55 -0700968 appCfgHandler.processAppConfigAdded(event);
Charles Chan5270ed02016-01-30 23:22:37 -0800969 break;
970 case CONFIG_UPDATED:
Charles Chanfc5c7802016-05-17 13:13:55 -0700971 appCfgHandler.processAppConfigUpdated(event);
Charles Chan5270ed02016-01-30 23:22:37 -0800972 break;
973 case CONFIG_REMOVED:
Charles Chanfc5c7802016-05-17 13:13:55 -0700974 appCfgHandler.processAppConfigRemoved(event);
975 break;
976 default:
977 break;
978 }
979 } else if (event.configClass().equals(XConnectConfig.class)) {
980 checkState(xConnectHandler != null, "XConnectHandler is not initialized");
981 switch (event.type()) {
982 case CONFIG_ADDED:
983 xConnectHandler.processXConnectConfigAdded(event);
984 break;
985 case CONFIG_UPDATED:
986 xConnectHandler.processXConnectConfigUpdated(event);
987 break;
988 case CONFIG_REMOVED:
989 xConnectHandler.processXConnectConfigRemoved(event);
Charles Chan5270ed02016-01-30 23:22:37 -0800990 break;
991 default:
992 break;
Charles Chanb8e10c82015-10-14 11:24:40 -0700993 }
Charles Chand6832882015-10-05 17:50:33 -0700994 }
995 }
996 }
Charles Chan68aa62d2015-11-09 16:37:23 -0800997
998 private class InternalHostListener implements HostListener {
Charles Chan68aa62d2015-11-09 16:37:23 -0800999 @Override
1000 public void event(HostEvent event) {
1001 // Do not proceed without mastership
1002 DeviceId deviceId = event.subject().location().deviceId();
1003 if (!mastershipService.isLocalMaster(deviceId)) {
1004 return;
1005 }
1006
1007 switch (event.type()) {
1008 case HOST_ADDED:
Charles Chand2990362016-04-18 13:44:03 -07001009 hostHandler.processHostAddedEvent(event);
Charles Chan68aa62d2015-11-09 16:37:23 -08001010 break;
1011 case HOST_MOVED:
Charles Chand2990362016-04-18 13:44:03 -07001012 hostHandler.processHostMovedEvent(event);
Charles Chan68aa62d2015-11-09 16:37:23 -08001013 break;
1014 case HOST_REMOVED:
Charles Chand2990362016-04-18 13:44:03 -07001015 hostHandler.processHostRemoveEvent(event);
Charles Chan68aa62d2015-11-09 16:37:23 -08001016 break;
1017 case HOST_UPDATED:
Charles Chand2990362016-04-18 13:44:03 -07001018 hostHandler.processHostUpdatedEvent(event);
Charles Chan68aa62d2015-11-09 16:37:23 -08001019 break;
1020 default:
1021 log.warn("Unsupported host event type: {}", event.type());
1022 break;
1023 }
1024 }
1025 }
1026
Charles Chand55e84d2016-03-30 17:54:24 -07001027 private class InternalMcastListener implements McastListener {
1028 @Override
1029 public void event(McastEvent event) {
1030 switch (event.type()) {
1031 case SOURCE_ADDED:
Charles Chand2990362016-04-18 13:44:03 -07001032 mcastHandler.processSourceAdded(event);
Charles Chand55e84d2016-03-30 17:54:24 -07001033 break;
1034 case SINK_ADDED:
Charles Chand2990362016-04-18 13:44:03 -07001035 mcastHandler.processSinkAdded(event);
Charles Chand55e84d2016-03-30 17:54:24 -07001036 break;
1037 case SINK_REMOVED:
Charles Chand2990362016-04-18 13:44:03 -07001038 mcastHandler.processSinkRemoved(event);
Charles Chand55e84d2016-03-30 17:54:24 -07001039 break;
1040 case ROUTE_ADDED:
1041 case ROUTE_REMOVED:
1042 default:
1043 break;
1044 }
1045 }
1046 }
Charles Chan35fd1a72016-06-13 18:54:31 -07001047
1048 private class InternalCordConfigListener implements CordConfigListener {
1049 @Override
1050 public void event(CordConfigEvent event) {
1051 switch (event.type()) {
1052 case ACCESS_AGENT_ADDED:
1053 cordConfigHandler.processAccessAgentAddedEvent(event);
1054 break;
1055 case ACCESS_AGENT_UPDATED:
1056 cordConfigHandler.processAccessAgentUpdatedEvent(event);
1057 break;
1058 case ACCESS_AGENT_REMOVED:
1059 cordConfigHandler.processAccessAgentRemovedEvent(event);
1060 break;
1061 case ACCESS_DEVICE_ADDED:
1062 case ACCESS_DEVICE_UPDATED:
1063 case ACCESS_DEVICE_REMOVED:
1064 default:
1065 break;
1066 }
1067 }
1068 }
sanghob35a6192015-04-01 13:05:26 -07001069}