blob: f4ac22e4bcb5055cdf09d1643985badbb957fba6 [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
alshabib7911a052014-10-16 17:49:37 -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
alshabib7911a052014-10-16 17:49:37 -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
Madan Jampani565a66a2015-07-25 17:01:13 -070018import static com.google.common.base.Preconditions.checkNotNull;
19import static java.util.concurrent.TimeUnit.MILLISECONDS;
20import static org.onosproject.net.PortNumber.portNumber;
21import static org.onosproject.net.flow.DefaultTrafficTreatment.builder;
22import static org.slf4j.LoggerFactory.getLogger;
23
24import java.nio.ByteBuffer;
25import java.util.Collections;
26import java.util.HashMap;
27import java.util.HashSet;
28import java.util.Iterator;
29import java.util.Map;
30import java.util.Set;
31import java.util.concurrent.atomic.AtomicInteger;
32
alshabib7911a052014-10-16 17:49:37 -070033import org.jboss.netty.util.Timeout;
34import org.jboss.netty.util.TimerTask;
Jonathan Harte8600eb2015-01-12 10:30:45 -080035import org.onlab.packet.Ethernet;
36import org.onlab.packet.ONOSLLDP;
37import org.onlab.util.Timer;
Brian O'Connorabafb502014-12-02 22:26:20 -080038import org.onosproject.mastership.MastershipService;
39import org.onosproject.net.ConnectPoint;
40import org.onosproject.net.Device;
41import org.onosproject.net.DeviceId;
42import org.onosproject.net.Link.Type;
43import org.onosproject.net.Port;
44import org.onosproject.net.PortNumber;
45import org.onosproject.net.link.DefaultLinkDescription;
46import org.onosproject.net.link.LinkDescription;
47import org.onosproject.net.link.LinkProviderService;
48import org.onosproject.net.packet.DefaultOutboundPacket;
49import org.onosproject.net.packet.OutboundPacket;
50import org.onosproject.net.packet.PacketContext;
51import org.onosproject.net.packet.PacketService;
alshabib7911a052014-10-16 17:49:37 -070052import org.slf4j.Logger;
53
Thomas Vachuska4b420772014-10-30 16:46:17 -070054// TODO: add 'fast discovery' mode: drop LLDPs in destination switch but listen for flow_removed messages
55
alshabib7911a052014-10-16 17:49:37 -070056/**
57 * Run discovery process from a physical switch. Ports are initially labeled as
58 * slow ports. When an LLDP is successfully received, label the remote port as
59 * fast. Every probeRate milliseconds, loop over all fast ports and send an
60 * LLDP, send an LLDP for a single slow port. Based on FlowVisor topology
61 * discovery implementation.
alshabib7911a052014-10-16 17:49:37 -070062 */
63public class LinkDiscovery implements TimerTask {
64
65 private final Device device;
66 // send 1 probe every probeRate milliseconds
67 private final long probeRate;
68 private final Set<Long> slowPorts;
Yuta HIGUCHIf6725882014-10-29 15:25:51 -070069 // ports, known to have incoming links
alshabib7911a052014-10-16 17:49:37 -070070 private final Set<Long> fastPorts;
71 // number of unacknowledged probes per port
72 private final Map<Long, AtomicInteger> portProbeCount;
73 // number of probes to send before link is removed
74 private static final short MAX_PROBE_COUNT = 3;
75 private final Logger log = getLogger(getClass());
76 private final ONOSLLDP lldpPacket;
77 private final Ethernet ethPacket;
78 private Ethernet bddpEth;
79 private final boolean useBDDP;
80 private final LinkProviderService linkProvider;
81 private final PacketService pktService;
alshabib875d6262014-10-17 16:19:40 -070082 private final MastershipService mastershipService;
alshabib7911a052014-10-16 17:49:37 -070083 private Timeout timeout;
Yuta HIGUCHI32255782014-11-04 22:32:14 -080084 private volatile boolean isStopped;
alshabib7911a052014-10-16 17:49:37 -070085
86 /**
87 * Instantiates discovery manager for the given physical switch. Creates a
88 * generic LLDP packet that will be customized for the port it is sent out on.
89 * Starts the the timer for the discovery process.
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -070090 *
91 * @param device the physical switch
Yuta HIGUCHI5c947272014-11-03 21:39:21 -080092 * @param pktService packet service
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -070093 * @param masterService mastership service
Yuta HIGUCHI5c947272014-11-03 21:39:21 -080094 * @param providerService link provider service
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -070095 * @param useBDDP flag to also use BDDP for discovery
alshabib7911a052014-10-16 17:49:37 -070096 */
97 public LinkDiscovery(Device device, PacketService pktService,
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -070098 MastershipService masterService,
99 LinkProviderService providerService, Boolean... useBDDP) {
alshabib7911a052014-10-16 17:49:37 -0700100 this.device = device;
101 this.probeRate = 3000;
102 this.linkProvider = providerService;
103 this.pktService = pktService;
alshabib3d643ec2014-10-22 18:33:00 -0700104
105 this.mastershipService = checkNotNull(masterService, "WTF!");
Thomas Vachuskafc52fec2015-05-18 19:13:56 -0700106 this.slowPorts = Collections.synchronizedSet(new HashSet<>());
107 this.fastPorts = Collections.synchronizedSet(new HashSet<>());
alshabib7911a052014-10-16 17:49:37 -0700108 this.portProbeCount = new HashMap<>();
109 this.lldpPacket = new ONOSLLDP();
110 this.lldpPacket.setChassisId(device.chassisId());
111 this.lldpPacket.setDevice(device.id().toString());
112
113
114 this.ethPacket = new Ethernet();
115 this.ethPacket.setEtherType(Ethernet.TYPE_LLDP);
116 this.ethPacket.setDestinationMACAddress(ONOSLLDP.LLDP_NICIRA);
117 this.ethPacket.setPayload(this.lldpPacket);
118 this.ethPacket.setPad(true);
119 this.useBDDP = useBDDP.length > 0 ? useBDDP[0] : false;
120 if (this.useBDDP) {
121 this.bddpEth = new Ethernet();
122 this.bddpEth.setPayload(this.lldpPacket);
123 this.bddpEth.setEtherType(Ethernet.TYPE_BSN);
124 this.bddpEth.setDestinationMACAddress(ONOSLLDP.BDDP_MULTICAST);
125 this.bddpEth.setPad(true);
126 log.info("Using BDDP to discover network");
127 }
128
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700129 this.isStopped = true;
alshabib7911a052014-10-16 17:49:37 -0700130 start();
131 this.log.debug("Started discovery manager for switch {}",
132 device.id());
133
134 }
135
136 /**
137 * Add physical port port to discovery process.
138 * Send out initial LLDP and label it as slow port.
139 *
140 * @param port the port
141 */
142 public void addPort(final Port port) {
Jonathan Hart45066bc2015-07-28 11:18:34 -0700143 boolean newPort = false;
alshabib7911a052014-10-16 17:49:37 -0700144 synchronized (this) {
Jonathan Hart45066bc2015-07-28 11:18:34 -0700145 if (!containsPort(port.number().toLong())) {
146 newPort = true;
147 this.slowPorts.add(port.number().toLong());
148 }
149 }
150
Madan Jampani565a66a2015-07-25 17:01:13 -0700151 boolean isMaster = mastershipService.isLocalMaster(device.id());
Jonathan Hart45066bc2015-07-28 11:18:34 -0700152 if (newPort && isMaster) {
153 this.log.debug("Sending init probe to port {}@{}",
154 port.number().toLong(), device.id());
155 sendProbes(port.number().toLong());
alshabib7911a052014-10-16 17:49:37 -0700156 }
alshabib7911a052014-10-16 17:49:37 -0700157 }
158
159 /**
160 * Removes physical port from discovery process.
161 *
162 * @param port the port
163 */
164 public void removePort(final Port port) {
165 // Ignore ports that are not on this switch
166
167 long portnum = port.number().toLong();
168 synchronized (this) {
169 if (this.slowPorts.contains(portnum)) {
170 this.slowPorts.remove(portnum);
171
172 } else if (this.fastPorts.contains(portnum)) {
173 this.fastPorts.remove(portnum);
174 this.portProbeCount.remove(portnum);
175 // no iterator to update
176 } else {
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700177 this.log.warn("Tried to dynamically remove non-existing port {}",
178 portnum);
alshabib7911a052014-10-16 17:49:37 -0700179 }
180 }
181 }
182
183 /**
184 * Method called by remote port to acknowledge receipt of LLDP sent by
185 * this port. If slow port, updates label to fast. If fast port, decrements
186 * number of unacknowledged probes.
187 *
188 * @param portNumber the port
189 */
190 public void ackProbe(final Long portNumber) {
alshabib7911a052014-10-16 17:49:37 -0700191 synchronized (this) {
192 if (this.slowPorts.contains(portNumber)) {
193 this.log.debug("Setting slow port to fast: {}:{}",
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700194 this.device.id(), portNumber);
alshabib7911a052014-10-16 17:49:37 -0700195 this.slowPorts.remove(portNumber);
196 this.fastPorts.add(portNumber);
197 this.portProbeCount.put(portNumber, new AtomicInteger(0));
alshabibacd91832014-10-17 14:38:41 -0700198 } else if (this.fastPorts.contains(portNumber)) {
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700199 this.portProbeCount.get(portNumber).set(0);
alshabibacd91832014-10-17 14:38:41 -0700200 } else {
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700201 this.log.debug("Got ackProbe for non-existing port: {}", portNumber);
alshabib7911a052014-10-16 17:49:37 -0700202 }
203 }
204 }
205
206
207 /**
208 * Handles an incoming LLDP packet. Creates link in topology and sends ACK
209 * to port where LLDP originated.
Yuta HIGUCHI5c947272014-11-03 21:39:21 -0800210 * @param context packet context
211 * @return true if handled
alshabib7911a052014-10-16 17:49:37 -0700212 */
213 public boolean handleLLDP(PacketContext context) {
214 Ethernet eth = context.inPacket().parsed();
Jonathan Harte8600eb2015-01-12 10:30:45 -0800215 if (eth == null) {
216 return false;
217 }
218
alshabib7911a052014-10-16 17:49:37 -0700219 ONOSLLDP onoslldp = ONOSLLDP.parseONOSLLDP(eth);
220 if (onoslldp != null) {
221 final PortNumber dstPort =
222 context.inPacket().receivedFrom().port();
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700223 final PortNumber srcPort = portNumber(onoslldp.getPort());
alshabib7911a052014-10-16 17:49:37 -0700224 final DeviceId srcDeviceId = DeviceId.deviceId(onoslldp.getDeviceString());
225 final DeviceId dstDeviceId = context.inPacket().receivedFrom().deviceId();
Jonathan Hart43ef46f2014-10-23 08:33:33 -0700226 this.ackProbe(dstPort.toLong());
alshabib7911a052014-10-16 17:49:37 -0700227 ConnectPoint src = new ConnectPoint(srcDeviceId, srcPort);
228 ConnectPoint dst = new ConnectPoint(dstDeviceId, dstPort);
229
230 LinkDescription ld;
231 if (eth.getEtherType() == Ethernet.TYPE_BSN) {
232 ld = new DefaultLinkDescription(src, dst, Type.INDIRECT);
233 } else {
234 ld = new DefaultLinkDescription(src, dst, Type.DIRECT);
235 }
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700236
237 try {
238 linkProvider.linkDetected(ld);
239 } catch (IllegalStateException e) {
240 return true;
241 }
alshabib7911a052014-10-16 17:49:37 -0700242 return true;
243 }
244 return false;
245 }
246
247
alshabib7911a052014-10-16 17:49:37 -0700248 /**
249 * Execute this method every t milliseconds. Loops over all ports
250 * labeled as fast and sends out an LLDP. Send out an LLDP on a single slow
251 * port.
252 *
253 * @param t timeout
alshabib7911a052014-10-16 17:49:37 -0700254 */
255 @Override
256 public void run(final Timeout t) {
Yuta HIGUCHI34198582014-11-10 16:24:58 -0800257 if (isStopped()) {
258 return;
259 }
Madan Jampani565a66a2015-07-25 17:01:13 -0700260 if (!mastershipService.isLocalMaster(device.id())) {
Yuta HIGUCHI32255782014-11-04 22:32:14 -0800261 if (!isStopped()) {
262 // reschedule timer
263 timeout = Timer.getTimer().newTimeout(this, this.probeRate, MILLISECONDS);
264 }
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700265 return;
266 }
267
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700268 this.log.trace("Sending probes from {}", device.id());
alshabib7911a052014-10-16 17:49:37 -0700269 synchronized (this) {
270 final Iterator<Long> fastIterator = this.fastPorts.iterator();
alshabib7911a052014-10-16 17:49:37 -0700271 while (fastIterator.hasNext()) {
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700272 long portNumber = fastIterator.next();
273 int probeCount = portProbeCount.get(portNumber).getAndIncrement();
alshabib7911a052014-10-16 17:49:37 -0700274
275 if (probeCount < LinkDiscovery.MAX_PROBE_COUNT) {
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700276 this.log.trace("Sending fast probe to port {}", portNumber);
alshabib7911a052014-10-16 17:49:37 -0700277 sendProbes(portNumber);
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700278
alshabib7911a052014-10-16 17:49:37 -0700279 } else {
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700280 // Link down, demote to slowPorts
alshabib7911a052014-10-16 17:49:37 -0700281 // Update fast and slow ports
alshabibdfc7afb2014-10-21 20:13:27 -0700282 fastIterator.remove();
283 this.slowPorts.add(portNumber);
284 this.portProbeCount.remove(portNumber);
285
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700286 ConnectPoint cp = new ConnectPoint(device.id(),
287 portNumber(portNumber));
alshabib7911a052014-10-16 17:49:37 -0700288 log.debug("Link down -> {}", cp);
289 linkProvider.linksVanished(cp);
290 }
291 }
292
293 // send a probe for the next slow port
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700294 for (long portNumber : slowPorts) {
295 this.log.trace("Sending slow probe to port {}", portNumber);
296 sendProbes(portNumber);
alshabib7911a052014-10-16 17:49:37 -0700297 }
298 }
299
Yuta HIGUCHI32255782014-11-04 22:32:14 -0800300 if (!isStopped()) {
301 // reschedule timer
302 timeout = Timer.getTimer().newTimeout(this, this.probeRate, MILLISECONDS);
303 }
alshabib7911a052014-10-16 17:49:37 -0700304 }
305
Yuta HIGUCHI32255782014-11-04 22:32:14 -0800306 public synchronized void stop() {
alshabib0ed6a202014-10-19 12:42:57 -0700307 isStopped = true;
Thomas Vachuskafc52fec2015-05-18 19:13:56 -0700308 timeout.cancel();
alshabib7911a052014-10-16 17:49:37 -0700309 }
310
Yuta HIGUCHI32255782014-11-04 22:32:14 -0800311 public synchronized void start() {
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700312 if (isStopped) {
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700313 isStopped = false;
Thomas Vachuskafc52fec2015-05-18 19:13:56 -0700314 timeout = Timer.getTimer().newTimeout(this, 0, MILLISECONDS);
Yuta HIGUCHIf6725882014-10-29 15:25:51 -0700315 } else {
316 log.warn("LinkDiscovery started multiple times?");
317 }
alshabib7911a052014-10-16 17:49:37 -0700318 }
319
320 /**
321 * Creates packet_out LLDP for specified output port.
322 *
323 * @param port the port
324 * @return Packet_out message with LLDP data
325 */
326 private OutboundPacket createOutBoundLLDP(final Long port) {
327 if (port == null) {
328 return null;
329 }
330 this.lldpPacket.setPortId(port.intValue());
331 this.ethPacket.setSourceMACAddress("DE:AD:BE:EF:BA:11");
332
333 final byte[] lldp = this.ethPacket.serialize();
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700334 return new DefaultOutboundPacket(this.device.id(),
335 builder().setOutput(portNumber(port)).build(),
336 ByteBuffer.wrap(lldp));
alshabib7911a052014-10-16 17:49:37 -0700337 }
338
339 /**
340 * Creates packet_out BDDP for specified output port.
341 *
342 * @param port the port
343 * @return Packet_out message with LLDP data
344 */
345 private OutboundPacket createOutBoundBDDP(final Long port) {
346 if (port == null) {
347 return null;
348 }
349 this.lldpPacket.setPortId(port.intValue());
350 this.bddpEth.setSourceMACAddress("DE:AD:BE:EF:BA:11");
351
352 final byte[] bddp = this.bddpEth.serialize();
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700353 return new DefaultOutboundPacket(this.device.id(),
354 builder().setOutput(portNumber(port)).build(),
355 ByteBuffer.wrap(bddp));
alshabib7911a052014-10-16 17:49:37 -0700356 }
357
358 private void sendProbes(Long portNumber) {
Yuta HIGUCHI41289382014-12-19 17:47:12 -0800359 log.trace("Sending probes out to {}@{}", portNumber, device.id());
360 OutboundPacket pkt = this.createOutBoundLLDP(portNumber);
361 pktService.emit(pkt);
362 if (useBDDP) {
363 OutboundPacket bpkt = this.createOutBoundBDDP(portNumber);
364 pktService.emit(bpkt);
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700365 }
alshabib7911a052014-10-16 17:49:37 -0700366 }
367
alshabib0ed6a202014-10-19 12:42:57 -0700368 public boolean containsPort(Long portNumber) {
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700369 return slowPorts.contains(portNumber) || fastPorts.contains(portNumber);
alshabib0ed6a202014-10-19 12:42:57 -0700370 }
371
Thomas Vachuskafc52fec2015-05-18 19:13:56 -0700372 public synchronized boolean isStopped() {
373 return isStopped || timeout.isCancelled();
alshabib0ed6a202014-10-19 12:42:57 -0700374 }
375
alshabib7911a052014-10-16 17:49:37 -0700376}