blob: 6a69af891d74e1aba0dd11d312d7c1eece1e68a1 [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) {
Saurav Dasc313c402015-02-27 10:09:47 -0800148 log.info("Link Discovery has been permanently disabled by configuration");
149 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);
166 for (Port p : deviceService.getPorts(device.id())) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800167 if (rules.isSuppressed(p)) {
168 log.debug("LinkDiscovery from {}@{} disabled by configuration",
169 p.number(), device.id());
170 continue;
171 }
Yuta HIGUCHI00b476f2014-10-25 21:33:07 -0700172 if (!p.number().isLogical()) {
173 ld.addPort(p);
174 }
alshabibdfc7afb2014-10-21 20:13:27 -0700175 }
176 }
alshabib7911a052014-10-16 17:49:37 -0700177
Thomas Vachuska6f94ded2015-02-21 14:02:38 -0800178 executor = newSingleThreadScheduledExecutor(groupedThreads("onos/device", "sync-%d"));
179 executor.scheduleAtFixedRate(new SyncDeviceInfoTask(), INIT_DELAY, DELAY, SECONDS);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800180
Jonathan Hart3cfce8e2015-01-14 16:43:27 -0800181 requestPackets();
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800182
alshabib7911a052014-10-16 17:49:37 -0700183 log.info("Started");
184 }
185
186 @Deactivate
187 public void deactivate() {
Charles M.C. Chane148de82015-05-06 12:38:21 +0800188 // TODO revoke all packet requests when deactivate
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700189 cfgService.unregisterProperties(getClass(), false);
190 if (disableLinkDiscovery) {
Saurav Dasc313c402015-02-27 10:09:47 -0800191 return;
192 }
alshabib7911a052014-10-16 17:49:37 -0700193 providerRegistry.unregister(this);
194 deviceService.removeListener(listener);
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800195 packetService.removeProcessor(listener);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800196 masterService.removeListener(roleListener);
Thomas Vachuskafc52fec2015-05-18 19:13:56 -0700197
198 executor.shutdownNow();
199 discoverers.values().forEach(LinkDiscovery::stop);
200 discoverers.clear();
alshabib7911a052014-10-16 17:49:37 -0700201 providerService = null;
202
203 log.info("Stopped");
204 }
205
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800206 @Modified
207 public void modified(ComponentContext context) {
Charles M.C. Chane148de82015-05-06 12:38:21 +0800208 // TODO revoke unnecessary packet requests when config being modified
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800209 if (context == null) {
Saurav Dasc313c402015-02-27 10:09:47 -0800210 loadSuppressionRules();
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800211 return;
212 }
213 @SuppressWarnings("rawtypes")
214 Dictionary properties = context.getProperties();
215
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700216 String s = get(properties, PROP_DISABLE_LD);
Saurav Dasc313c402015-02-27 10:09:47 -0800217 if (!Strings.isNullOrEmpty(s)) {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700218 disableLinkDiscovery = Boolean.valueOf(s);
Saurav Dasc313c402015-02-27 10:09:47 -0800219 }
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700220 s = get(properties, PROP_USE_BDDP);
Saurav Dasc313c402015-02-27 10:09:47 -0800221 if (!Strings.isNullOrEmpty(s)) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800222 useBDDP = Boolean.valueOf(s);
223 }
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700224 s = get(properties, PROP_LLDP_SUPPRESSION);
Saurav Dasc313c402015-02-27 10:09:47 -0800225 if (!Strings.isNullOrEmpty(s)) {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700226 lldpSuppression = s;
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800227 }
228
229 loadSuppressionRules();
230 }
231
232 private void loadSuppressionRules() {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700233 SuppressionRulesStore store = new SuppressionRulesStore(lldpSuppression);
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800234 try {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700235 log.info("Reading suppression rules from {}", lldpSuppression);
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800236 rules = store.read();
237 } catch (IOException e) {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700238 log.info("Failed to load {}, using built-in rules", lldpSuppression);
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800239 // default rule to suppress ROADM to maintain compatibility
240 rules = new SuppressionRules(ImmutableSet.of(),
241 EnumSet.of(Device.Type.ROADM),
242 ImmutableMap.of());
243 }
244
245 // should refresh discoverers when we need dynamic reconfiguration
246 }
247
Charles M.C. Chane148de82015-05-06 12:38:21 +0800248 /**
249 * Request packet in via PacketService.
250 */
Jonathan Hart3cfce8e2015-01-14 16:43:27 -0800251 private void requestPackets() {
252 TrafficSelector.Builder lldpSelector = DefaultTrafficSelector.builder();
253 lldpSelector.matchEthType(Ethernet.TYPE_LLDP);
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800254 packetService.requestPackets(lldpSelector.build(),
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700255 PacketPriority.CONTROL, appId);
Jonathan Hart3cfce8e2015-01-14 16:43:27 -0800256
257 if (useBDDP) {
258 TrafficSelector.Builder bddpSelector = DefaultTrafficSelector.builder();
259 bddpSelector.matchEthType(Ethernet.TYPE_BSN);
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800260 packetService.requestPackets(bddpSelector.build(),
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700261 PacketPriority.CONTROL, appId);
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800262 }
263 }
264
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800265 private class InternalRoleListener implements MastershipListener {
266
267 @Override
268 public void event(MastershipEvent event) {
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800269 if (MastershipEvent.Type.BACKUPS_CHANGED.equals(event.type())) {
270 // only need new master events
271 return;
272 }
273
274 DeviceId deviceId = event.subject();
275 Device device = deviceService.getDevice(deviceId);
276 if (device == null) {
Thomas Vachuska3358af22015-05-19 18:40:34 -0700277 log.debug("Device {} doesn't exist, or isn't there yet", deviceId);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800278 return;
279 }
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800280 if (rules.isSuppressed(device)) {
281 return;
282 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800283 synchronized (discoverers) {
284 if (!discoverers.containsKey(deviceId)) {
alshabib4785eec2014-12-04 16:45:45 -0800285 // ideally, should never reach here
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800286 log.debug("Device mastership changed ({}) {}",
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700287 event.type(), deviceId);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800288 discoverers.put(deviceId, new LinkDiscovery(device,
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700289 packetService, masterService, providerService,
290 useBDDP));
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800291 }
292 }
293 }
294
295 }
alshabib7911a052014-10-16 17:49:37 -0700296
297 private class InternalLinkProvider implements PacketProcessor, DeviceListener {
298
299 @Override
300 public void event(DeviceEvent event) {
301 LinkDiscovery ld = null;
302 Device device = event.subject();
alshabibacd91832014-10-17 14:38:41 -0700303 Port port = event.port();
alshabibdfc7afb2014-10-21 20:13:27 -0700304 if (device == null) {
305 log.error("Device is null.");
306 return;
307 }
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700308 log.trace("{} {} {}", event.type(), event.subject(), event);
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700309 final DeviceId deviceId = device.id();
alshabib7911a052014-10-16 17:49:37 -0700310 switch (event.type()) {
311 case DEVICE_ADDED:
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700312 case DEVICE_UPDATED:
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800313 synchronized (discoverers) {
314 ld = discoverers.get(deviceId);
315 if (ld == null) {
316 if (rules.isSuppressed(device)) {
317 log.debug("LinkDiscovery from {} disabled by configuration", device.id());
318 return;
319 }
320 log.debug("Device added ({}) {}", event.type(),
321 deviceId);
322 discoverers.put(deviceId, new LinkDiscovery(device,
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700323 packetService, masterService,
324 providerService, useBDDP));
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800325 } else {
326 if (ld.isStopped()) {
327 log.debug("Device restarted ({}) {}", event.type(),
328 deviceId);
329 ld.start();
330 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800331 }
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700332 }
alshabib7911a052014-10-16 17:49:37 -0700333 break;
334 case PORT_ADDED:
335 case PORT_UPDATED:
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700336 if (port.isEnabled()) {
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700337 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700338 if (ld == null) {
339 return;
340 }
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800341 if (rules.isSuppressed(port)) {
342 log.debug("LinkDiscovery from {}@{} disabled by configuration",
343 port.number(), device.id());
344 return;
345 }
Yuta HIGUCHI00b476f2014-10-25 21:33:07 -0700346 if (!port.number().isLogical()) {
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700347 log.debug("Port added {}", port);
Yuta HIGUCHI00b476f2014-10-25 21:33:07 -0700348 ld.addPort(port);
349 }
alshabib7911a052014-10-16 17:49:37 -0700350 } else {
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700351 log.debug("Port down {}", port);
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700352 ConnectPoint point = new ConnectPoint(deviceId,
alshabibacd91832014-10-17 14:38:41 -0700353 port.number());
alshabib7911a052014-10-16 17:49:37 -0700354 providerService.linksVanished(point);
355 }
356 break;
357 case PORT_REMOVED:
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700358 log.debug("Port removed {}", port);
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700359 ConnectPoint point = new ConnectPoint(deviceId,
alshabibacd91832014-10-17 14:38:41 -0700360 port.number());
alshabib7911a052014-10-16 17:49:37 -0700361 providerService.linksVanished(point);
alshabib4785eec2014-12-04 16:45:45 -0800362
alshabib7911a052014-10-16 17:49:37 -0700363 break;
364 case DEVICE_REMOVED:
365 case DEVICE_SUSPENDED:
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700366 log.debug("Device removed {}", deviceId);
367 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700368 if (ld == null) {
369 return;
370 }
371 ld.stop();
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700372 providerService.linksVanished(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700373 break;
374 case DEVICE_AVAILABILITY_CHANGED:
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700375 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700376 if (ld == null) {
377 return;
378 }
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700379 if (deviceService.isAvailable(deviceId)) {
380 log.debug("Device up {}", deviceId);
alshabib7911a052014-10-16 17:49:37 -0700381 ld.start();
382 } else {
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700383 providerService.linksVanished(deviceId);
384 log.debug("Device down {}", deviceId);
alshabib7911a052014-10-16 17:49:37 -0700385 ld.stop();
386 }
387 break;
Jonathan Hart9de692c2015-04-23 11:45:47 -0700388 case PORT_STATS_UPDATED:
389 break;
alshabib7911a052014-10-16 17:49:37 -0700390 default:
391 log.debug("Unknown event {}", event);
392 }
393 }
394
395 @Override
396 public void process(PacketContext context) {
alshabib4a179dc2014-10-17 17:17:01 -0700397 if (context == null) {
398 return;
399 }
alshabib7911a052014-10-16 17:49:37 -0700400 LinkDiscovery ld = discoverers.get(
401 context.inPacket().receivedFrom().deviceId());
402 if (ld == null) {
403 return;
404 }
405
406 if (ld.handleLLDP(context)) {
407 context.block();
408 }
409 }
410 }
411
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800412 private final class SyncDeviceInfoTask implements Runnable {
413
414 @Override
415 public void run() {
416 if (Thread.currentThread().isInterrupted()) {
417 log.info("Interrupted, quitting");
418 return;
419 }
420 // check what deviceService sees, to see if we are missing anything
421 try {
422 LinkDiscovery ld = null;
423 for (Device dev : deviceService.getDevices()) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800424 if (rules.isSuppressed(dev)) {
425 continue;
426 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800427 DeviceId did = dev.id();
428 synchronized (discoverers) {
429 if (!discoverers.containsKey(did)) {
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800430 ld = new LinkDiscovery(dev, packetService,
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700431 masterService, providerService, useBDDP);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800432 discoverers.put(did, ld);
433 for (Port p : deviceService.getPorts(did)) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800434 if (rules.isSuppressed(p)) {
435 continue;
436 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800437 if (!p.number().isLogical()) {
438 ld.addPort(p);
439 }
440 }
441 }
442 }
443 }
444 } catch (Exception e) {
445 // catch all Exception to avoid Scheduled task being suppressed.
446 log.error("Exception thrown during synchronization process", e);
447 }
448 }
449 }
450
alshabib7911a052014-10-16 17:49:37 -0700451}