blob: 3920e2da654772fb7b1ba6c729b6350cbebc46e6 [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) {
269
270 if (MastershipEvent.Type.BACKUPS_CHANGED.equals(event.type())) {
271 // only need new master events
272 return;
273 }
274
275 DeviceId deviceId = event.subject();
276 Device device = deviceService.getDevice(deviceId);
277 if (device == null) {
278 log.warn("Device {} doesn't exist, or isn't there yet", deviceId);
279 return;
280 }
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800281 if (rules.isSuppressed(device)) {
282 return;
283 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800284 synchronized (discoverers) {
285 if (!discoverers.containsKey(deviceId)) {
alshabib4785eec2014-12-04 16:45:45 -0800286 // ideally, should never reach here
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800287 log.debug("Device mastership changed ({}) {}",
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700288 event.type(), deviceId);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800289 discoverers.put(deviceId, new LinkDiscovery(device,
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700290 packetService, masterService, providerService,
291 useBDDP));
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800292 }
293 }
294 }
295
296 }
alshabib7911a052014-10-16 17:49:37 -0700297
298 private class InternalLinkProvider implements PacketProcessor, DeviceListener {
299
300 @Override
301 public void event(DeviceEvent event) {
302 LinkDiscovery ld = null;
303 Device device = event.subject();
alshabibacd91832014-10-17 14:38:41 -0700304 Port port = event.port();
alshabibdfc7afb2014-10-21 20:13:27 -0700305 if (device == null) {
306 log.error("Device is null.");
307 return;
308 }
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700309 log.trace("{} {} {}", event.type(), event.subject(), event);
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700310 final DeviceId deviceId = device.id();
alshabib7911a052014-10-16 17:49:37 -0700311 switch (event.type()) {
312 case DEVICE_ADDED:
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700313 case DEVICE_UPDATED:
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800314 synchronized (discoverers) {
315 ld = discoverers.get(deviceId);
316 if (ld == null) {
317 if (rules.isSuppressed(device)) {
318 log.debug("LinkDiscovery from {} disabled by configuration", device.id());
319 return;
320 }
321 log.debug("Device added ({}) {}", event.type(),
322 deviceId);
323 discoverers.put(deviceId, new LinkDiscovery(device,
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700324 packetService, masterService,
325 providerService, useBDDP));
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800326 } else {
327 if (ld.isStopped()) {
328 log.debug("Device restarted ({}) {}", event.type(),
329 deviceId);
330 ld.start();
331 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800332 }
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700333 }
alshabib7911a052014-10-16 17:49:37 -0700334 break;
335 case PORT_ADDED:
336 case PORT_UPDATED:
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700337 if (port.isEnabled()) {
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700338 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700339 if (ld == null) {
340 return;
341 }
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800342 if (rules.isSuppressed(port)) {
343 log.debug("LinkDiscovery from {}@{} disabled by configuration",
344 port.number(), device.id());
345 return;
346 }
Yuta HIGUCHI00b476f2014-10-25 21:33:07 -0700347 if (!port.number().isLogical()) {
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700348 log.debug("Port added {}", port);
Yuta HIGUCHI00b476f2014-10-25 21:33:07 -0700349 ld.addPort(port);
350 }
alshabib7911a052014-10-16 17:49:37 -0700351 } else {
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700352 log.debug("Port down {}", port);
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700353 ConnectPoint point = new ConnectPoint(deviceId,
alshabibacd91832014-10-17 14:38:41 -0700354 port.number());
alshabib7911a052014-10-16 17:49:37 -0700355 providerService.linksVanished(point);
356 }
357 break;
358 case PORT_REMOVED:
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700359 log.debug("Port removed {}", port);
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700360 ConnectPoint point = new ConnectPoint(deviceId,
alshabibacd91832014-10-17 14:38:41 -0700361 port.number());
alshabib7911a052014-10-16 17:49:37 -0700362 providerService.linksVanished(point);
alshabib4785eec2014-12-04 16:45:45 -0800363
alshabib7911a052014-10-16 17:49:37 -0700364 break;
365 case DEVICE_REMOVED:
366 case DEVICE_SUSPENDED:
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700367 log.debug("Device removed {}", deviceId);
368 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700369 if (ld == null) {
370 return;
371 }
372 ld.stop();
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700373 providerService.linksVanished(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700374 break;
375 case DEVICE_AVAILABILITY_CHANGED:
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700376 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700377 if (ld == null) {
378 return;
379 }
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700380 if (deviceService.isAvailable(deviceId)) {
381 log.debug("Device up {}", deviceId);
alshabib7911a052014-10-16 17:49:37 -0700382 ld.start();
383 } else {
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700384 providerService.linksVanished(deviceId);
385 log.debug("Device down {}", deviceId);
alshabib7911a052014-10-16 17:49:37 -0700386 ld.stop();
387 }
388 break;
Jonathan Hart9de692c2015-04-23 11:45:47 -0700389 case PORT_STATS_UPDATED:
390 break;
alshabib7911a052014-10-16 17:49:37 -0700391 default:
392 log.debug("Unknown event {}", event);
393 }
394 }
395
396 @Override
397 public void process(PacketContext context) {
alshabib4a179dc2014-10-17 17:17:01 -0700398 if (context == null) {
399 return;
400 }
alshabib7911a052014-10-16 17:49:37 -0700401 LinkDiscovery ld = discoverers.get(
402 context.inPacket().receivedFrom().deviceId());
403 if (ld == null) {
404 return;
405 }
406
407 if (ld.handleLLDP(context)) {
408 context.block();
409 }
410 }
411 }
412
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800413 private final class SyncDeviceInfoTask implements Runnable {
414
415 @Override
416 public void run() {
417 if (Thread.currentThread().isInterrupted()) {
418 log.info("Interrupted, quitting");
419 return;
420 }
421 // check what deviceService sees, to see if we are missing anything
422 try {
423 LinkDiscovery ld = null;
424 for (Device dev : deviceService.getDevices()) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800425 if (rules.isSuppressed(dev)) {
426 continue;
427 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800428 DeviceId did = dev.id();
429 synchronized (discoverers) {
430 if (!discoverers.containsKey(did)) {
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800431 ld = new LinkDiscovery(dev, packetService,
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700432 masterService, providerService, useBDDP);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800433 discoverers.put(did, ld);
434 for (Port p : deviceService.getPorts(did)) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800435 if (rules.isSuppressed(p)) {
436 continue;
437 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800438 if (!p.number().isLogical()) {
439 ld.addPort(p);
440 }
441 }
442 }
443 }
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}