blob: e9e2bfadefbfdf23990c766501e548bb6d4492ae [file] [log] [blame]
Thomas Vachuska781d18b2014-10-27 10:31:25 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 Open Networking Laboratory
Thomas Vachuska781d18b2014-10-27 10:31:25 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska781d18b2014-10-27 10:31:25 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska781d18b2014-10-27 10:31:25 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.provider.lldp.impl;
alshabib7911a052014-10-16 17:49:37 -070017
Thomas Vachuska6f94ded2015-02-21 14:02:38 -080018import com.google.common.base.Strings;
19import com.google.common.collect.ImmutableMap;
20import com.google.common.collect.ImmutableSet;
alshabib7911a052014-10-16 17:49:37 -070021import org.apache.felix.scr.annotations.Activate;
22import org.apache.felix.scr.annotations.Component;
23import org.apache.felix.scr.annotations.Deactivate;
Yuta HIGUCHI41289382014-12-19 17:47:12 -080024import org.apache.felix.scr.annotations.Modified;
25import org.apache.felix.scr.annotations.Property;
alshabib7911a052014-10-16 17:49:37 -070026import org.apache.felix.scr.annotations.Reference;
27import org.apache.felix.scr.annotations.ReferenceCardinality;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080028import org.onlab.packet.Ethernet;
Thomas Vachuska6519e6f2015-03-11 02:29:31 -070029import org.onosproject.cfg.ComponentConfigService;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080030import org.onosproject.core.ApplicationId;
31import org.onosproject.core.CoreService;
Brian O'Connorabafb502014-12-02 22:26:20 -080032import org.onosproject.mastership.MastershipEvent;
33import org.onosproject.mastership.MastershipListener;
34import org.onosproject.mastership.MastershipService;
35import org.onosproject.net.ConnectPoint;
36import org.onosproject.net.Device;
37import org.onosproject.net.DeviceId;
38import org.onosproject.net.Port;
39import org.onosproject.net.device.DeviceEvent;
40import org.onosproject.net.device.DeviceListener;
41import org.onosproject.net.device.DeviceService;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080042import org.onosproject.net.flow.DefaultTrafficSelector;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080043import org.onosproject.net.flow.TrafficSelector;
Brian O'Connorabafb502014-12-02 22:26:20 -080044import org.onosproject.net.link.LinkProvider;
45import org.onosproject.net.link.LinkProviderRegistry;
46import org.onosproject.net.link.LinkProviderService;
47import org.onosproject.net.packet.PacketContext;
Jonathan Hart3cfce8e2015-01-14 16:43:27 -080048import org.onosproject.net.packet.PacketPriority;
Brian O'Connorabafb502014-12-02 22:26:20 -080049import org.onosproject.net.packet.PacketProcessor;
50import org.onosproject.net.packet.PacketService;
51import org.onosproject.net.provider.AbstractProvider;
52import org.onosproject.net.provider.ProviderId;
Yuta HIGUCHI41289382014-12-19 17:47:12 -080053import org.osgi.service.component.ComponentContext;
alshabib7911a052014-10-16 17:49:37 -070054import org.slf4j.Logger;
55
Thomas Vachuska6f94ded2015-02-21 14:02:38 -080056import java.io.IOException;
57import java.util.Dictionary;
58import java.util.EnumSet;
59import java.util.Map;
60import java.util.concurrent.ConcurrentHashMap;
61import java.util.concurrent.ScheduledExecutorService;
62
63import static java.util.concurrent.Executors.newSingleThreadScheduledExecutor;
64import static java.util.concurrent.TimeUnit.SECONDS;
Thomas Vachuska6519e6f2015-03-11 02:29:31 -070065import static org.onlab.util.Tools.get;
Thomas Vachuska6f94ded2015-02-21 14:02:38 -080066import static org.onlab.util.Tools.groupedThreads;
67import static org.slf4j.LoggerFactory.getLogger;
Yuta HIGUCHI41289382014-12-19 17:47:12 -080068
alshabib7911a052014-10-16 17:49:37 -070069/**
70 * Provider which uses an OpenFlow controller to detect network
71 * infrastructure links.
72 */
73@Component(immediate = true)
74public class LLDPLinkProvider extends AbstractProvider implements LinkProvider {
75
Thomas Vachuskafc52fec2015-05-18 19:13:56 -070076 private static final String PROVIDER_NAME = "org.onosproject.provider.lldp";
77
Yuta HIGUCHI41289382014-12-19 17:47:12 -080078 private static final String PROP_USE_BDDP = "useBDDP";
Saurav Dasc313c402015-02-27 10:09:47 -080079 private static final String PROP_DISABLE_LD = "disableLinkDiscovery";
Yuta HIGUCHI41289382014-12-19 17:47:12 -080080 private static final String PROP_LLDP_SUPPRESSION = "lldpSuppression";
81
82 private static final String DEFAULT_LLDP_SUPPRESSION_CONFIG = "../config/lldp_suppression.json";
83
alshabib7911a052014-10-16 17:49:37 -070084 private final Logger log = getLogger(getClass());
85
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080086 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
87 protected CoreService coreService;
88
89 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
alshabib7911a052014-10-16 17:49:37 -070090 protected LinkProviderRegistry providerRegistry;
91
92 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
93 protected DeviceService deviceService;
94
95 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -080096 protected PacketService packetService;
alshabib7911a052014-10-16 17:49:37 -070097
alshabib875d6262014-10-17 16:19:40 -070098 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
99 protected MastershipService masterService;
100
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700101 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
102 protected ComponentConfigService cfgService;
103
alshabib7911a052014-10-16 17:49:37 -0700104 private LinkProviderService providerService;
105
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800106 private ScheduledExecutorService executor;
107
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700108 @Property(name = PROP_USE_BDDP, boolValue = true,
109 label = "Use BDDP for link discovery")
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800110 private boolean useBDDP = true;
alshabib7911a052014-10-16 17:49:37 -0700111
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700112 @Property(name = PROP_DISABLE_LD, boolValue = false,
113 label = "Permanently disable link discovery")
114 private boolean disableLinkDiscovery = false;
Saurav Dasc313c402015-02-27 10:09:47 -0800115
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800116 private static final long INIT_DELAY = 5;
117 private static final long DELAY = 5;
alshabib7911a052014-10-16 17:49:37 -0700118
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700119 @Property(name = PROP_LLDP_SUPPRESSION, value = DEFAULT_LLDP_SUPPRESSION_CONFIG,
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800120 label = "Path to LLDP suppression configuration file")
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700121 private String lldpSuppression = DEFAULT_LLDP_SUPPRESSION_CONFIG;
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800122
123
alshabib7911a052014-10-16 17:49:37 -0700124 private final InternalLinkProvider listener = new InternalLinkProvider();
125
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800126 private final InternalRoleListener roleListener = new InternalRoleListener();
127
alshabib7911a052014-10-16 17:49:37 -0700128 protected final Map<DeviceId, LinkDiscovery> discoverers = new ConcurrentHashMap<>();
129
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800130 private SuppressionRules rules;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800131 private ApplicationId appId;
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800132
alshabib7911a052014-10-16 17:49:37 -0700133 /**
134 * Creates an OpenFlow link provider.
135 */
136 public LLDPLinkProvider() {
Thomas Vachuskafc52fec2015-05-18 19:13:56 -0700137 super(new ProviderId("lldp", PROVIDER_NAME));
alshabib7911a052014-10-16 17:49:37 -0700138 }
139
140 @Activate
Saurav Dasc313c402015-02-27 10:09:47 -0800141 public void activate(ComponentContext context) {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700142 cfgService.registerProperties(getClass());
Thomas Vachuskafc52fec2015-05-18 19:13:56 -0700143 appId = coreService.registerApplication(PROVIDER_NAME);
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800144
Saurav Dasc313c402015-02-27 10:09:47 -0800145 // to load configuration at startup
146 modified(context);
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700147 if (disableLinkDiscovery) {
Aaron Kruglikov07a923d2015-07-03 13:30:57 -0700148 log.info("LinkDiscovery has been permanently disabled by configuration");
Saurav Dasc313c402015-02-27 10:09:47 -0800149 return;
150 }
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800151
alshabib7911a052014-10-16 17:49:37 -0700152 providerService = providerRegistry.register(this);
153 deviceService.addListener(listener);
Brian O'Connor3b783262015-07-29 17:49:24 -0700154 packetService.addProcessor(listener, PacketProcessor.advisor(0));
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800155 masterService.addListener(roleListener);
156
alshabibdfc7afb2014-10-21 20:13:27 -0700157 LinkDiscovery ld;
alshabib5dc5a342014-12-03 14:11:16 -0800158 for (Device device : deviceService.getAvailableDevices()) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800159 if (rules.isSuppressed(device)) {
160 log.debug("LinkDiscovery from {} disabled by configuration", device.id());
161 continue;
162 }
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800163 ld = new LinkDiscovery(device, packetService, masterService,
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700164 providerService, useBDDP);
alshabibdfc7afb2014-10-21 20:13:27 -0700165 discoverers.put(device.id(), ld);
Jonathan Hart45066bc2015-07-28 11:18:34 -0700166 addPorts(ld, device.id());
alshabibdfc7afb2014-10-21 20:13:27 -0700167 }
alshabib7911a052014-10-16 17:49:37 -0700168
Thomas Vachuska6f94ded2015-02-21 14:02:38 -0800169 executor = newSingleThreadScheduledExecutor(groupedThreads("onos/device", "sync-%d"));
170 executor.scheduleAtFixedRate(new SyncDeviceInfoTask(), INIT_DELAY, DELAY, SECONDS);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800171
Thomas Vachuska27bee092015-06-23 19:03:10 -0700172 requestIntercepts();
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800173
alshabib7911a052014-10-16 17:49:37 -0700174 log.info("Started");
175 }
176
Jonathan Hart45066bc2015-07-28 11:18:34 -0700177 private void addPorts(LinkDiscovery discoverer, DeviceId deviceId) {
178 for (Port p : deviceService.getPorts(deviceId)) {
179 if (rules.isSuppressed(p)) {
180 continue;
181 }
182 if (!p.number().isLogical()) {
183 discoverer.addPort(p);
184 }
185 }
186 }
187
alshabib7911a052014-10-16 17:49:37 -0700188 @Deactivate
189 public void deactivate() {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700190 cfgService.unregisterProperties(getClass(), false);
191 if (disableLinkDiscovery) {
Saurav Dasc313c402015-02-27 10:09:47 -0800192 return;
193 }
Thomas Vachuska27bee092015-06-23 19:03:10 -0700194
195 withdrawIntercepts();
196
alshabib7911a052014-10-16 17:49:37 -0700197 providerRegistry.unregister(this);
198 deviceService.removeListener(listener);
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800199 packetService.removeProcessor(listener);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800200 masterService.removeListener(roleListener);
Thomas Vachuskafc52fec2015-05-18 19:13:56 -0700201
202 executor.shutdownNow();
203 discoverers.values().forEach(LinkDiscovery::stop);
204 discoverers.clear();
alshabib7911a052014-10-16 17:49:37 -0700205 providerService = null;
206
207 log.info("Stopped");
208 }
209
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800210 @Modified
211 public void modified(ComponentContext context) {
212 if (context == null) {
Saurav Dasc313c402015-02-27 10:09:47 -0800213 loadSuppressionRules();
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800214 return;
215 }
216 @SuppressWarnings("rawtypes")
217 Dictionary properties = context.getProperties();
218
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700219 String s = get(properties, PROP_DISABLE_LD);
Saurav Dasc313c402015-02-27 10:09:47 -0800220 if (!Strings.isNullOrEmpty(s)) {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700221 disableLinkDiscovery = Boolean.valueOf(s);
Saurav Dasc313c402015-02-27 10:09:47 -0800222 }
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700223 s = get(properties, PROP_USE_BDDP);
Saurav Dasc313c402015-02-27 10:09:47 -0800224 if (!Strings.isNullOrEmpty(s)) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800225 useBDDP = Boolean.valueOf(s);
226 }
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700227 s = get(properties, PROP_LLDP_SUPPRESSION);
Saurav Dasc313c402015-02-27 10:09:47 -0800228 if (!Strings.isNullOrEmpty(s)) {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700229 lldpSuppression = s;
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800230 }
Thomas Vachuska27bee092015-06-23 19:03:10 -0700231 requestIntercepts();
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800232 loadSuppressionRules();
233 }
234
235 private void loadSuppressionRules() {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700236 SuppressionRulesStore store = new SuppressionRulesStore(lldpSuppression);
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800237 try {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700238 log.info("Reading suppression rules from {}", lldpSuppression);
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800239 rules = store.read();
240 } catch (IOException e) {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700241 log.info("Failed to load {}, using built-in rules", lldpSuppression);
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800242 // default rule to suppress ROADM to maintain compatibility
243 rules = new SuppressionRules(ImmutableSet.of(),
244 EnumSet.of(Device.Type.ROADM),
245 ImmutableMap.of());
246 }
247
248 // should refresh discoverers when we need dynamic reconfiguration
249 }
250
Charles M.C. Chane148de82015-05-06 12:38:21 +0800251 /**
Thomas Vachuska27bee092015-06-23 19:03:10 -0700252 * Request packet intercepts.
Charles M.C. Chane148de82015-05-06 12:38:21 +0800253 */
Thomas Vachuska27bee092015-06-23 19:03:10 -0700254 private void requestIntercepts() {
255 TrafficSelector.Builder selector = DefaultTrafficSelector.builder();
256 selector.matchEthType(Ethernet.TYPE_LLDP);
257 packetService.requestPackets(selector.build(), PacketPriority.CONTROL, appId);
Jonathan Hart3cfce8e2015-01-14 16:43:27 -0800258
Thomas Vachuska27bee092015-06-23 19:03:10 -0700259 selector.matchEthType(Ethernet.TYPE_BSN);
Jonathan Hart3cfce8e2015-01-14 16:43:27 -0800260 if (useBDDP) {
Thomas Vachuska27bee092015-06-23 19:03:10 -0700261 packetService.requestPackets(selector.build(), PacketPriority.CONTROL, appId);
262 } else {
263 packetService.cancelPackets(selector.build(), PacketPriority.CONTROL, appId);
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800264 }
265 }
266
Thomas Vachuska27bee092015-06-23 19:03:10 -0700267 /**
268 * Withdraw packet intercepts.
269 */
270 private void withdrawIntercepts() {
271 TrafficSelector.Builder selector = DefaultTrafficSelector.builder();
272 selector.matchEthType(Ethernet.TYPE_LLDP);
273 packetService.cancelPackets(selector.build(), PacketPriority.CONTROL, appId);
274 selector.matchEthType(Ethernet.TYPE_BSN);
275 packetService.cancelPackets(selector.build(), PacketPriority.CONTROL, appId);
276 }
277
Thomas Vachuska96f3ea72015-09-08 13:50:12 -0700278 private LinkDiscovery createLinkDiscovery(Device device) {
279 return new LinkDiscovery(device, packetService, masterService,
280 providerService, useBDDP);
281 }
Thomas Vachuska27bee092015-06-23 19:03:10 -0700282
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800283 private class InternalRoleListener implements MastershipListener {
284
285 @Override
286 public void event(MastershipEvent event) {
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800287 if (MastershipEvent.Type.BACKUPS_CHANGED.equals(event.type())) {
288 // only need new master events
289 return;
290 }
291
292 DeviceId deviceId = event.subject();
293 Device device = deviceService.getDevice(deviceId);
294 if (device == null) {
Thomas Vachuska3358af22015-05-19 18:40:34 -0700295 log.debug("Device {} doesn't exist, or isn't there yet", deviceId);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800296 return;
297 }
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800298 if (rules.isSuppressed(device)) {
299 return;
300 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800301 synchronized (discoverers) {
302 if (!discoverers.containsKey(deviceId)) {
alshabib4785eec2014-12-04 16:45:45 -0800303 // ideally, should never reach here
Thomas Vachuska96f3ea72015-09-08 13:50:12 -0700304 log.debug("Device mastership changed ({}) {}", event.type(), deviceId);
305 discoverers.put(deviceId, createLinkDiscovery(device));
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800306 }
307 }
308 }
309
310 }
alshabib7911a052014-10-16 17:49:37 -0700311
312 private class InternalLinkProvider implements PacketProcessor, DeviceListener {
313
314 @Override
315 public void event(DeviceEvent event) {
316 LinkDiscovery ld = null;
317 Device device = event.subject();
alshabibacd91832014-10-17 14:38:41 -0700318 Port port = event.port();
alshabibdfc7afb2014-10-21 20:13:27 -0700319 if (device == null) {
320 log.error("Device is null.");
321 return;
322 }
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700323 log.trace("{} {} {}", event.type(), event.subject(), event);
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700324 final DeviceId deviceId = device.id();
alshabib7911a052014-10-16 17:49:37 -0700325 switch (event.type()) {
326 case DEVICE_ADDED:
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700327 case DEVICE_UPDATED:
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800328 synchronized (discoverers) {
329 ld = discoverers.get(deviceId);
330 if (ld == null) {
331 if (rules.isSuppressed(device)) {
332 log.debug("LinkDiscovery from {} disabled by configuration", device.id());
333 return;
334 }
Thomas Vachuska96f3ea72015-09-08 13:50:12 -0700335 log.debug("Device added ({}) {}", event.type(), deviceId);
336 discoverers.put(deviceId, createLinkDiscovery(device));
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800337 } else {
338 if (ld.isStopped()) {
Thomas Vachuska96f3ea72015-09-08 13:50:12 -0700339 log.debug("Device restarted ({}) {}", event.type(), deviceId);
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800340 ld.start();
341 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800342 }
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700343 }
alshabib7911a052014-10-16 17:49:37 -0700344 break;
345 case PORT_ADDED:
346 case PORT_UPDATED:
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700347 if (port.isEnabled()) {
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700348 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700349 if (ld == null) {
350 return;
351 }
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800352 if (rules.isSuppressed(port)) {
353 log.debug("LinkDiscovery from {}@{} disabled by configuration",
354 port.number(), device.id());
355 return;
356 }
Yuta HIGUCHI00b476f2014-10-25 21:33:07 -0700357 if (!port.number().isLogical()) {
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700358 log.debug("Port added {}", port);
Yuta HIGUCHI00b476f2014-10-25 21:33:07 -0700359 ld.addPort(port);
360 }
alshabib7911a052014-10-16 17:49:37 -0700361 } else {
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700362 log.debug("Port down {}", port);
Thomas Vachuska96f3ea72015-09-08 13:50:12 -0700363 ConnectPoint point = new ConnectPoint(deviceId, port.number());
alshabib7911a052014-10-16 17:49:37 -0700364 providerService.linksVanished(point);
365 }
366 break;
367 case PORT_REMOVED:
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700368 log.debug("Port removed {}", port);
Thomas Vachuska96f3ea72015-09-08 13:50:12 -0700369 ConnectPoint point = new ConnectPoint(deviceId, port.number());
alshabib7911a052014-10-16 17:49:37 -0700370 providerService.linksVanished(point);
alshabib4785eec2014-12-04 16:45:45 -0800371
alshabib7911a052014-10-16 17:49:37 -0700372 break;
373 case DEVICE_REMOVED:
374 case DEVICE_SUSPENDED:
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700375 log.debug("Device removed {}", deviceId);
376 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700377 if (ld == null) {
378 return;
379 }
380 ld.stop();
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700381 providerService.linksVanished(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700382 break;
383 case DEVICE_AVAILABILITY_CHANGED:
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700384 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700385 if (ld == null) {
386 return;
387 }
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700388 if (deviceService.isAvailable(deviceId)) {
389 log.debug("Device up {}", deviceId);
alshabib7911a052014-10-16 17:49:37 -0700390 ld.start();
391 } else {
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700392 providerService.linksVanished(deviceId);
393 log.debug("Device down {}", deviceId);
alshabib7911a052014-10-16 17:49:37 -0700394 ld.stop();
395 }
396 break;
Jonathan Hart9de692c2015-04-23 11:45:47 -0700397 case PORT_STATS_UPDATED:
398 break;
alshabib7911a052014-10-16 17:49:37 -0700399 default:
400 log.debug("Unknown event {}", event);
401 }
402 }
403
404 @Override
405 public void process(PacketContext context) {
alshabib4a179dc2014-10-17 17:17:01 -0700406 if (context == null) {
407 return;
408 }
Thomas Vachuska96f3ea72015-09-08 13:50:12 -0700409 LinkDiscovery ld = discoverers.get(context.inPacket().receivedFrom().deviceId());
alshabib7911a052014-10-16 17:49:37 -0700410 if (ld == null) {
411 return;
412 }
413
414 if (ld.handleLLDP(context)) {
415 context.block();
416 }
417 }
418 }
419
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800420 private final class SyncDeviceInfoTask implements Runnable {
421
422 @Override
423 public void run() {
424 if (Thread.currentThread().isInterrupted()) {
425 log.info("Interrupted, quitting");
426 return;
427 }
428 // check what deviceService sees, to see if we are missing anything
429 try {
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800430 for (Device dev : deviceService.getDevices()) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800431 if (rules.isSuppressed(dev)) {
432 continue;
433 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800434 DeviceId did = dev.id();
435 synchronized (discoverers) {
Jonathan Hart45066bc2015-07-28 11:18:34 -0700436 LinkDiscovery discoverer = discoverers.get(did);
437 if (discoverer == null) {
Thomas Vachuska96f3ea72015-09-08 13:50:12 -0700438 discoverer = createLinkDiscovery(dev);
Jonathan Hart45066bc2015-07-28 11:18:34 -0700439 discoverers.put(did, discoverer);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800440 }
Jonathan Hart45066bc2015-07-28 11:18:34 -0700441
442 addPorts(discoverer, did);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800443 }
444 }
445 } catch (Exception e) {
446 // catch all Exception to avoid Scheduled task being suppressed.
447 log.error("Exception thrown during synchronization process", e);
448 }
449 }
450 }
451
alshabib7911a052014-10-16 17:49:37 -0700452}