blob: 5c0dde7c0919e93f85a2fc929814cdc34a151265 [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);
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800154 packetService.addProcessor(listener, 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
278
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800279 private class InternalRoleListener implements MastershipListener {
280
281 @Override
282 public void event(MastershipEvent event) {
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800283 if (MastershipEvent.Type.BACKUPS_CHANGED.equals(event.type())) {
284 // only need new master events
285 return;
286 }
287
288 DeviceId deviceId = event.subject();
289 Device device = deviceService.getDevice(deviceId);
290 if (device == null) {
Thomas Vachuska3358af22015-05-19 18:40:34 -0700291 log.debug("Device {} doesn't exist, or isn't there yet", deviceId);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800292 return;
293 }
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800294 if (rules.isSuppressed(device)) {
295 return;
296 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800297 synchronized (discoverers) {
298 if (!discoverers.containsKey(deviceId)) {
alshabib4785eec2014-12-04 16:45:45 -0800299 // ideally, should never reach here
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800300 log.debug("Device mastership changed ({}) {}",
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700301 event.type(), deviceId);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800302 discoverers.put(deviceId, new LinkDiscovery(device,
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700303 packetService, masterService, providerService,
304 useBDDP));
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800305 }
306 }
307 }
308
309 }
alshabib7911a052014-10-16 17:49:37 -0700310
311 private class InternalLinkProvider implements PacketProcessor, DeviceListener {
312
313 @Override
314 public void event(DeviceEvent event) {
315 LinkDiscovery ld = null;
316 Device device = event.subject();
alshabibacd91832014-10-17 14:38:41 -0700317 Port port = event.port();
alshabibdfc7afb2014-10-21 20:13:27 -0700318 if (device == null) {
319 log.error("Device is null.");
320 return;
321 }
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700322 log.trace("{} {} {}", event.type(), event.subject(), event);
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700323 final DeviceId deviceId = device.id();
alshabib7911a052014-10-16 17:49:37 -0700324 switch (event.type()) {
325 case DEVICE_ADDED:
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700326 case DEVICE_UPDATED:
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800327 synchronized (discoverers) {
328 ld = discoverers.get(deviceId);
329 if (ld == null) {
330 if (rules.isSuppressed(device)) {
331 log.debug("LinkDiscovery from {} disabled by configuration", device.id());
332 return;
333 }
334 log.debug("Device added ({}) {}", event.type(),
335 deviceId);
336 discoverers.put(deviceId, new LinkDiscovery(device,
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700337 packetService, masterService,
338 providerService, useBDDP));
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800339 } else {
340 if (ld.isStopped()) {
341 log.debug("Device restarted ({}) {}", event.type(),
342 deviceId);
343 ld.start();
344 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800345 }
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700346 }
alshabib7911a052014-10-16 17:49:37 -0700347 break;
348 case PORT_ADDED:
349 case PORT_UPDATED:
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700350 if (port.isEnabled()) {
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700351 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700352 if (ld == null) {
353 return;
354 }
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800355 if (rules.isSuppressed(port)) {
356 log.debug("LinkDiscovery from {}@{} disabled by configuration",
357 port.number(), device.id());
358 return;
359 }
Yuta HIGUCHI00b476f2014-10-25 21:33:07 -0700360 if (!port.number().isLogical()) {
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700361 log.debug("Port added {}", port);
Yuta HIGUCHI00b476f2014-10-25 21:33:07 -0700362 ld.addPort(port);
363 }
alshabib7911a052014-10-16 17:49:37 -0700364 } else {
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700365 log.debug("Port down {}", port);
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700366 ConnectPoint point = new ConnectPoint(deviceId,
alshabibacd91832014-10-17 14:38:41 -0700367 port.number());
alshabib7911a052014-10-16 17:49:37 -0700368 providerService.linksVanished(point);
369 }
370 break;
371 case PORT_REMOVED:
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700372 log.debug("Port removed {}", port);
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700373 ConnectPoint point = new ConnectPoint(deviceId,
alshabibacd91832014-10-17 14:38:41 -0700374 port.number());
alshabib7911a052014-10-16 17:49:37 -0700375 providerService.linksVanished(point);
alshabib4785eec2014-12-04 16:45:45 -0800376
alshabib7911a052014-10-16 17:49:37 -0700377 break;
378 case DEVICE_REMOVED:
379 case DEVICE_SUSPENDED:
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700380 log.debug("Device removed {}", deviceId);
381 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700382 if (ld == null) {
383 return;
384 }
385 ld.stop();
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700386 providerService.linksVanished(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700387 break;
388 case DEVICE_AVAILABILITY_CHANGED:
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700389 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700390 if (ld == null) {
391 return;
392 }
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700393 if (deviceService.isAvailable(deviceId)) {
394 log.debug("Device up {}", deviceId);
alshabib7911a052014-10-16 17:49:37 -0700395 ld.start();
396 } else {
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700397 providerService.linksVanished(deviceId);
398 log.debug("Device down {}", deviceId);
alshabib7911a052014-10-16 17:49:37 -0700399 ld.stop();
400 }
401 break;
Jonathan Hart9de692c2015-04-23 11:45:47 -0700402 case PORT_STATS_UPDATED:
403 break;
alshabib7911a052014-10-16 17:49:37 -0700404 default:
405 log.debug("Unknown event {}", event);
406 }
407 }
408
409 @Override
410 public void process(PacketContext context) {
alshabib4a179dc2014-10-17 17:17:01 -0700411 if (context == null) {
412 return;
413 }
alshabib7911a052014-10-16 17:49:37 -0700414 LinkDiscovery ld = discoverers.get(
415 context.inPacket().receivedFrom().deviceId());
416 if (ld == null) {
417 return;
418 }
419
420 if (ld.handleLLDP(context)) {
421 context.block();
422 }
423 }
424 }
425
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800426 private final class SyncDeviceInfoTask implements Runnable {
427
428 @Override
429 public void run() {
430 if (Thread.currentThread().isInterrupted()) {
431 log.info("Interrupted, quitting");
432 return;
433 }
434 // check what deviceService sees, to see if we are missing anything
435 try {
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800436 for (Device dev : deviceService.getDevices()) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800437 if (rules.isSuppressed(dev)) {
438 continue;
439 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800440 DeviceId did = dev.id();
441 synchronized (discoverers) {
Jonathan Hart45066bc2015-07-28 11:18:34 -0700442 LinkDiscovery discoverer = discoverers.get(did);
443 if (discoverer == null) {
444 discoverer = new LinkDiscovery(dev, packetService,
445 masterService, providerService, useBDDP);
446 discoverers.put(did, discoverer);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800447 }
Jonathan Hart45066bc2015-07-28 11:18:34 -0700448
449 addPorts(discoverer, did);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800450 }
451 }
452 } catch (Exception e) {
453 // catch all Exception to avoid Scheduled task being suppressed.
454 log.error("Exception thrown during synchronization process", e);
455 }
456 }
457 }
458
alshabib7911a052014-10-16 17:49:37 -0700459}