blob: 8db294bbed0b32c5a2d3ad99cb83f40fbdfee828 [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
Yuta HIGUCHI41289382014-12-19 17:47:12 -080076 private static final String PROP_USE_BDDP = "useBDDP";
Saurav Dasc313c402015-02-27 10:09:47 -080077 private static final String PROP_DISABLE_LD = "disableLinkDiscovery";
Yuta HIGUCHI41289382014-12-19 17:47:12 -080078 private static final String PROP_LLDP_SUPPRESSION = "lldpSuppression";
79
80 private static final String DEFAULT_LLDP_SUPPRESSION_CONFIG = "../config/lldp_suppression.json";
81
alshabib7911a052014-10-16 17:49:37 -070082 private final Logger log = getLogger(getClass());
83
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080084 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
85 protected CoreService coreService;
86
87 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
alshabib7911a052014-10-16 17:49:37 -070088 protected LinkProviderRegistry providerRegistry;
89
90 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
91 protected DeviceService deviceService;
92
93 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -080094 protected PacketService packetService;
alshabib7911a052014-10-16 17:49:37 -070095
alshabib875d6262014-10-17 16:19:40 -070096 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
97 protected MastershipService masterService;
98
Thomas Vachuska6519e6f2015-03-11 02:29:31 -070099 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
100 protected ComponentConfigService cfgService;
101
alshabib7911a052014-10-16 17:49:37 -0700102 private LinkProviderService providerService;
103
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800104 private ScheduledExecutorService executor;
105
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700106 @Property(name = PROP_USE_BDDP, boolValue = true,
107 label = "Use BDDP for link discovery")
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800108 private boolean useBDDP = true;
alshabib7911a052014-10-16 17:49:37 -0700109
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700110 @Property(name = PROP_DISABLE_LD, boolValue = false,
111 label = "Permanently disable link discovery")
112 private boolean disableLinkDiscovery = false;
Saurav Dasc313c402015-02-27 10:09:47 -0800113
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800114 private static final long INIT_DELAY = 5;
115 private static final long DELAY = 5;
alshabib7911a052014-10-16 17:49:37 -0700116
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700117 @Property(name = PROP_LLDP_SUPPRESSION, value = DEFAULT_LLDP_SUPPRESSION_CONFIG,
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800118 label = "Path to LLDP suppression configuration file")
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700119 private String lldpSuppression = DEFAULT_LLDP_SUPPRESSION_CONFIG;
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800120
121
alshabib7911a052014-10-16 17:49:37 -0700122 private final InternalLinkProvider listener = new InternalLinkProvider();
123
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800124 private final InternalRoleListener roleListener = new InternalRoleListener();
125
alshabib7911a052014-10-16 17:49:37 -0700126 protected final Map<DeviceId, LinkDiscovery> discoverers = new ConcurrentHashMap<>();
127
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800128 private SuppressionRules rules;
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800129 private ApplicationId appId;
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800130
alshabib7911a052014-10-16 17:49:37 -0700131 /**
132 * Creates an OpenFlow link provider.
133 */
134 public LLDPLinkProvider() {
Brian O'Connorabafb502014-12-02 22:26:20 -0800135 super(new ProviderId("lldp", "org.onosproject.provider.lldp"));
alshabib7911a052014-10-16 17:49:37 -0700136 }
137
138 @Activate
Saurav Dasc313c402015-02-27 10:09:47 -0800139 public void activate(ComponentContext context) {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700140 cfgService.registerProperties(getClass());
141 appId = coreService.registerApplication("org.onosproject.provider.lldp");
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800142
Saurav Dasc313c402015-02-27 10:09:47 -0800143 // to load configuration at startup
144 modified(context);
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700145 if (disableLinkDiscovery) {
Saurav Dasc313c402015-02-27 10:09:47 -0800146 log.info("Link Discovery has been permanently disabled by configuration");
147 return;
148 }
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800149
alshabib7911a052014-10-16 17:49:37 -0700150 providerService = providerRegistry.register(this);
151 deviceService.addListener(listener);
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800152 packetService.addProcessor(listener, 0);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800153 masterService.addListener(roleListener);
154
alshabibdfc7afb2014-10-21 20:13:27 -0700155 LinkDiscovery ld;
alshabib5dc5a342014-12-03 14:11:16 -0800156 for (Device device : deviceService.getAvailableDevices()) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800157 if (rules.isSuppressed(device)) {
158 log.debug("LinkDiscovery from {} disabled by configuration", device.id());
159 continue;
160 }
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800161 ld = new LinkDiscovery(device, packetService, masterService,
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700162 providerService, useBDDP);
alshabibdfc7afb2014-10-21 20:13:27 -0700163 discoverers.put(device.id(), ld);
164 for (Port p : deviceService.getPorts(device.id())) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800165 if (rules.isSuppressed(p)) {
166 log.debug("LinkDiscovery from {}@{} disabled by configuration",
167 p.number(), device.id());
168 continue;
169 }
Yuta HIGUCHI00b476f2014-10-25 21:33:07 -0700170 if (!p.number().isLogical()) {
171 ld.addPort(p);
172 }
alshabibdfc7afb2014-10-21 20:13:27 -0700173 }
174 }
alshabib7911a052014-10-16 17:49:37 -0700175
Thomas Vachuska6f94ded2015-02-21 14:02:38 -0800176 executor = newSingleThreadScheduledExecutor(groupedThreads("onos/device", "sync-%d"));
177 executor.scheduleAtFixedRate(new SyncDeviceInfoTask(), INIT_DELAY, DELAY, SECONDS);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800178
Jonathan Hart3cfce8e2015-01-14 16:43:27 -0800179 requestPackets();
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800180
alshabib7911a052014-10-16 17:49:37 -0700181 log.info("Started");
182 }
183
184 @Deactivate
185 public void deactivate() {
Charles M.C. Chane148de82015-05-06 12:38:21 +0800186 // TODO revoke all packet requests when deactivate
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700187 cfgService.unregisterProperties(getClass(), false);
188 if (disableLinkDiscovery) {
Saurav Dasc313c402015-02-27 10:09:47 -0800189 return;
190 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800191 executor.shutdownNow();
alshabib7911a052014-10-16 17:49:37 -0700192 for (LinkDiscovery ld : discoverers.values()) {
193 ld.stop();
194 }
195 providerRegistry.unregister(this);
196 deviceService.removeListener(listener);
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800197 packetService.removeProcessor(listener);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800198 masterService.removeListener(roleListener);
alshabib7911a052014-10-16 17:49:37 -0700199 providerService = null;
200
201 log.info("Stopped");
202 }
203
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800204 @Modified
205 public void modified(ComponentContext context) {
Charles M.C. Chane148de82015-05-06 12:38:21 +0800206 // TODO revoke unnecessary packet requests when config being modified
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800207 if (context == null) {
Saurav Dasc313c402015-02-27 10:09:47 -0800208 loadSuppressionRules();
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800209 return;
210 }
211 @SuppressWarnings("rawtypes")
212 Dictionary properties = context.getProperties();
213
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700214 String s = get(properties, PROP_DISABLE_LD);
Saurav Dasc313c402015-02-27 10:09:47 -0800215 if (!Strings.isNullOrEmpty(s)) {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700216 disableLinkDiscovery = Boolean.valueOf(s);
Saurav Dasc313c402015-02-27 10:09:47 -0800217 }
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700218 s = get(properties, PROP_USE_BDDP);
Saurav Dasc313c402015-02-27 10:09:47 -0800219 if (!Strings.isNullOrEmpty(s)) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800220 useBDDP = Boolean.valueOf(s);
221 }
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700222 s = get(properties, PROP_LLDP_SUPPRESSION);
Saurav Dasc313c402015-02-27 10:09:47 -0800223 if (!Strings.isNullOrEmpty(s)) {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700224 lldpSuppression = s;
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800225 }
226
227 loadSuppressionRules();
228 }
229
230 private void loadSuppressionRules() {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700231 SuppressionRulesStore store = new SuppressionRulesStore(lldpSuppression);
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800232 try {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700233 log.info("Reading suppression rules from {}", lldpSuppression);
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800234 rules = store.read();
235 } catch (IOException e) {
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700236 log.info("Failed to load {}, using built-in rules", lldpSuppression);
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800237 // default rule to suppress ROADM to maintain compatibility
238 rules = new SuppressionRules(ImmutableSet.of(),
239 EnumSet.of(Device.Type.ROADM),
240 ImmutableMap.of());
241 }
242
243 // should refresh discoverers when we need dynamic reconfiguration
244 }
245
Charles M.C. Chane148de82015-05-06 12:38:21 +0800246 /**
247 * Request packet in via PacketService.
248 */
Jonathan Hart3cfce8e2015-01-14 16:43:27 -0800249 private void requestPackets() {
250 TrafficSelector.Builder lldpSelector = DefaultTrafficSelector.builder();
251 lldpSelector.matchEthType(Ethernet.TYPE_LLDP);
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800252 packetService.requestPackets(lldpSelector.build(),
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700253 PacketPriority.CONTROL, appId);
Jonathan Hart3cfce8e2015-01-14 16:43:27 -0800254
255 if (useBDDP) {
256 TrafficSelector.Builder bddpSelector = DefaultTrafficSelector.builder();
257 bddpSelector.matchEthType(Ethernet.TYPE_BSN);
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800258 packetService.requestPackets(bddpSelector.build(),
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700259 PacketPriority.CONTROL, appId);
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -0800260 }
261 }
262
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800263 private class InternalRoleListener implements MastershipListener {
264
265 @Override
266 public void event(MastershipEvent event) {
267
268 if (MastershipEvent.Type.BACKUPS_CHANGED.equals(event.type())) {
269 // only need new master events
270 return;
271 }
272
273 DeviceId deviceId = event.subject();
274 Device device = deviceService.getDevice(deviceId);
275 if (device == null) {
276 log.warn("Device {} doesn't exist, or isn't there yet", deviceId);
277 return;
278 }
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800279 if (rules.isSuppressed(device)) {
280 return;
281 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800282 synchronized (discoverers) {
283 if (!discoverers.containsKey(deviceId)) {
alshabib4785eec2014-12-04 16:45:45 -0800284 // ideally, should never reach here
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800285 log.debug("Device mastership changed ({}) {}",
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700286 event.type(), deviceId);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800287 discoverers.put(deviceId, new LinkDiscovery(device,
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700288 packetService, masterService, providerService,
289 useBDDP));
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800290 }
291 }
292 }
293
294 }
alshabib7911a052014-10-16 17:49:37 -0700295
296 private class InternalLinkProvider implements PacketProcessor, DeviceListener {
297
298 @Override
299 public void event(DeviceEvent event) {
300 LinkDiscovery ld = null;
301 Device device = event.subject();
alshabibacd91832014-10-17 14:38:41 -0700302 Port port = event.port();
alshabibdfc7afb2014-10-21 20:13:27 -0700303 if (device == null) {
304 log.error("Device is null.");
305 return;
306 }
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700307 log.trace("{} {} {}", event.type(), event.subject(), event);
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700308 final DeviceId deviceId = device.id();
alshabib7911a052014-10-16 17:49:37 -0700309 switch (event.type()) {
310 case DEVICE_ADDED:
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700311 case DEVICE_UPDATED:
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800312 synchronized (discoverers) {
313 ld = discoverers.get(deviceId);
314 if (ld == null) {
315 if (rules.isSuppressed(device)) {
316 log.debug("LinkDiscovery from {} disabled by configuration", device.id());
317 return;
318 }
319 log.debug("Device added ({}) {}", event.type(),
320 deviceId);
321 discoverers.put(deviceId, new LinkDiscovery(device,
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700322 packetService, masterService,
323 providerService, useBDDP));
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800324 } else {
325 if (ld.isStopped()) {
326 log.debug("Device restarted ({}) {}", event.type(),
327 deviceId);
328 ld.start();
329 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800330 }
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700331 }
alshabib7911a052014-10-16 17:49:37 -0700332 break;
333 case PORT_ADDED:
334 case PORT_UPDATED:
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700335 if (port.isEnabled()) {
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700336 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700337 if (ld == null) {
338 return;
339 }
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800340 if (rules.isSuppressed(port)) {
341 log.debug("LinkDiscovery from {}@{} disabled by configuration",
342 port.number(), device.id());
343 return;
344 }
Yuta HIGUCHI00b476f2014-10-25 21:33:07 -0700345 if (!port.number().isLogical()) {
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700346 log.debug("Port added {}", port);
Yuta HIGUCHI00b476f2014-10-25 21:33:07 -0700347 ld.addPort(port);
348 }
alshabib7911a052014-10-16 17:49:37 -0700349 } else {
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700350 log.debug("Port down {}", port);
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700351 ConnectPoint point = new ConnectPoint(deviceId,
alshabibacd91832014-10-17 14:38:41 -0700352 port.number());
alshabib7911a052014-10-16 17:49:37 -0700353 providerService.linksVanished(point);
354 }
355 break;
356 case PORT_REMOVED:
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700357 log.debug("Port removed {}", port);
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700358 ConnectPoint point = new ConnectPoint(deviceId,
alshabibacd91832014-10-17 14:38:41 -0700359 port.number());
alshabib7911a052014-10-16 17:49:37 -0700360 providerService.linksVanished(point);
alshabib4785eec2014-12-04 16:45:45 -0800361
alshabib7911a052014-10-16 17:49:37 -0700362 break;
363 case DEVICE_REMOVED:
364 case DEVICE_SUSPENDED:
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700365 log.debug("Device removed {}", deviceId);
366 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700367 if (ld == null) {
368 return;
369 }
370 ld.stop();
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700371 providerService.linksVanished(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700372 break;
373 case DEVICE_AVAILABILITY_CHANGED:
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700374 ld = discoverers.get(deviceId);
alshabib7911a052014-10-16 17:49:37 -0700375 if (ld == null) {
376 return;
377 }
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700378 if (deviceService.isAvailable(deviceId)) {
379 log.debug("Device up {}", deviceId);
alshabib7911a052014-10-16 17:49:37 -0700380 ld.start();
381 } else {
Yuta HIGUCHId19f6702014-10-31 15:23:25 -0700382 providerService.linksVanished(deviceId);
383 log.debug("Device down {}", deviceId);
alshabib7911a052014-10-16 17:49:37 -0700384 ld.stop();
385 }
386 break;
Jonathan Hart9de692c2015-04-23 11:45:47 -0700387 case PORT_STATS_UPDATED:
388 break;
alshabib7911a052014-10-16 17:49:37 -0700389 default:
390 log.debug("Unknown event {}", event);
391 }
392 }
393
394 @Override
395 public void process(PacketContext context) {
alshabib4a179dc2014-10-17 17:17:01 -0700396 if (context == null) {
397 return;
398 }
alshabib7911a052014-10-16 17:49:37 -0700399 LinkDiscovery ld = discoverers.get(
400 context.inPacket().receivedFrom().deviceId());
401 if (ld == null) {
402 return;
403 }
404
405 if (ld.handleLLDP(context)) {
406 context.block();
407 }
408 }
409 }
410
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800411 private final class SyncDeviceInfoTask implements Runnable {
412
413 @Override
414 public void run() {
415 if (Thread.currentThread().isInterrupted()) {
416 log.info("Interrupted, quitting");
417 return;
418 }
419 // check what deviceService sees, to see if we are missing anything
420 try {
421 LinkDiscovery ld = null;
422 for (Device dev : deviceService.getDevices()) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800423 if (rules.isSuppressed(dev)) {
424 continue;
425 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800426 DeviceId did = dev.id();
427 synchronized (discoverers) {
428 if (!discoverers.containsKey(did)) {
Marc De Leenheer8b3e80b2015-03-06 14:27:03 -0800429 ld = new LinkDiscovery(dev, packetService,
Thomas Vachuska6519e6f2015-03-11 02:29:31 -0700430 masterService, providerService, useBDDP);
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800431 discoverers.put(did, ld);
432 for (Port p : deviceService.getPorts(did)) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800433 if (rules.isSuppressed(p)) {
434 continue;
435 }
Ayaka Koshibeccfa94c2014-11-20 11:15:52 -0800436 if (!p.number().isLogical()) {
437 ld.addPort(p);
438 }
439 }
440 }
441 }
442 }
443 } catch (Exception e) {
444 // catch all Exception to avoid Scheduled task being suppressed.
445 log.error("Exception thrown during synchronization process", e);
446 }
447 }
448 }
449
alshabib7911a052014-10-16 17:49:37 -0700450}