blob: 3bbb60be702b7e428c9a11a2a3703f6d3f423843 [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001/**
2 * Copyright 2011, Big Switch Networks, Inc.
3 * Originally created by David Erickson, Stanford University
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may
6 * not use this file except in compliance with the License. You may obtain
7 * a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations
15 * under the License.
16 **/
17
Jonathan Hart23701d12014-04-03 10:45:48 -070018package net.onrc.onos.core.linkdiscovery.internal;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080019
20import java.io.IOException;
21import java.net.InetAddress;
22import java.net.InetSocketAddress;
23import java.net.NetworkInterface;
24import java.net.SocketAddress;
25import java.nio.ByteBuffer;
26import java.util.ArrayList;
27import java.util.Collection;
28import java.util.Collections;
29import java.util.HashMap;
30import java.util.HashSet;
31import java.util.Iterator;
32import java.util.List;
33import java.util.Map;
34import java.util.Map.Entry;
35import java.util.Set;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080036import java.util.concurrent.LinkedBlockingQueue;
37import java.util.concurrent.ScheduledExecutorService;
38import java.util.concurrent.TimeUnit;
39import java.util.concurrent.locks.ReentrantReadWriteLock;
40
41import net.floodlightcontroller.core.FloodlightContext;
42import net.floodlightcontroller.core.IFloodlightProviderService;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080043import net.floodlightcontroller.core.IOFMessageListener;
44import net.floodlightcontroller.core.IOFSwitch;
45import net.floodlightcontroller.core.IOFSwitchListener;
46import net.floodlightcontroller.core.annotations.LogMessageCategory;
47import net.floodlightcontroller.core.annotations.LogMessageDoc;
48import net.floodlightcontroller.core.annotations.LogMessageDocs;
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -070049import net.floodlightcontroller.core.internal.OFSwitchImpl;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080050import net.floodlightcontroller.core.module.FloodlightModuleContext;
51import net.floodlightcontroller.core.module.FloodlightModuleException;
52import net.floodlightcontroller.core.module.IFloodlightModule;
53import net.floodlightcontroller.core.module.IFloodlightService;
54import net.floodlightcontroller.core.util.SingletonTask;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080055import net.floodlightcontroller.restserver.IRestApiService;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080056import net.floodlightcontroller.threadpool.IThreadPoolService;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080057import net.floodlightcontroller.util.EventHistory;
58import net.floodlightcontroller.util.EventHistory.EvAction;
Jonathan Hart23701d12014-04-03 10:45:48 -070059import net.onrc.onos.core.linkdiscovery.ILinkDiscovery;
Jonathan Harta99ec672014-04-03 11:30:34 -070060import net.onrc.onos.core.linkdiscovery.ILinkDiscovery.LDUpdate;
61import net.onrc.onos.core.linkdiscovery.ILinkDiscovery.UpdateOperation;
Jonathan Hart23701d12014-04-03 10:45:48 -070062import net.onrc.onos.core.linkdiscovery.ILinkDiscoveryListener;
63import net.onrc.onos.core.linkdiscovery.ILinkDiscoveryService;
64import net.onrc.onos.core.linkdiscovery.Link;
65import net.onrc.onos.core.linkdiscovery.LinkInfo;
66import net.onrc.onos.core.linkdiscovery.NodePortTuple;
Jonathan Hart23701d12014-04-03 10:45:48 -070067import net.onrc.onos.core.linkdiscovery.web.LinkDiscoveryWebRoutable;
Jonathan Hart51f6f5b2014-04-03 10:32:10 -070068import net.onrc.onos.core.main.IOnosRemoteSwitch;
Jonathan Hartdeda0ba2014-04-03 11:14:12 -070069import net.onrc.onos.core.packet.BSN;
70import net.onrc.onos.core.packet.Ethernet;
71import net.onrc.onos.core.packet.IPv4;
72import net.onrc.onos.core.packet.LLDP;
73import net.onrc.onos.core.packet.LLDPTLV;
74import net.onrc.onos.core.registry.IControllerRegistryService;
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -070075
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080076import org.openflow.protocol.OFMessage;
77import org.openflow.protocol.OFPacketIn;
78import org.openflow.protocol.OFPacketOut;
79import org.openflow.protocol.OFPhysicalPort;
80import org.openflow.protocol.OFPhysicalPort.OFPortConfig;
81import org.openflow.protocol.OFPhysicalPort.OFPortState;
82import org.openflow.protocol.OFPort;
83import org.openflow.protocol.OFPortStatus;
84import org.openflow.protocol.OFPortStatus.OFPortReason;
85import org.openflow.protocol.OFType;
86import org.openflow.protocol.action.OFAction;
87import org.openflow.protocol.action.OFActionOutput;
88import org.openflow.util.HexString;
89import org.slf4j.Logger;
90import org.slf4j.LoggerFactory;
91
92/**
93 * This class sends out LLDP messages containing the sending switch's datapath
94 * id as well as the outgoing port number. Received LLrescDP messages that
95 * match a known switch cause a new LinkTuple to be created according to the
96 * invariant rules listed below. This new LinkTuple is also passed to routing
97 * if it exists to trigger updates.
Ray Milkey269ffb92014-04-03 14:43:30 -070098 * <p/>
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080099 * This class also handles removing links that are associated to switch ports
100 * that go down, and switches that are disconnected.
Ray Milkey269ffb92014-04-03 14:43:30 -0700101 * <p/>
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800102 * Invariants:
Ray Milkey269ffb92014-04-03 14:43:30 -0700103 * -portLinks and switchLinks will not contain empty Sets outside of
Ray Milkeyb41100a2014-04-10 10:42:15 -0700104 * critical sections.
Ray Milkey269ffb92014-04-03 14:43:30 -0700105 * -portLinks contains LinkTuples where one of the src or dst
Ray Milkeyb41100a2014-04-10 10:42:15 -0700106 * SwitchPortTuple matches the map key.
Ray Milkey269ffb92014-04-03 14:43:30 -0700107 * -switchLinks contains LinkTuples where one of the src or dst
Ray Milkeyb41100a2014-04-10 10:42:15 -0700108 * SwitchPortTuple's id matches the switch id.
Ray Milkey269ffb92014-04-03 14:43:30 -0700109 * -Each LinkTuple will be indexed into switchLinks for both
Ray Milkeyb41100a2014-04-10 10:42:15 -0700110 * src.id and dst.id, and portLinks for each src and dst.
111 * -The updates queue is only added to from within a held write lock.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800112 */
113@LogMessageCategory("Network Topology")
114public class LinkDiscoveryManager
Ray Milkey269ffb92014-04-03 14:43:30 -0700115 implements IOFMessageListener, IOFSwitchListener,
116 ILinkDiscoveryService, IFloodlightModule {
117 protected IFloodlightProviderService controller;
Ray Milkeyec838942014-04-09 11:28:43 -0700118 private static final Logger log = LoggerFactory.getLogger(LinkDiscoveryManager.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800119
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800120 protected IFloodlightProviderService floodlightProvider;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800121 protected IThreadPoolService threadPool;
122 protected IRestApiService restApi;
HIGUCHI Yuta30d03302013-06-14 13:47:36 -0700123 // Registry Service for ONOS
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -0700124 protected IControllerRegistryService registryService;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800125
HIGUCHI Yutae0515e52013-06-14 13:00:40 -0700126
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800127 // LLDP and BDDP fields
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800128 private static final byte[] LLDP_STANDARD_DST_MAC_STRING =
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800129 HexString.fromHexString("01:80:c2:00:00:0e");
Ray Milkey269ffb92014-04-03 14:43:30 -0700130 private static final long LINK_LOCAL_MASK = 0xfffffffffff0L;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800131 private static final long LINK_LOCAL_VALUE = 0x0180c2000000L;
132
133 // BigSwitch OUI is 5C:16:C7, so 5D:16:C7 is the multicast version
Masayoshi Kobayashi71137362013-07-12 15:54:52 -0700134 // private static final String LLDP_BSN_DST_MAC_STRING = "5d:16:c7:00:00:01";
135 private static final String LLDP_BSN_DST_MAC_STRING = "ff:ff:ff:ff:ff:ff";
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800136
137
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800138 // Direction TLVs are used to indicate if the LLDPs were sent
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800139 // periodically or in response to a recieved LLDP
140 private static final byte TLV_DIRECTION_TYPE = 0x73;
141 private static final short TLV_DIRECTION_LENGTH = 1; // 1 byte
Ray Milkey45614c52014-04-07 16:30:54 -0700142 private static final byte[] TLV_DIRECTION_VALUE_FORWARD = {0x01};
143 private static final byte[] TLV_DIRECTION_VALUE_REVERSE = {0x02};
Ray Milkey5c9f2db2014-04-09 10:31:21 -0700144 private static final LLDPTLV FORWARD_TLV
Ray Milkey269ffb92014-04-03 14:43:30 -0700145 = new LLDPTLV().
146 setType(TLV_DIRECTION_TYPE).
147 setLength(TLV_DIRECTION_LENGTH).
148 setValue(TLV_DIRECTION_VALUE_FORWARD);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800149
Ray Milkey5c9f2db2014-04-09 10:31:21 -0700150 private static final LLDPTLV REVERSE_TLV
Ray Milkey269ffb92014-04-03 14:43:30 -0700151 = new LLDPTLV().
152 setType(TLV_DIRECTION_TYPE).
153 setLength(TLV_DIRECTION_LENGTH).
154 setValue(TLV_DIRECTION_VALUE_REVERSE);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800155
156 // Link discovery task details.
157 protected SingletonTask discoveryTask;
Ray Milkey2476cac2014-04-08 11:03:21 -0700158 protected static final int DISCOVERY_TASK_INTERVAL = 1;
159 protected static final int LINK_TIMEOUT = 35; // original 35 secs, aggressive 5 secs
160 protected static final int LLDP_TO_ALL_INTERVAL = 15; //original 15 seconds, aggressive 2 secs.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800161 protected long lldpClock = 0;
162 // This value is intentionally kept higher than LLDP_TO_ALL_INTERVAL.
163 // If we want to identify link failures faster, we could decrease this
164 // value to a small number, say 1 or 2 sec.
Ray Milkey2476cac2014-04-08 11:03:21 -0700165 protected static final int LLDP_TO_KNOWN_INTERVAL = 20; // LLDP frequency for known links
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800166
167 protected LLDPTLV controllerTLV;
168 protected ReentrantReadWriteLock lock;
169 int lldpTimeCount = 0;
HIGUCHI Yutae0515e52013-06-14 13:00:40 -0700170
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800171 /**
172 * Flag to indicate if automatic port fast is enabled or not.
173 * Default is set to false -- Initialized in the init method as well.
174 */
175 boolean autoPortFastFeature = false;
176
177 /**
Umesh Krishnaswamyf962d642013-01-23 19:04:23 -0800178 * Map of remote switches that are not connected to this controller. This
HIGUCHI Yuta30d03302013-06-14 13:47:36 -0700179 * is used to learn remote switches in a distributed controller ONOS.
Umesh Krishnaswamyf962d642013-01-23 19:04:23 -0800180 */
HIGUCHI Yuta7677a6f2013-06-14 14:13:35 -0700181 protected Map<Long, IOnosRemoteSwitch> remoteSwitches;
HIGUCHI Yuta3d96f652013-06-17 12:07:48 -0700182
Umesh Krishnaswamyf962d642013-01-23 19:04:23 -0800183 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -0700184 * Map from link to the most recent time it was verified functioning.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800185 */
186 protected Map<Link, LinkInfo> links;
187
188 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -0700189 * Map from switch id to a set of all links with it as an endpoint.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800190 */
191 protected Map<Long, Set<Link>> switchLinks;
192
193 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -0700194 * Map from a id:port to the set of links containing it as an endpoint.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800195 */
196 protected Map<NodePortTuple, Set<Link>> portLinks;
197
198 /**
199 * Set of link tuples over which multicast LLDPs are received
200 * and unicast LLDPs are not received.
201 */
202 protected Map<NodePortTuple, Set<Link>> portBroadcastDomainLinks;
203
204 protected volatile boolean shuttingDown = false;
205
Ray Milkeyb41100a2014-04-10 10:42:15 -0700206 /**
207 * Topology aware components are called in the order they were added to the
208 * the array.
209 */
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800210 protected ArrayList<ILinkDiscoveryListener> linkDiscoveryAware;
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800211
Pankaj Berdedc73bb12013-08-14 13:46:38 -0700212 protected class LinkUpdate extends LDUpdate {
213
Ray Milkey269ffb92014-04-03 14:43:30 -0700214 public LinkUpdate(LDUpdate old) {
215 super(old);
216 }
217
218 @LogMessageDoc(level = "ERROR",
219 message = "Error in link discovery updates loop",
220 explanation = "An unknown error occured while dispatching " +
221 "link update notifications",
222 recommendation = LogMessageDoc.GENERIC_ACTION)
223 @Override
224 public void dispatch() {
225 if (linkDiscoveryAware != null) {
Jonathan Hartb0904bf2013-11-26 14:41:11 -0800226 if (log.isTraceEnabled()) {
227 log.trace("Dispatching link discovery update {} {} {} {} {} for {}",
Ray Milkey269ffb92014-04-03 14:43:30 -0700228 new Object[]{this.getOperation(),
229 HexString.toHexString(this.getSrc()), this.getSrcPort(),
230 HexString.toHexString(this.getDst()), this.getDstPort(),
231 linkDiscoveryAware});
Jonathan Hartb0904bf2013-11-26 14:41:11 -0800232 }
233 try {
234 for (ILinkDiscoveryListener lda : linkDiscoveryAware) { // order maintained
235 lda.linkDiscoveryUpdate(this);
236 }
Ray Milkey269ffb92014-04-03 14:43:30 -0700237 } catch (Exception e) {
Jonathan Hartb0904bf2013-11-26 14:41:11 -0800238 log.error("Error in link discovery updates loop", e);
239 }
240 }
Ray Milkey269ffb92014-04-03 14:43:30 -0700241 }
Pankaj Berdedc73bb12013-08-14 13:46:38 -0700242 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800243
244 /**
245 * List of ports through which LLDP/BDDPs are not sent.
246 */
247 protected Set<NodePortTuple> suppressLinkDiscovery;
248
Ray Milkey269ffb92014-04-03 14:43:30 -0700249 /**
250 * A list of ports that are quarantined for discovering links through
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800251 * them. Data traffic from these ports are not allowed until the ports
252 * are released from quarantine.
253 */
254 protected LinkedBlockingQueue<NodePortTuple> quarantineQueue;
255 protected LinkedBlockingQueue<NodePortTuple> maintenanceQueue;
256 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -0700257 * Quarantine task.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800258 */
259 protected SingletonTask bddpTask;
Ray Milkey2476cac2014-04-08 11:03:21 -0700260 protected static final int BDDP_TASK_INTERVAL = 100; // 100 ms.
261 protected static final int BDDP_TASK_SIZE = 5; // # of ports per iteration
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800262
263 /**
264 * Map of broadcast domain ports and the last time a BDDP was either
265 * sent or received on that port.
266 */
267 protected Map<NodePortTuple, Long> broadcastDomainPortTimeMap;
268
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800269 /**
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800270 * Get the LLDP sending period in seconds.
Ray Milkey269ffb92014-04-03 14:43:30 -0700271 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800272 * @return LLDP sending period in seconds.
273 */
274 public int getLldpFrequency() {
275 return LLDP_TO_KNOWN_INTERVAL;
276 }
277
278 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -0700279 * Get the LLDP timeout value in seconds.
Ray Milkey269ffb92014-04-03 14:43:30 -0700280 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800281 * @return LLDP timeout value in seconds
282 */
283 public int getLldpTimeout() {
284 return LINK_TIMEOUT;
285 }
286
287 public Map<NodePortTuple, Set<Link>> getPortLinks() {
288 return portLinks;
289 }
290
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800291 @Override
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800292 public Set<NodePortTuple> getSuppressLLDPsInfo() {
293 return suppressLinkDiscovery;
294 }
295
296 /**
297 * Add a switch port to the suppressed LLDP list.
298 * Remove any known links on the switch port.
299 */
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800300 @Override
Pavlin Radoslavov7d21c0a2014-04-10 10:32:59 -0700301 public void addToSuppressLLDPs(long sw, short port) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800302 NodePortTuple npt = new NodePortTuple(sw, port);
303 this.suppressLinkDiscovery.add(npt);
304 deleteLinksOnPort(npt, "LLDP suppressed.");
305 }
306
307 /**
308 * Remove a switch port from the suppressed LLDP list.
309 * Discover links on that switchport.
310 */
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800311 @Override
Pavlin Radoslavov7d21c0a2014-04-10 10:32:59 -0700312 public void removeFromSuppressLLDPs(long sw, short port) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800313 NodePortTuple npt = new NodePortTuple(sw, port);
314 this.suppressLinkDiscovery.remove(npt);
315 discover(npt);
316 }
317
318 public boolean isShuttingDown() {
319 return shuttingDown;
320 }
321
322 public boolean isFastPort(long sw, short port) {
323 return false;
324 }
325
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800326 @Override
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800327 public ILinkDiscovery.LinkType getLinkType(Link lt, LinkInfo info) {
328 if (info.getUnicastValidTime() != null) {
329 return ILinkDiscovery.LinkType.DIRECT_LINK;
330 } else if (info.getMulticastValidTime() != null) {
331 return ILinkDiscovery.LinkType.MULTIHOP_LINK;
332 }
333 return ILinkDiscovery.LinkType.INVALID_LINK;
334 }
335
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800336
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800337 private boolean isLinkDiscoverySuppressed(long sw, short portNumber) {
338 return this.suppressLinkDiscovery.contains(new NodePortTuple(sw, portNumber));
339 }
340
341 protected void discoverLinks() {
342
343 // timeout known links.
344 timeoutLinks();
345
346 //increment LLDP clock
Ray Milkey269ffb92014-04-03 14:43:30 -0700347 lldpClock = (lldpClock + 1) % LLDP_TO_ALL_INTERVAL;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800348
349 if (lldpClock == 0) {
350 log.debug("Sending LLDP out on all ports.");
351 discoverOnAllPorts();
352 }
353 }
354
355
356 /**
Ray Milkey269ffb92014-04-03 14:43:30 -0700357 * Quarantine Ports.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800358 */
359 protected class QuarantineWorker implements Runnable {
360 @Override
361 public void run() {
362 try {
363 processBDDPLists();
Ray Milkey269ffb92014-04-03 14:43:30 -0700364 } catch (Exception e) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800365 log.error("Error in quarantine worker thread", e);
366 } finally {
Ray Milkey269ffb92014-04-03 14:43:30 -0700367 bddpTask.reschedule(BDDP_TASK_INTERVAL,
368 TimeUnit.MILLISECONDS);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800369 }
370 }
371 }
372
373 /**
374 * Add a switch port to the quarantine queue. Schedule the
375 * quarantine task if the quarantine queue was empty before adding
376 * this switch port.
Ray Milkey269ffb92014-04-03 14:43:30 -0700377 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800378 * @param npt
379 */
380 protected void addToQuarantineQueue(NodePortTuple npt) {
Ray Milkey6c4f2fe2014-04-11 09:47:23 -0700381 if (!quarantineQueue.contains(npt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800382 quarantineQueue.add(npt);
Ray Milkeyb29e6262014-04-09 16:02:14 -0700383 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800384 }
385
386 /**
387 * Remove a switch port from the quarantine queue.
388 */
389 protected void removeFromQuarantineQueue(NodePortTuple npt) {
390 // Remove all occurrences of the node port tuple from the list.
Ray Milkey1aa71f82014-04-08 16:23:24 -0700391 boolean removedSomething;
392
393 do {
394 removedSomething = quarantineQueue.remove(npt);
395 } while (removedSomething);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800396 }
397
398 /**
399 * Add a switch port to maintenance queue.
Ray Milkey269ffb92014-04-03 14:43:30 -0700400 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800401 * @param npt
402 */
403 protected void addToMaintenanceQueue(NodePortTuple npt) {
404 // TODO We are not checking if the switch port tuple is already
405 // in the maintenance list or not. This will be an issue for
406 // really large number of switch ports in the network.
Ray Milkey6c4f2fe2014-04-11 09:47:23 -0700407 if (!maintenanceQueue.contains(npt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800408 maintenanceQueue.add(npt);
Ray Milkeyb29e6262014-04-09 16:02:14 -0700409 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800410 }
411
412 /**
413 * Remove a switch port from maintenance queue.
Ray Milkey269ffb92014-04-03 14:43:30 -0700414 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800415 * @param npt
416 */
417 protected void removeFromMaintenanceQueue(NodePortTuple npt) {
418 // Remove all occurrences of the node port tuple from the queue.
Ray Milkey1aa71f82014-04-08 16:23:24 -0700419 boolean removedSomething;
420 do {
421 removedSomething = maintenanceQueue.remove(npt);
422 } while (removedSomething);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800423 }
424
425 /**
Ray Milkey269ffb92014-04-03 14:43:30 -0700426 * This method processes the quarantine list in bursts. The task is
427 * at most once per BDDP_TASK_INTERVAL.
428 * One each call, BDDP_TASK_SIZE number of switch ports are processed.
429 * Once the BDDP packets are sent out through the switch ports, the ports
430 * are removed from the quarantine list.
431 */
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800432
433 protected void processBDDPLists() {
434 int count = 0;
435 Set<NodePortTuple> nptList = new HashSet<NodePortTuple>();
436
Ray Milkey269ffb92014-04-03 14:43:30 -0700437 while (count < BDDP_TASK_SIZE && quarantineQueue.peek() != null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800438 NodePortTuple npt;
439 npt = quarantineQueue.remove();
440 sendDiscoveryMessage(npt.getNodeId(), npt.getPortId(), false, false);
441 nptList.add(npt);
442 count++;
443 }
444
445 count = 0;
446 while (count < BDDP_TASK_SIZE && maintenanceQueue.peek() != null) {
447 NodePortTuple npt;
448 npt = maintenanceQueue.remove();
449 sendDiscoveryMessage(npt.getNodeId(), npt.getPortId(), false, false);
450 count++;
451 }
452
Ray Milkey269ffb92014-04-03 14:43:30 -0700453 for (NodePortTuple npt : nptList) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800454 generateSwitchPortStatusUpdate(npt.getNodeId(), npt.getPortId());
455 }
456 }
457
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800458 @Override
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800459 public Set<Short> getQuarantinedPorts(long sw) {
460 Set<Short> qPorts = new HashSet<Short>();
461
462 Iterator<NodePortTuple> iter = quarantineQueue.iterator();
463 while (iter.hasNext()) {
464 NodePortTuple npt = iter.next();
465 if (npt.getNodeId() == sw) {
466 qPorts.add(npt.getPortId());
467 }
468 }
469 return qPorts;
470 }
471
472 private void generateSwitchPortStatusUpdate(long sw, short port) {
473 UpdateOperation operation;
474
475 IOFSwitch iofSwitch = floodlightProvider.getSwitches().get(sw);
Ray Milkeyb29e6262014-04-09 16:02:14 -0700476 if (iofSwitch == null) {
477 return;
478 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800479
480 OFPhysicalPort ofp = iofSwitch.getPort(port);
Ray Milkeyb29e6262014-04-09 16:02:14 -0700481 if (ofp == null) {
482 return;
483 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800484
485 int srcPortState = ofp.getState();
486 boolean portUp = ((srcPortState &
487 OFPortState.OFPPS_STP_MASK.getValue()) !=
488 OFPortState.OFPPS_STP_BLOCK.getValue());
489
Ray Milkeyb29e6262014-04-09 16:02:14 -0700490 if (portUp) {
491 operation = UpdateOperation.PORT_UP;
492 } else {
493 operation = UpdateOperation.PORT_DOWN;
494 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800495
Pankaj Berdedc73bb12013-08-14 13:46:38 -0700496 LinkUpdate update = new LinkUpdate(new LDUpdate(sw, port, operation));
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800497
498
Pankaj Berdedc73bb12013-08-14 13:46:38 -0700499 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800500 }
501
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800502 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -0700503 * Send LLDP on known ports.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800504 */
505 protected void discoverOnKnownLinkPorts() {
506 // Copy the port set.
507 Set<NodePortTuple> nptSet = new HashSet<NodePortTuple>();
508 nptSet.addAll(portLinks.keySet());
509
510 // Send LLDP from each of them.
Ray Milkey269ffb92014-04-03 14:43:30 -0700511 for (NodePortTuple npt : nptSet) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800512 discover(npt);
513 }
514 }
515
516 protected void discover(NodePortTuple npt) {
517 discover(npt.getNodeId(), npt.getPortId());
518 }
519
520 protected void discover(long sw, short port) {
521 sendDiscoveryMessage(sw, port, true, false);
522 }
523
524 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -0700525 * Learn remote switches when running as a distributed controller ONOS.
Umesh Krishnaswamyf962d642013-01-23 19:04:23 -0800526 */
527 protected IOFSwitch addRemoteSwitch(long sw, short port) {
Ray Milkey269ffb92014-04-03 14:43:30 -0700528 IOnosRemoteSwitch remotesw = null;
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800529
Ray Milkey269ffb92014-04-03 14:43:30 -0700530 // add a switch if we have not seen it before
531 remotesw = remoteSwitches.get(sw);
Jonathan Harte7231052013-01-25 00:01:14 -0800532
Ray Milkey269ffb92014-04-03 14:43:30 -0700533 if (remotesw == null) {
534 remotesw = new OFSwitchImpl();
535 remotesw.setupRemoteSwitch(sw);
536 remoteSwitches.put(remotesw.getId(), remotesw);
537 log.debug("addRemoteSwitch(): added fake remote sw {}", remotesw);
Umesh Krishnaswamyf962d642013-01-23 19:04:23 -0800538 }
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800539
Umesh Krishnaswamyf962d642013-01-23 19:04:23 -0800540 // add the port if we have not seen it before
Umesh Krishnaswamy68c118c2013-01-25 11:07:09 -0800541 if (remotesw.getPort(port) == null) {
Ray Milkey269ffb92014-04-03 14:43:30 -0700542 OFPhysicalPort remoteport = new OFPhysicalPort();
543 remoteport.setPortNumber(port);
544 remoteport.setName("fake_" + port);
545 remoteport.setConfig(0);
546 remoteport.setState(0);
547 remotesw.setPort(remoteport);
548 log.debug("addRemoteSwitch(): added fake remote port {} to sw {}", remoteport, remotesw.getId());
Umesh Krishnaswamyf962d642013-01-23 19:04:23 -0800549 }
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800550
Umesh Krishnaswamyf962d642013-01-23 19:04:23 -0800551 return remotesw;
552 }
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800553
Umesh Krishnaswamyf962d642013-01-23 19:04:23 -0800554 /**
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800555 * Send link discovery message out of a given switch port.
556 * The discovery message may be a standard LLDP or a modified
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800557 * LLDP, where the dst mac address is set to :ff.
Ray Milkey269ffb92014-04-03 14:43:30 -0700558 * <p/>
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800559 * TODO: The modified LLDP will updated in the future and may
560 * use a different eth-type.
Ray Milkey269ffb92014-04-03 14:43:30 -0700561 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800562 * @param sw
563 * @param port
Ray Milkey269ffb92014-04-03 14:43:30 -0700564 * @param isStandard indicates standard or modified LLDP
565 * @param isReverse indicates whether the LLDP was sent as a response
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800566 */
Ray Milkey269ffb92014-04-03 14:43:30 -0700567 @LogMessageDoc(level = "ERROR",
568 message = "Failure sending LLDP out port {port} on switch {switch}",
569 explanation = "An I/O error occured while sending LLDP message " +
570 "to the switch.",
571 recommendation = LogMessageDoc.CHECK_SWITCH)
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800572 protected void sendDiscoveryMessage(long sw, short port,
Ray Milkey269ffb92014-04-03 14:43:30 -0700573 boolean isStandard,
574 boolean isReverse) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800575
576 IOFSwitch iofSwitch = floodlightProvider.getSwitches().get(sw);
577 if (iofSwitch == null) {
578 return;
579 }
580
Ray Milkeyb29e6262014-04-09 16:02:14 -0700581 if (port == OFPort.OFPP_LOCAL.getValue()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800582 return;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700583 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800584
585 OFPhysicalPort ofpPort = iofSwitch.getPort(port);
586
587 if (ofpPort == null) {
588 if (log.isTraceEnabled()) {
589 log.trace("Null physical port. sw={}, port={}", sw, port);
590 }
591 return;
592 }
593
594 if (isLinkDiscoverySuppressed(sw, port)) {
595 /* Dont send LLDPs out of this port as suppressLLDPs set
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800596 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800597 */
598 return;
599 }
600
601 // For fast ports, do not send forward LLDPs or BDDPs.
Ray Milkeyb29e6262014-04-09 16:02:14 -0700602 if (!isReverse && autoPortFastFeature && isFastPort(sw, port)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800603 return;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700604 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800605
606 if (log.isTraceEnabled()) {
607 log.trace("Sending LLDP packet out of swich: {}, port: {}",
Ray Milkey269ffb92014-04-03 14:43:30 -0700608 sw, port);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800609 }
610
611 // using "nearest customer bridge" MAC address for broadest possible propagation
612 // through provider and TPMR bridges (see IEEE 802.1AB-2009 and 802.1Q-2011),
613 // in particular the Linux bridge which behaves mostly like a provider bridge
Ray Milkey269ffb92014-04-03 14:43:30 -0700614 byte[] chassisId = new byte[]{4, 0, 0, 0, 0, 0, 0}; // filled in later
615 byte[] portId = new byte[]{2, 0, 0}; // filled in later
616 byte[] ttlValue = new byte[]{0, 0x78};
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800617 // OpenFlow OUI - 00-26-E1
Ray Milkey269ffb92014-04-03 14:43:30 -0700618 byte[] dpidTLVValue = new byte[]{0x0, 0x26, (byte) 0xe1, 0, 0, 0, 0, 0, 0, 0, 0, 0};
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800619
620 byte[] dpidArray = new byte[8];
621 ByteBuffer dpidBB = ByteBuffer.wrap(dpidArray);
622 ByteBuffer portBB = ByteBuffer.wrap(portId, 1, 2);
623
624 Long dpid = sw;
625 dpidBB.putLong(dpid);
626 // set the ethernet source mac to last 6 bytes of dpid
Jonathan Hart1f6c7a22014-04-16 16:06:27 -0700627 byte[] hardwareAddress = new byte[6];
628 System.arraycopy(dpidArray, 2, hardwareAddress, 0, 6);
629 ofpPort.setHardwareAddress(hardwareAddress);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800630 // set the chassis id's value to last 6 bytes of dpid
631 System.arraycopy(dpidArray, 2, chassisId, 1, 6);
632 // set the optional tlv to the full dpid
633 System.arraycopy(dpidArray, 0, dpidTLVValue, 4, 8);
Jonathan Hart1f6c7a22014-04-16 16:06:27 -0700634 LLDPTLV dpidTLV = new LLDPTLV().setType((byte) 127)
635 .setLength((short) dpidTLVValue.length).setValue(dpidTLVValue);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800636
637 // set the portId to the outgoing port
638 portBB.putShort(port);
639 if (log.isTraceEnabled()) {
640 log.trace("Sending LLDP out of interface: {}/{}",
Ray Milkey269ffb92014-04-03 14:43:30 -0700641 HexString.toHexString(sw), port);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800642 }
643
644 LLDP lldp = new LLDP();
645 lldp.setChassisId(new LLDPTLV().setType((byte) 1).setLength((short) chassisId.length).setValue(chassisId));
646 lldp.setPortId(new LLDPTLV().setType((byte) 2).setLength((short) portId.length).setValue(portId));
647 lldp.setTtl(new LLDPTLV().setType((byte) 3).setLength((short) ttlValue.length).setValue(ttlValue));
648 lldp.getOptionalTLVList().add(dpidTLV);
649
650 // Add the controller identifier to the TLV value.
651 lldp.getOptionalTLVList().add(controllerTLV);
652 if (isReverse) {
Ray Milkey5c9f2db2014-04-09 10:31:21 -0700653 lldp.getOptionalTLVList().add(REVERSE_TLV);
Ray Milkey269ffb92014-04-03 14:43:30 -0700654 } else {
Ray Milkey5c9f2db2014-04-09 10:31:21 -0700655 lldp.getOptionalTLVList().add(FORWARD_TLV);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800656 }
657
658 Ethernet ethernet;
659 if (isStandard) {
660 ethernet = new Ethernet()
Ray Milkey269ffb92014-04-03 14:43:30 -0700661 .setSourceMACAddress(ofpPort.getHardwareAddress())
662 .setDestinationMACAddress(LLDP_STANDARD_DST_MAC_STRING)
663 .setEtherType(Ethernet.TYPE_LLDP);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800664 ethernet.setPayload(lldp);
665 } else {
666 BSN bsn = new BSN(BSN.BSN_TYPE_BDDP);
667 bsn.setPayload(lldp);
668
669 ethernet = new Ethernet()
Ray Milkey269ffb92014-04-03 14:43:30 -0700670 .setSourceMACAddress(ofpPort.getHardwareAddress())
671 .setDestinationMACAddress(LLDP_BSN_DST_MAC_STRING)
672 .setEtherType(Ethernet.TYPE_BSN);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800673 ethernet.setPayload(bsn);
674 }
675
676
677 // serialize and wrap in a packet out
678 byte[] data = ethernet.serialize();
679 OFPacketOut po = (OFPacketOut) floodlightProvider.getOFMessageFactory().getMessage(OFType.PACKET_OUT);
680 po.setBufferId(OFPacketOut.BUFFER_ID_NONE);
681 po.setInPort(OFPort.OFPP_NONE);
682
683 // set actions
684 List<OFAction> actions = new ArrayList<OFAction>();
685 actions.add(new OFActionOutput(port, (short) 0));
686 po.setActions(actions);
687 po.setActionsLength((short) OFActionOutput.MINIMUM_LENGTH);
688
689 // set data
690 po.setLengthU(OFPacketOut.MINIMUM_LENGTH + po.getActionsLength() + data.length);
691 po.setPacketData(data);
692
693 // send
694 try {
695 iofSwitch.write(po, null);
696 iofSwitch.flush();
697 } catch (IOException e) {
Ray Milkey269ffb92014-04-03 14:43:30 -0700698 log.error("Failure sending LLDP out port " + port + " on switch " + iofSwitch.getStringId(), e);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800699 }
700
701 }
702
703 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -0700704 * Send LLDPs to all switch-ports.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800705 */
706 protected void discoverOnAllPorts() {
707 if (log.isTraceEnabled()) {
Yuta HIGUCHI5302ddf2014-01-06 12:53:35 -0800708 log.trace("Sending LLDP packets out of all the enabled ports on switch");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800709 }
710 Set<Long> switches = floodlightProvider.getSwitches().keySet();
711 // Send standard LLDPs
Ray Milkey269ffb92014-04-03 14:43:30 -0700712 for (long sw : switches) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800713 IOFSwitch iofSwitch = floodlightProvider.getSwitches().get(sw);
Ray Milkeyb29e6262014-04-09 16:02:14 -0700714 if (iofSwitch == null) {
715 continue;
716 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800717 if (iofSwitch.getEnabledPorts() != null) {
Ray Milkey269ffb92014-04-03 14:43:30 -0700718 for (OFPhysicalPort ofp : iofSwitch.getEnabledPorts()) {
Ray Milkeyb29e6262014-04-09 16:02:14 -0700719 if (isLinkDiscoverySuppressed(sw, ofp.getPortNumber())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800720 continue;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700721 }
722 if (autoPortFastFeature && isFastPort(sw, ofp.getPortNumber())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800723 continue;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700724 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800725
726 // sends forward LLDP only non-fastports.
727 sendDiscoveryMessage(sw, ofp.getPortNumber(), true, false);
728
729 // If the switch port is not alreayd in the maintenance
730 // queue, add it.
731 NodePortTuple npt = new NodePortTuple(sw, ofp.getPortNumber());
732 addToMaintenanceQueue(npt);
733 }
734 }
735 }
736 }
737
738 protected void setControllerTLV() {
739 //Setting the controllerTLVValue based on current nano time,
740 //controller's IP address, and the network interface object hash
741 //the corresponding IP address.
742
743 final int prime = 7867;
744 InetAddress localIPAddress = null;
745 NetworkInterface localInterface = null;
746
Ray Milkey269ffb92014-04-03 14:43:30 -0700747 byte[] controllerTLVValue = new byte[]{0, 0, 0, 0, 0, 0, 0, 0}; // 8 byte value.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800748 ByteBuffer bb = ByteBuffer.allocate(10);
749
Ray Milkey269ffb92014-04-03 14:43:30 -0700750 try {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800751 localIPAddress = java.net.InetAddress.getLocalHost();
752 localInterface = NetworkInterface.getByInetAddress(localIPAddress);
753 } catch (Exception e) {
754 e.printStackTrace();
755 }
756
757 long result = System.nanoTime();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700758 if (localIPAddress != null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800759 result = result * prime + IPv4.toIPv4Address(localIPAddress.getHostAddress());
Ray Milkeyb29e6262014-04-09 16:02:14 -0700760 }
761 if (localInterface != null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800762 result = result * prime + localInterface.hashCode();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700763 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800764 // set the first 4 bits to 0.
765 result = result & (0x0fffffffffffffffL);
766
767 bb.putLong(result);
768
769 bb.rewind();
770 bb.get(controllerTLVValue, 0, 8);
771
772 this.controllerTLV = new LLDPTLV().setType((byte) 0x0c).setLength((short) controllerTLVValue.length).setValue(controllerTLVValue);
773 }
774
775 @Override
776 public String getName() {
777 return "linkdiscovery";
778 }
779
780 @Override
781 public Command receive(IOFSwitch sw, OFMessage msg, FloodlightContext cntx) {
782 switch (msg.getType()) {
783 case PACKET_IN:
Pavlin Radoslavov0b88a262014-04-10 15:43:27 -0700784 if (msg instanceof OFPacketIn) {
785 return this.handlePacketIn(sw.getId(), (OFPacketIn) msg,
786 cntx);
787 }
788 break;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800789 case PORT_STATUS:
Pavlin Radoslavov0b88a262014-04-10 15:43:27 -0700790 if (msg instanceof OFPortStatus) {
791 return this.handlePortStatus(sw.getId(), (OFPortStatus) msg);
792 }
793 break;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800794 default:
795 break;
796 }
797 return Command.CONTINUE;
798 }
799
800 private Command handleLldp(LLDP lldp, long sw, OFPacketIn pi, boolean isStandard, FloodlightContext cntx) {
801 // If LLDP is suppressed on this port, ignore received packet as well
802 IOFSwitch iofSwitch = floodlightProvider.getSwitches().get(sw);
803 if (iofSwitch == null) {
804 return Command.STOP;
805 }
806
Ray Milkeyb29e6262014-04-09 16:02:14 -0700807 if (isLinkDiscoverySuppressed(sw, pi.getInPort())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800808 return Command.STOP;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700809 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800810
811 // If this is a malformed LLDP, or not from us, exit
Ray Milkeyb29e6262014-04-09 16:02:14 -0700812 if (lldp.getPortId() == null || lldp.getPortId().getLength() != 3) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800813 return Command.CONTINUE;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700814 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800815
816 long myId = ByteBuffer.wrap(controllerTLV.getValue()).getLong();
817 long otherId = 0;
818 boolean myLLDP = false;
819 Boolean isReverse = null;
820
821 ByteBuffer portBB = ByteBuffer.wrap(lldp.getPortId().getValue());
822 portBB.position(1);
823
824 Short remotePort = portBB.getShort();
825 IOFSwitch remoteSwitch = null;
826
827 // Verify this LLDP packet matches what we're looking for
828 for (LLDPTLV lldptlv : lldp.getOptionalTLVList()) {
829 if (lldptlv.getType() == 127 && lldptlv.getLength() == 12 &&
830 lldptlv.getValue()[0] == 0x0 && lldptlv.getValue()[1] == 0x26 &&
Ray Milkey269ffb92014-04-03 14:43:30 -0700831 lldptlv.getValue()[2] == (byte) 0xe1 && lldptlv.getValue()[3] == 0x0) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800832 ByteBuffer dpidBB = ByteBuffer.wrap(lldptlv.getValue());
833 remoteSwitch = floodlightProvider.getSwitches().get(dpidBB.getLong(4));
Umesh Krishnaswamyf962d642013-01-23 19:04:23 -0800834 if (remoteSwitch == null) {
Ray Milkey269ffb92014-04-03 14:43:30 -0700835 // Added by ONOS
836 // floodlight LLDP coming from a remote switch connected to a different controller
837 // add it to our cache of unconnected remote switches
838 remoteSwitch = addRemoteSwitch(dpidBB.getLong(4), remotePort);
Umesh Krishnaswamyf962d642013-01-23 19:04:23 -0800839 }
Ray Milkey269ffb92014-04-03 14:43:30 -0700840 } else if (lldptlv.getType() == 12 && lldptlv.getLength() == 8) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800841 otherId = ByteBuffer.wrap(lldptlv.getValue()).getLong();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700842 if (myId == otherId) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800843 myLLDP = true;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700844 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800845 } else if (lldptlv.getType() == TLV_DIRECTION_TYPE &&
846 lldptlv.getLength() == TLV_DIRECTION_LENGTH) {
Ray Milkeyb29e6262014-04-09 16:02:14 -0700847 if (lldptlv.getValue()[0] == TLV_DIRECTION_VALUE_FORWARD[0]) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800848 isReverse = false;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700849 } else if (lldptlv.getValue()[0] == TLV_DIRECTION_VALUE_REVERSE[0]) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800850 isReverse = true;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700851 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800852 }
853 }
854
Ray Milkey6c4f2fe2014-04-11 09:47:23 -0700855 if (!myLLDP) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800856 // This is not the LLDP sent by this controller.
857 // If the LLDP message has multicast bit set, then we need to broadcast
858 // the packet as a regular packet.
859 if (isStandard) {
860 if (log.isTraceEnabled()) {
861 log.trace("Getting standard LLDP from a different controller and quelching it.");
862 }
863 return Command.STOP;
Ray Milkey269ffb92014-04-03 14:43:30 -0700864 } else if (sw <= remoteSwitch.getId()) {
Teru Ub7246af2014-01-13 13:24:38 -0800865 if (log.isTraceEnabled()) {
866 log.trace("Getting BBDP from a different controller. myId {}: remoteId {}", myId, otherId);
867 log.trace("and my controller id is smaller than the other, so quelching it. myPort {}: rPort {}", pi.getInPort(), remotePort);
Ray Milkey269ffb92014-04-03 14:43:30 -0700868 }
869 //XXX ONOS: Fix the BDDP broadcast issue
870 //return Command.CONTINUE;
871 return Command.STOP;
Teru Ub7246af2014-01-13 13:24:38 -0800872 }
873 /*
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800874 else if (myId < otherId) {
875 if (log.isTraceEnabled()) {
876 log.trace("Getting BDDP packets from a different controller" +
877 "and letting it go through normal processing chain.");
878 }
HIGUCHI Yuta30d03302013-06-14 13:47:36 -0700879 //XXX ONOS: Fix the BDDP broadcast issue
Jonathan Hart0b2c76a2013-02-27 17:09:33 -0800880 //return Command.CONTINUE;
881 return Command.STOP;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800882 }
Teru Ub7246af2014-01-13 13:24:38 -0800883 */
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800884 }
885
886
887 if (remoteSwitch == null) {
888 // Ignore LLDPs not generated by Floodlight, or from a switch that has recently
889 // disconnected, or from a switch connected to another Floodlight instance
890 if (log.isTraceEnabled()) {
891 log.trace("Received LLDP from remote switch not connected to the controller");
892 }
893 return Command.STOP;
894 }
895
896 if (!remoteSwitch.portEnabled(remotePort)) {
897 if (log.isTraceEnabled()) {
898 log.trace("Ignoring link with disabled source port: switch {} port {}", remoteSwitch, remotePort);
899 }
900 return Command.STOP;
901 }
902 if (suppressLinkDiscovery.contains(new NodePortTuple(remoteSwitch.getId(),
Ray Milkey269ffb92014-04-03 14:43:30 -0700903 remotePort))) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800904 if (log.isTraceEnabled()) {
905 log.trace("Ignoring link with suppressed src port: switch {} port {}",
Ray Milkey269ffb92014-04-03 14:43:30 -0700906 remoteSwitch, remotePort);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800907 }
908 return Command.STOP;
909 }
910 if (!iofSwitch.portEnabled(pi.getInPort())) {
911 if (log.isTraceEnabled()) {
912 log.trace("Ignoring link with disabled dest port: switch {} port {}", sw, pi.getInPort());
913 }
914 return Command.STOP;
915 }
916
917 OFPhysicalPort physicalPort = remoteSwitch.getPort(remotePort);
918 int srcPortState = (physicalPort != null) ? physicalPort.getState() : 0;
919 physicalPort = iofSwitch.getPort(pi.getInPort());
920 int dstPortState = (physicalPort != null) ? physicalPort.getState() : 0;
921
922 // Store the time of update to this link, and push it out to routingEngine
923 Link lt = new Link(remoteSwitch.getId(), remotePort, iofSwitch.getId(), pi.getInPort());
924
925
926 Long lastLldpTime = null;
927 Long lastBddpTime = null;
928
929 Long firstSeenTime = System.currentTimeMillis();
930
Ray Milkeyb29e6262014-04-09 16:02:14 -0700931 if (isStandard) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800932 lastLldpTime = System.currentTimeMillis();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700933 } else {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800934 lastBddpTime = System.currentTimeMillis();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700935 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800936
937 LinkInfo newLinkInfo =
938 new LinkInfo(firstSeenTime, lastLldpTime, lastBddpTime,
Ray Milkey269ffb92014-04-03 14:43:30 -0700939 srcPortState, dstPortState);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800940
941 addOrUpdateLink(lt, newLinkInfo);
942
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800943 // Check if reverse link exists.
944 // If it doesn't exist and if the forward link was seen
945 // first seen within a small interval, send probe on the
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800946 // reverse link.
947
948 newLinkInfo = links.get(lt);
Ray Milkey6c4f2fe2014-04-11 09:47:23 -0700949 if (newLinkInfo != null && isStandard && !isReverse) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800950 Link reverseLink = new Link(lt.getDst(), lt.getDstPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -0700951 lt.getSrc(), lt.getSrcPort());
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800952 LinkInfo reverseInfo = links.get(reverseLink);
953 if (reverseInfo == null) {
954 // the reverse link does not exist.
955 if (newLinkInfo.getFirstSeenTime() > System.currentTimeMillis() - LINK_TIMEOUT) {
956 this.sendDiscoveryMessage(lt.getDst(), lt.getDstPort(), isStandard, true);
957 }
958 }
959 }
960
961 // If the received packet is a BDDP packet, then create a reverse BDDP
962 // link as well.
963 if (!isStandard) {
964 Link reverseLink = new Link(lt.getDst(), lt.getDstPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -0700965 lt.getSrc(), lt.getSrcPort());
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800966
967 // srcPortState and dstPort state are reversed.
968 LinkInfo reverseInfo =
969 new LinkInfo(firstSeenTime, lastLldpTime, lastBddpTime,
Ray Milkey269ffb92014-04-03 14:43:30 -0700970 dstPortState, srcPortState);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800971
972 addOrUpdateLink(reverseLink, reverseInfo);
973 }
974
975 // Remove the node ports from the quarantine and maintenance queues.
976 NodePortTuple nptSrc = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
977 NodePortTuple nptDst = new NodePortTuple(lt.getDst(), lt.getDstPort());
978 removeFromQuarantineQueue(nptSrc);
979 removeFromMaintenanceQueue(nptSrc);
980 removeFromQuarantineQueue(nptDst);
981 removeFromMaintenanceQueue(nptDst);
982
983 // Consume this message
984 return Command.STOP;
985 }
986
987 protected Command handlePacketIn(long sw, OFPacketIn pi,
988 FloodlightContext cntx) {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800989 Ethernet eth =
990 IFloodlightProviderService.bcStore.get(cntx,
Ray Milkey269ffb92014-04-03 14:43:30 -0700991 IFloodlightProviderService.CONTEXT_PI_PAYLOAD);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800992
Ray Milkey269ffb92014-04-03 14:43:30 -0700993 if (eth.getEtherType() == Ethernet.TYPE_BSN) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800994 BSN bsn = (BSN) eth.getPayload();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700995 if (bsn == null) {
996 return Command.STOP;
997 }
998 if (bsn.getPayload() == null) {
999 return Command.STOP;
1000 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001001 // It could be a packet other than BSN LLDP, therefore
1002 // continue with the regular processing.
Ray Milkey6c4f2fe2014-04-11 09:47:23 -07001003 if (!(bsn.getPayload() instanceof LLDP)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001004 return Command.CONTINUE;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001005 }
Ubuntu9cbb4ca2013-02-07 17:19:59 +00001006 return handleLldp((LLDP) bsn.getPayload(), sw, pi, false, cntx);
Ray Milkey269ffb92014-04-03 14:43:30 -07001007 } else if (eth.getEtherType() == Ethernet.TYPE_LLDP) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001008 return handleLldp((LLDP) eth.getPayload(), sw, pi, true, cntx);
1009 } else if (eth.getEtherType() < 1500) {
1010 long destMac = eth.getDestinationMAC().toLong();
Ray Milkey269ffb92014-04-03 14:43:30 -07001011 if ((destMac & LINK_LOCAL_MASK) == LINK_LOCAL_VALUE) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001012 if (log.isTraceEnabled()) {
1013 log.trace("Ignoring packet addressed to 802.1D/Q " +
1014 "reserved address.");
1015 }
1016 return Command.STOP;
1017 }
1018 }
1019
1020 // If packet-in is from a quarantine port, stop processing.
1021 NodePortTuple npt = new NodePortTuple(sw, pi.getInPort());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001022 if (quarantineQueue.contains(npt)) {
1023 return Command.STOP;
1024 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001025
1026 return Command.CONTINUE;
1027 }
1028
1029 protected UpdateOperation getUpdateOperation(int srcPortState,
1030 int dstPortState) {
1031 boolean added =
1032 (((srcPortState &
Ray Milkey269ffb92014-04-03 14:43:30 -07001033 OFPortState.OFPPS_STP_MASK.getValue()) !=
1034 OFPortState.OFPPS_STP_BLOCK.getValue()) &&
1035 ((dstPortState &
1036 OFPortState.OFPPS_STP_MASK.getValue()) !=
1037 OFPortState.OFPPS_STP_BLOCK.getValue()));
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001038
Ray Milkeyb29e6262014-04-09 16:02:14 -07001039 if (added) {
1040 return UpdateOperation.LINK_UPDATED;
1041 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001042 return UpdateOperation.LINK_REMOVED;
1043 }
1044
1045
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001046 protected UpdateOperation getUpdateOperation(int srcPortState) {
1047 boolean portUp = ((srcPortState &
1048 OFPortState.OFPPS_STP_MASK.getValue()) !=
1049 OFPortState.OFPPS_STP_BLOCK.getValue());
1050
Ray Milkeyb29e6262014-04-09 16:02:14 -07001051 if (portUp) {
1052 return UpdateOperation.PORT_UP;
1053 } else {
1054 return UpdateOperation.PORT_DOWN;
1055 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001056 }
1057
1058 protected boolean addOrUpdateLink(Link lt, LinkInfo newInfo) {
1059
1060 NodePortTuple srcNpt, dstNpt;
1061 boolean linkChanged = false;
1062
1063 lock.writeLock().lock();
1064 try {
1065 // put the new info. if an old info exists, it will be returned.
1066 LinkInfo oldInfo = links.put(lt, newInfo);
1067 if (oldInfo != null &&
Ray Milkeyb29e6262014-04-09 16:02:14 -07001068 oldInfo.getFirstSeenTime() < newInfo.getFirstSeenTime()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001069 newInfo.setFirstSeenTime(oldInfo.getFirstSeenTime());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001070 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001071
1072 if (log.isTraceEnabled()) {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001073 log.trace("addOrUpdateLink: {} {}",
Ray Milkey269ffb92014-04-03 14:43:30 -07001074 lt,
1075 (newInfo.getMulticastValidTime() != null) ? "multicast" : "unicast");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001076 }
1077
1078 UpdateOperation updateOperation = null;
1079 linkChanged = false;
1080
1081 srcNpt = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
1082 dstNpt = new NodePortTuple(lt.getDst(), lt.getDstPort());
1083
1084 if (oldInfo == null) {
1085 // index it by switch source
Ray Milkeyb29e6262014-04-09 16:02:14 -07001086 if (!switchLinks.containsKey(lt.getSrc())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001087 switchLinks.put(lt.getSrc(), new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001088 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001089 switchLinks.get(lt.getSrc()).add(lt);
1090
1091 // index it by switch dest
Ray Milkeyb29e6262014-04-09 16:02:14 -07001092 if (!switchLinks.containsKey(lt.getDst())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001093 switchLinks.put(lt.getDst(), new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001094 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001095 switchLinks.get(lt.getDst()).add(lt);
1096
1097 // index both ends by switch:port
Ray Milkeyb29e6262014-04-09 16:02:14 -07001098 if (!portLinks.containsKey(srcNpt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001099 portLinks.put(srcNpt, new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001100 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001101 portLinks.get(srcNpt).add(lt);
1102
Ray Milkeyb29e6262014-04-09 16:02:14 -07001103 if (!portLinks.containsKey(dstNpt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001104 portLinks.put(dstNpt, new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001105 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001106 portLinks.get(dstNpt).add(lt);
1107
1108 // Add to portNOFLinks if the unicast valid time is null
Ray Milkeyb29e6262014-04-09 16:02:14 -07001109 if (newInfo.getUnicastValidTime() == null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001110 addLinkToBroadcastDomain(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001111 }
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001112
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001113 // ONOS: Distinguish added event separately from updated event
Pankaj Berdea41016d2013-06-10 21:18:18 -07001114 updateOperation = UpdateOperation.LINK_ADDED;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001115 linkChanged = true;
1116
1117 // Add to event history
1118 evHistTopoLink(lt.getSrc(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001119 lt.getDst(),
1120 lt.getSrcPort(),
1121 lt.getDstPort(),
1122 newInfo.getSrcPortState(), newInfo.getDstPortState(),
1123 getLinkType(lt, newInfo),
1124 EvAction.LINK_ADDED, "LLDP Recvd");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001125 } else {
1126 // Since the link info is already there, we need to
1127 // update the right fields.
1128 if (newInfo.getUnicastValidTime() == null) {
1129 // This is due to a multicast LLDP, so copy the old unicast
1130 // value.
1131 if (oldInfo.getUnicastValidTime() != null) {
1132 newInfo.setUnicastValidTime(oldInfo.getUnicastValidTime());
1133 }
1134 } else if (newInfo.getMulticastValidTime() == null) {
1135 // This is due to a unicast LLDP, so copy the old multicast
1136 // value.
1137 if (oldInfo.getMulticastValidTime() != null) {
1138 newInfo.setMulticastValidTime(oldInfo.getMulticastValidTime());
1139 }
1140 }
1141
1142 Long oldTime = oldInfo.getUnicastValidTime();
1143 Long newTime = newInfo.getUnicastValidTime();
1144 // the link has changed its state between openflow and non-openflow
1145 // if the unicastValidTimes are null or not null
1146 if (oldTime != null & newTime == null) {
1147 // openflow -> non-openflow transition
1148 // we need to add the link tuple to the portNOFLinks
1149 addLinkToBroadcastDomain(lt);
1150 linkChanged = true;
1151 } else if (oldTime == null & newTime != null) {
1152 // non-openflow -> openflow transition
1153 // we need to remove the link from the portNOFLinks
1154 removeLinkFromBroadcastDomain(lt);
1155 linkChanged = true;
1156 }
1157
1158 // Only update the port states if they've changed
1159 if (newInfo.getSrcPortState().intValue() !=
1160 oldInfo.getSrcPortState().intValue() ||
1161 newInfo.getDstPortState().intValue() !=
Ray Milkeyb29e6262014-04-09 16:02:14 -07001162 oldInfo.getDstPortState().intValue()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001163 linkChanged = true;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001164 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001165
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001166 if (linkChanged) {
1167 updateOperation = getUpdateOperation(newInfo.getSrcPortState(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001168 newInfo.getDstPortState());
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001169 if (log.isTraceEnabled()) {
1170 log.trace("Updated link {}", lt);
1171 }
1172 // Add to event history
1173 evHistTopoLink(lt.getSrc(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001174 lt.getDst(),
1175 lt.getSrcPort(),
1176 lt.getDstPort(),
1177 newInfo.getSrcPortState(), newInfo.getDstPortState(),
1178 getLinkType(lt, newInfo),
1179 EvAction.LINK_PORT_STATE_UPDATED,
1180 "LLDP Recvd");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001181 }
1182 }
1183
1184 if (linkChanged) {
1185 // find out if the link was added or removed here.
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001186 LinkUpdate update = new LinkUpdate(new LDUpdate(lt.getSrc(), lt.getSrcPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001187 lt.getDst(), lt.getDstPort(),
1188 getLinkType(lt, newInfo),
1189 updateOperation));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001190 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001191 }
1192 } finally {
1193 lock.writeLock().unlock();
1194 }
1195
1196 return linkChanged;
1197 }
1198
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001199 @Override
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001200 public Map<Long, Set<Link>> getSwitchLinks() {
1201 return this.switchLinks;
1202 }
1203
1204 /**
1205 * Removes links from memory and storage.
Ray Milkey269ffb92014-04-03 14:43:30 -07001206 *
Ray Milkey5df613b2014-04-15 10:50:56 -07001207 * @param linksToDelete The List of @LinkTuple to delete.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001208 */
Ray Milkey5df613b2014-04-15 10:50:56 -07001209 protected void deleteLinks(List<Link> linksToDelete, String reason) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001210 NodePortTuple srcNpt, dstNpt;
1211
1212 lock.writeLock().lock();
1213 try {
Ray Milkey5df613b2014-04-15 10:50:56 -07001214 for (Link lt : linksToDelete) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001215 srcNpt = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
Ray Milkey269ffb92014-04-03 14:43:30 -07001216 dstNpt = new NodePortTuple(lt.getDst(), lt.getDstPort());
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001217
1218 switchLinks.get(lt.getSrc()).remove(lt);
1219 switchLinks.get(lt.getDst()).remove(lt);
1220 if (switchLinks.containsKey(lt.getSrc()) &&
Ray Milkeyb29e6262014-04-09 16:02:14 -07001221 switchLinks.get(lt.getSrc()).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001222 this.switchLinks.remove(lt.getSrc());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001223 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001224 if (this.switchLinks.containsKey(lt.getDst()) &&
Ray Milkeyb29e6262014-04-09 16:02:14 -07001225 this.switchLinks.get(lt.getDst()).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001226 this.switchLinks.remove(lt.getDst());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001227 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001228
1229 if (this.portLinks.get(srcNpt) != null) {
1230 this.portLinks.get(srcNpt).remove(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001231 if (this.portLinks.get(srcNpt).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001232 this.portLinks.remove(srcNpt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001233 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001234 }
1235 if (this.portLinks.get(dstNpt) != null) {
1236 this.portLinks.get(dstNpt).remove(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001237 if (this.portLinks.get(dstNpt).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001238 this.portLinks.remove(dstNpt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001239 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001240 }
1241
1242 LinkInfo info = this.links.remove(lt);
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001243 LinkUpdate update = new LinkUpdate(new LDUpdate(lt.getSrc(), lt.getSrcPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001244 lt.getDst(), lt.getDstPort(),
1245 getLinkType(lt, info),
1246 UpdateOperation.LINK_REMOVED));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001247 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001248
1249 // Update Event History
1250 evHistTopoLink(lt.getSrc(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001251 lt.getDst(),
1252 lt.getSrcPort(),
1253 lt.getDstPort(),
1254 0, 0, // Port states
1255 ILinkDiscovery.LinkType.INVALID_LINK,
1256 EvAction.LINK_DELETED, reason);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001257
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001258 // TODO Whenever link is removed, it has to checked if
1259 // the switchports must be added to quarantine.
1260
1261 if (log.isTraceEnabled()) {
1262 log.trace("Deleted link {}", lt);
1263 }
1264 }
1265 } finally {
1266 lock.writeLock().unlock();
1267 }
1268 }
1269
1270 /**
1271 * Handles an OFPortStatus message from a switch. We will add or
1272 * delete LinkTupes as well re-compute the topology if needed.
Ray Milkey269ffb92014-04-03 14:43:30 -07001273 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001274 * @param sw The IOFSwitch that sent the port status message
1275 * @param ps The OFPortStatus message
1276 * @return The Command to continue or stop after we process this message
1277 */
1278 protected Command handlePortStatus(long sw, OFPortStatus ps) {
1279
1280 IOFSwitch iofSwitch = floodlightProvider.getSwitches().get(sw);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001281 if (iofSwitch == null) {
1282 return Command.CONTINUE;
1283 }
HIGUCHI Yutaa89b2842013-06-17 13:54:57 -07001284
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001285 // ONOS: If we do not control this switch, then we should not process its port status messages
Ray Milkeyb29e6262014-04-09 16:02:14 -07001286 if (!registryService.hasControl(iofSwitch.getId())) {
Ray Milkey269ffb92014-04-03 14:43:30 -07001287 return Command.CONTINUE;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001288 }
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001289
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001290 if (log.isTraceEnabled()) {
1291 log.trace("handlePortStatus: Switch {} port #{} reason {}; " +
1292 "config is {} state is {}",
Ray Milkey269ffb92014-04-03 14:43:30 -07001293 new Object[]{iofSwitch.getStringId(),
1294 ps.getDesc().getPortNumber(),
1295 ps.getReason(),
1296 ps.getDesc().getConfig(),
1297 ps.getDesc().getState()});
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001298 }
1299
1300 short port = ps.getDesc().getPortNumber();
1301 NodePortTuple npt = new NodePortTuple(sw, port);
Ray Milkey269ffb92014-04-03 14:43:30 -07001302 boolean linkDeleted = false;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001303 boolean linkInfoChanged = false;
1304
1305 lock.writeLock().lock();
1306 try {
1307 // if ps is a delete, or a modify where the port is down or
1308 // configured down
Ray Milkey269ffb92014-04-03 14:43:30 -07001309 if ((byte) OFPortReason.OFPPR_DELETE.ordinal() == ps.getReason() ||
1310 ((byte) OFPortReason.OFPPR_MODIFY.ordinal() ==
1311 ps.getReason() && !portEnabled(ps.getDesc()))) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001312 deleteLinksOnPort(npt, "Port Status Changed");
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001313 LinkUpdate update = new LinkUpdate(new LDUpdate(sw, port, UpdateOperation.PORT_DOWN));
1314 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001315 linkDeleted = true;
Ray Milkey269ffb92014-04-03 14:43:30 -07001316 } else if (ps.getReason() ==
1317 (byte) OFPortReason.OFPPR_MODIFY.ordinal()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001318 // If ps is a port modification and the port state has changed
1319 // that affects links in the topology
1320
1321 if (this.portLinks.containsKey(npt)) {
Ray Milkey269ffb92014-04-03 14:43:30 -07001322 for (Link lt : this.portLinks.get(npt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001323 LinkInfo linkInfo = links.get(lt);
Ray Milkey269ffb92014-04-03 14:43:30 -07001324 assert (linkInfo != null);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001325 Integer updatedSrcPortState = null;
1326 Integer updatedDstPortState = null;
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001327 if (lt.getSrc() == npt.getNodeId() &&
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001328 lt.getSrcPort() == npt.getPortId() &&
1329 (linkInfo.getSrcPortState() !=
Ray Milkey269ffb92014-04-03 14:43:30 -07001330 ps.getDesc().getState())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001331 updatedSrcPortState = ps.getDesc().getState();
1332 linkInfo.setSrcPortState(updatedSrcPortState);
1333 }
1334 if (lt.getDst() == npt.getNodeId() &&
1335 lt.getDstPort() == npt.getPortId() &&
1336 (linkInfo.getDstPortState() !=
Ray Milkey269ffb92014-04-03 14:43:30 -07001337 ps.getDesc().getState())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001338 updatedDstPortState = ps.getDesc().getState();
1339 linkInfo.setDstPortState(updatedDstPortState);
1340 }
1341 if ((updatedSrcPortState != null) ||
1342 (updatedDstPortState != null)) {
1343 // The link is already known to link discovery
1344 // manager and the status has changed, therefore
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001345 // send an LinkUpdate.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001346 UpdateOperation operation =
1347 getUpdateOperation(linkInfo.getSrcPortState(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001348 linkInfo.getDstPortState());
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001349 LinkUpdate update = new LinkUpdate(new LDUpdate(lt.getSrc(), lt.getSrcPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001350 lt.getDst(), lt.getDstPort(),
1351 getLinkType(lt, linkInfo),
1352 operation));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001353 controller.publishUpdate(update);
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001354
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001355 linkInfoChanged = true;
1356 }
1357 }
1358 }
1359
1360 UpdateOperation operation =
1361 getUpdateOperation(ps.getDesc().getState());
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001362 LinkUpdate update = new LinkUpdate(new LDUpdate(sw, port, operation));
1363 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001364 }
1365
Ray Milkey269ffb92014-04-03 14:43:30 -07001366 if (!linkDeleted && !linkInfoChanged) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001367 if (log.isTraceEnabled()) {
Ray Milkey269ffb92014-04-03 14:43:30 -07001368 log.trace("handlePortStatus: Switch {} port #{} reason {};" +
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001369 " no links to update/remove",
Ray Milkey269ffb92014-04-03 14:43:30 -07001370 new Object[]{HexString.toHexString(sw),
1371 ps.getDesc().getPortNumber(),
1372 ps.getReason()});
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001373 }
1374 }
1375 } finally {
1376 lock.writeLock().unlock();
1377 }
1378
1379 if (!linkDeleted) {
1380 // Send LLDP right away when port state is changed for faster
1381 // cluster-merge. If it is a link delete then there is not need
1382 // to send the LLDPs right away and instead we wait for the LLDPs
1383 // to be sent on the timer as it is normally done
1384 // do it outside the write-lock
1385 // sendLLDPTask.reschedule(1000, TimeUnit.MILLISECONDS);
1386 processNewPort(npt.getNodeId(), npt.getPortId());
1387 }
1388 return Command.CONTINUE;
1389 }
1390
1391 /**
1392 * Process a new port.
1393 * If link discovery is disabled on the port, then do nothing.
1394 * If autoportfast feature is enabled and the port is a fast port, then
1395 * do nothing.
1396 * Otherwise, send LLDP message. Add the port to quarantine.
Ray Milkey269ffb92014-04-03 14:43:30 -07001397 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001398 * @param sw
1399 * @param p
1400 */
1401 private void processNewPort(long sw, short p) {
1402 if (isLinkDiscoverySuppressed(sw, p)) {
1403 // Do nothing as link discovery is suppressed.
Ray Milkey1aa71f82014-04-08 16:23:24 -07001404 return;
Ray Milkey269ffb92014-04-03 14:43:30 -07001405 } else if (autoPortFastFeature && isFastPort(sw, p)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001406 // Do nothing as the port is a fast port.
Ray Milkey1aa71f82014-04-08 16:23:24 -07001407 return;
Ray Milkey269ffb92014-04-03 14:43:30 -07001408 } else {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001409 NodePortTuple npt = new NodePortTuple(sw, p);
1410 discover(sw, p);
1411 // if it is not a fast port, add it to quarantine.
1412 if (!isFastPort(sw, p)) {
1413 addToQuarantineQueue(npt);
1414 } else {
1415 // Add to maintenance queue to ensure that BDDP packets
1416 // are sent out.
1417 addToMaintenanceQueue(npt);
1418 }
1419 }
1420 }
1421
1422 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -07001423 * We send out LLDP messages when a switch is added to discover the topology.
Ray Milkey269ffb92014-04-03 14:43:30 -07001424 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001425 * @param sw The IOFSwitch that connected to the controller
1426 */
1427 @Override
1428 public void addedSwitch(IOFSwitch sw) {
1429
1430 if (sw.getEnabledPorts() != null) {
1431 for (Short p : sw.getEnabledPortNumbers()) {
1432 processNewPort(sw.getId(), p);
1433 }
1434 }
1435 // Update event history
1436 evHistTopoSwitch(sw, EvAction.SWITCH_CONNECTED, "None");
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001437 LinkUpdate update = new LinkUpdate(new LDUpdate(sw.getId(), null,
Ray Milkey269ffb92014-04-03 14:43:30 -07001438 UpdateOperation.SWITCH_UPDATED));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001439 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001440 }
1441
1442 /**
1443 * When a switch disconnects we remove any links from our map and notify.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001444 */
1445 @Override
1446 public void removedSwitch(IOFSwitch iofSwitch) {
1447 // Update event history
1448 long sw = iofSwitch.getId();
1449 evHistTopoSwitch(iofSwitch, EvAction.SWITCH_DISCONNECTED, "None");
1450 List<Link> eraseList = new ArrayList<Link>();
1451 lock.writeLock().lock();
1452 try {
1453 if (switchLinks.containsKey(sw)) {
1454 if (log.isTraceEnabled()) {
1455 log.trace("Handle switchRemoved. Switch {}; removing links {}",
Ray Milkey269ffb92014-04-03 14:43:30 -07001456 HexString.toHexString(sw), switchLinks.get(sw));
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001457 }
1458 // add all tuples with an endpoint on this switch to erase list
1459 eraseList.addAll(switchLinks.get(sw));
HIGUCHI Yutaa89b2842013-06-17 13:54:57 -07001460 deleteLinks(eraseList, "Switch Removed");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001461
1462 // Send a switch removed update
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001463 LinkUpdate update = new LinkUpdate(new LDUpdate(sw, null, UpdateOperation.SWITCH_REMOVED));
1464 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001465 }
1466 } finally {
1467 lock.writeLock().unlock();
1468 }
1469 }
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001470
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001471 /**
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001472 * We don't react the port changed notifications here. we listen for
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001473 * OFPortStatus messages directly. Might consider using this notifier
1474 * instead
1475 */
1476 @Override
1477 public void switchPortChanged(Long switchId) {
1478 // no-op
1479 }
1480
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001481 /**
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001482 * Delete links incident on a given switch port.
Ray Milkey269ffb92014-04-03 14:43:30 -07001483 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001484 * @param npt
1485 * @param reason
1486 */
1487 protected void deleteLinksOnPort(NodePortTuple npt, String reason) {
1488 List<Link> eraseList = new ArrayList<Link>();
1489 if (this.portLinks.containsKey(npt)) {
1490 if (log.isTraceEnabled()) {
1491 log.trace("handlePortStatus: Switch {} port #{} " +
1492 "removing links {}",
Ray Milkey269ffb92014-04-03 14:43:30 -07001493 new Object[]{HexString.toHexString(npt.getNodeId()),
1494 npt.getPortId(),
1495 this.portLinks.get(npt)});
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001496 }
1497 eraseList.addAll(this.portLinks.get(npt));
1498 deleteLinks(eraseList, reason);
1499 }
1500 }
1501
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001502 /**
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001503 * Iterates through the list of links and deletes if the
1504 * last discovery message reception time exceeds timeout values.
1505 */
1506 protected void timeoutLinks() {
1507 List<Link> eraseList = new ArrayList<Link>();
1508 Long curTime = System.currentTimeMillis();
1509 boolean linkChanged = false;
1510
1511 // reentrant required here because deleteLink also write locks
1512 lock.writeLock().lock();
1513 try {
1514 Iterator<Entry<Link, LinkInfo>> it =
1515 this.links.entrySet().iterator();
1516 while (it.hasNext()) {
1517 Entry<Link, LinkInfo> entry = it.next();
1518 Link lt = entry.getKey();
1519 LinkInfo info = entry.getValue();
1520
1521 // Timeout the unicast and multicast LLDP valid times
1522 // independently.
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001523 if ((info.getUnicastValidTime() != null) &&
Ray Milkey149693c2014-05-20 14:58:53 -07001524 (info.getUnicastValidTime() + (1000L * LINK_TIMEOUT) < curTime)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001525 info.setUnicastValidTime(null);
1526
Ray Milkeyb29e6262014-04-09 16:02:14 -07001527 if (info.getMulticastValidTime() != null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001528 addLinkToBroadcastDomain(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001529 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001530 // Note that even if mTime becomes null later on,
1531 // the link would be deleted, which would trigger updateClusters().
1532 linkChanged = true;
1533 }
Ray Milkey269ffb92014-04-03 14:43:30 -07001534 if ((info.getMulticastValidTime() != null) &&
Ray Milkey149693c2014-05-20 14:58:53 -07001535 (info.getMulticastValidTime() + (1000L * LINK_TIMEOUT) < curTime)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001536 info.setMulticastValidTime(null);
1537 // if uTime is not null, then link will remain as openflow
1538 // link. If uTime is null, it will be deleted. So, we
1539 // don't care about linkChanged flag here.
1540 removeLinkFromBroadcastDomain(lt);
1541 linkChanged = true;
1542 }
1543 // Add to the erase list only if the unicast
1544 // time is null.
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001545 if (info.getUnicastValidTime() == null &&
Ray Milkey269ffb92014-04-03 14:43:30 -07001546 info.getMulticastValidTime() == null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001547 eraseList.add(entry.getKey());
1548 } else if (linkChanged) {
1549 UpdateOperation operation;
1550 operation = getUpdateOperation(info.getSrcPortState(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001551 info.getDstPortState());
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001552 LinkUpdate update = new LinkUpdate(new LDUpdate(lt.getSrc(), lt.getSrcPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001553 lt.getDst(), lt.getDstPort(),
1554 getLinkType(lt, info),
1555 operation));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001556 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001557 }
1558 }
1559
1560 // if any link was deleted or any link was changed.
1561 if ((eraseList.size() > 0) || linkChanged) {
1562 deleteLinks(eraseList, "LLDP timeout");
1563 }
1564 } finally {
1565 lock.writeLock().unlock();
1566 }
1567 }
1568
1569 private boolean portEnabled(OFPhysicalPort port) {
Ray Milkeyb29e6262014-04-09 16:02:14 -07001570 if (port == null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001571 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001572 }
1573 if ((OFPortConfig.OFPPC_PORT_DOWN.getValue() & port.getConfig()) > 0) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001574 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001575 }
1576 if ((OFPortState.OFPPS_LINK_DOWN.getValue() & port.getState()) > 0) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001577 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001578 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001579 // Port STP state doesn't work with multiple VLANs, so ignore it for now
1580 // if ((port.getState() & OFPortState.OFPPS_STP_MASK.getValue()) == OFPortState.OFPPS_STP_BLOCK.getValue())
1581 // return false;
1582 return true;
1583 }
1584
1585 public Map<NodePortTuple, Set<Link>> getPortBroadcastDomainLinks() {
1586 return portBroadcastDomainLinks;
1587 }
1588
1589 @Override
1590 public Map<Link, LinkInfo> getLinks() {
1591 lock.readLock().lock();
1592 Map<Link, LinkInfo> result;
1593 try {
1594 result = new HashMap<Link, LinkInfo>(links);
1595 } finally {
1596 lock.readLock().unlock();
1597 }
1598 return result;
1599 }
1600
1601 protected void addLinkToBroadcastDomain(Link lt) {
1602
1603 NodePortTuple srcNpt, dstNpt;
1604 srcNpt = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
1605 dstNpt = new NodePortTuple(lt.getDst(), lt.getDstPort());
1606
Ray Milkeyb29e6262014-04-09 16:02:14 -07001607 if (!portBroadcastDomainLinks.containsKey(srcNpt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001608 portBroadcastDomainLinks.put(srcNpt, new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001609 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001610 portBroadcastDomainLinks.get(srcNpt).add(lt);
1611
Ray Milkeyb29e6262014-04-09 16:02:14 -07001612 if (!portBroadcastDomainLinks.containsKey(dstNpt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001613 portBroadcastDomainLinks.put(dstNpt, new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001614 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001615 portBroadcastDomainLinks.get(dstNpt).add(lt);
1616 }
1617
1618 protected void removeLinkFromBroadcastDomain(Link lt) {
1619
1620 NodePortTuple srcNpt, dstNpt;
1621 srcNpt = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
1622 dstNpt = new NodePortTuple(lt.getDst(), lt.getDstPort());
1623
1624 if (portBroadcastDomainLinks.containsKey(srcNpt)) {
1625 portBroadcastDomainLinks.get(srcNpt).remove(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001626 if (portBroadcastDomainLinks.get(srcNpt).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001627 portBroadcastDomainLinks.remove(srcNpt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001628 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001629 }
1630
1631 if (portBroadcastDomainLinks.containsKey(dstNpt)) {
1632 portBroadcastDomainLinks.get(dstNpt).remove(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001633 if (portBroadcastDomainLinks.get(dstNpt).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001634 portBroadcastDomainLinks.remove(dstNpt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001635 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001636 }
1637 }
1638
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001639 @Override
1640 public void addListener(ILinkDiscoveryListener listener) {
1641 linkDiscoveryAware.add(listener);
1642 }
1643
1644 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -07001645 * Register a link discovery aware component.
Ray Milkey269ffb92014-04-03 14:43:30 -07001646 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001647 * @param linkDiscoveryAwareComponent
1648 */
1649 public void addLinkDiscoveryAware(ILinkDiscoveryListener linkDiscoveryAwareComponent) {
1650 // TODO make this a copy on write set or lock it somehow
1651 this.linkDiscoveryAware.add(linkDiscoveryAwareComponent);
1652 }
1653
1654 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -07001655 * Deregister a link discovery aware component.
Ray Milkey269ffb92014-04-03 14:43:30 -07001656 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001657 * @param linkDiscoveryAwareComponent
1658 */
1659 public void removeLinkDiscoveryAware(ILinkDiscoveryListener linkDiscoveryAwareComponent) {
1660 // TODO make this a copy on write set or lock it somehow
1661 this.linkDiscoveryAware.remove(linkDiscoveryAwareComponent);
1662 }
1663
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001664 @Override
1665 public boolean isCallbackOrderingPrereq(OFType type, String name) {
1666 return false;
1667 }
1668
1669 @Override
1670 public boolean isCallbackOrderingPostreq(OFType type, String name) {
1671 return false;
1672 }
1673
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001674 // IFloodlightModule classes
1675
1676 @Override
1677 public Collection<Class<? extends IFloodlightService>> getModuleServices() {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001678 Collection<Class<? extends IFloodlightService>> l =
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001679 new ArrayList<Class<? extends IFloodlightService>>();
1680 l.add(ILinkDiscoveryService.class);
1681 //l.add(ITopologyService.class);
1682 return l;
1683 }
1684
1685 @Override
1686 public Map<Class<? extends IFloodlightService>, IFloodlightService>
1687 getServiceImpls() {
1688 Map<Class<? extends IFloodlightService>,
Ray Milkey269ffb92014-04-03 14:43:30 -07001689 IFloodlightService> m =
1690 new HashMap<Class<? extends IFloodlightService>,
1691 IFloodlightService>();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001692 // We are the class that implements the service
1693 m.put(ILinkDiscoveryService.class, this);
1694 return m;
1695 }
1696
1697 @Override
1698 public Collection<Class<? extends IFloodlightService>> getModuleDependencies() {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001699 Collection<Class<? extends IFloodlightService>> l =
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001700 new ArrayList<Class<? extends IFloodlightService>>();
1701 l.add(IFloodlightProviderService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001702 l.add(IThreadPoolService.class);
1703 l.add(IRestApiService.class);
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001704 // Added by ONOS
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -07001705 l.add(IControllerRegistryService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001706 return l;
1707 }
1708
1709 @Override
1710 public void init(FloodlightModuleContext context)
1711 throws FloodlightModuleException {
1712 floodlightProvider = context.getServiceImpl(IFloodlightProviderService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001713 threadPool = context.getServiceImpl(IThreadPoolService.class);
1714 restApi = context.getServiceImpl(IRestApiService.class);
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001715 // Added by ONOS
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -07001716 registryService = context.getServiceImpl(IControllerRegistryService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001717
1718 // Set the autoportfast feature to false.
1719 this.autoPortFastFeature = false;
1720
1721 // We create this here because there is no ordering guarantee
1722 this.linkDiscoveryAware = new ArrayList<ILinkDiscoveryListener>();
1723 this.lock = new ReentrantReadWriteLock();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001724 this.links = new HashMap<Link, LinkInfo>();
1725 this.portLinks = new HashMap<NodePortTuple, Set<Link>>();
1726 this.suppressLinkDiscovery =
1727 Collections.synchronizedSet(new HashSet<NodePortTuple>());
1728 this.portBroadcastDomainLinks = new HashMap<NodePortTuple, Set<Link>>();
1729 this.switchLinks = new HashMap<Long, Set<Link>>();
1730 this.quarantineQueue = new LinkedBlockingQueue<NodePortTuple>();
1731 this.maintenanceQueue = new LinkedBlockingQueue<NodePortTuple>();
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001732 // Added by ONOS
HIGUCHI Yuta7677a6f2013-06-14 14:13:35 -07001733 this.remoteSwitches = new HashMap<Long, IOnosRemoteSwitch>();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001734
1735 this.evHistTopologySwitch =
1736 new EventHistory<EventHistoryTopologySwitch>("Topology: Switch");
1737 this.evHistTopologyLink =
1738 new EventHistory<EventHistoryTopologyLink>("Topology: Link");
1739 this.evHistTopologyCluster =
1740 new EventHistory<EventHistoryTopologyCluster>("Topology: Cluster");
1741 }
1742
1743 @Override
1744 @LogMessageDocs({
Ray Milkey269ffb92014-04-03 14:43:30 -07001745 @LogMessageDoc(level = "ERROR",
1746 message = "No storage source found.",
1747 explanation = "Storage source was not initialized; cannot initialize " +
1748 "link discovery.",
1749 recommendation = LogMessageDoc.REPORT_CONTROLLER_BUG),
1750 @LogMessageDoc(level = "ERROR",
1751 message = "Error in installing listener for " +
1752 "switch config table {table}",
1753 explanation = "Failed to install storage notification for the " +
1754 "switch config table",
1755 recommendation = LogMessageDoc.REPORT_CONTROLLER_BUG),
1756 @LogMessageDoc(level = "ERROR",
1757 message = "No storage source found.",
1758 explanation = "Storage source was not initialized; cannot initialize " +
1759 "link discovery.",
1760 recommendation = LogMessageDoc.REPORT_CONTROLLER_BUG),
1761 @LogMessageDoc(level = "ERROR",
1762 message = "Exception in LLDP send timer.",
1763 explanation = "An unknown error occured while sending LLDP " +
1764 "messages to switches.",
1765 recommendation = LogMessageDoc.CHECK_SWITCH)
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001766 })
1767 public void startUp(FloodlightModuleContext context) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001768 ScheduledExecutorService ses = threadPool.getScheduledExecutor();
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001769 controller =
1770 context.getServiceImpl(IFloodlightProviderService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001771
1772 // To be started by the first switch connection
1773 discoveryTask = new SingletonTask(ses, new Runnable() {
1774 @Override
1775 public void run() {
1776 try {
1777 discoverLinks();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001778 } catch (Exception e) {
1779 log.error("Exception in LLDP send timer.", e);
1780 } finally {
1781 if (!shuttingDown) {
Ray Milkey269ffb92014-04-03 14:43:30 -07001782 // Always reschedule link discovery if we're not
1783 // shutting down (no chance of SLAVE role now)
Jonathan Hartec4f14e2013-12-12 10:46:38 -08001784 log.trace("Rescheduling discovery task");
1785 discoveryTask.reschedule(DISCOVERY_TASK_INTERVAL,
Ray Milkey269ffb92014-04-03 14:43:30 -07001786 TimeUnit.SECONDS);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001787 }
1788 }
1789 }
1790 });
1791
Jonathan Hartec4f14e2013-12-12 10:46:38 -08001792 // Always reschedule link discovery as we are never in SLAVE role now
1793 discoveryTask.reschedule(DISCOVERY_TASK_INTERVAL, TimeUnit.SECONDS);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001794
1795 // Setup the BDDP task. It is invoked whenever switch port tuples
1796 // are added to the quarantine list.
1797 bddpTask = new SingletonTask(ses, new QuarantineWorker());
1798 bddpTask.reschedule(BDDP_TASK_INTERVAL, TimeUnit.MILLISECONDS);
1799
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001800
1801 // Register for the OpenFlow messages we want to receive
1802 floodlightProvider.addOFMessageListener(OFType.PACKET_IN, this);
1803 floodlightProvider.addOFMessageListener(OFType.PORT_STATUS, this);
1804 // Register for switch updates
1805 floodlightProvider.addOFSwitchListener(this);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001806 if (restApi != null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001807 restApi.addRestletRoutable(new LinkDiscoveryWebRoutable());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001808 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001809 setControllerTLV();
1810 }
1811
1812 // ****************************************************
1813 // Topology Manager's Event History members and methods
1814 // ****************************************************
1815
1816 // Topology Manager event history
Ray Milkey269ffb92014-04-03 14:43:30 -07001817 public EventHistory<EventHistoryTopologySwitch> evHistTopologySwitch;
1818 public EventHistory<EventHistoryTopologyLink> evHistTopologyLink;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001819 public EventHistory<EventHistoryTopologyCluster> evHistTopologyCluster;
Ray Milkey269ffb92014-04-03 14:43:30 -07001820 public EventHistoryTopologySwitch evTopoSwitch;
1821 public EventHistoryTopologyLink evTopoLink;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001822 public EventHistoryTopologyCluster evTopoCluster;
1823
1824 // Switch Added/Deleted
1825 private void evHistTopoSwitch(IOFSwitch sw, EvAction actn, String reason) {
1826 if (evTopoSwitch == null) {
1827 evTopoSwitch = new EventHistoryTopologySwitch();
1828 }
Ray Milkey269ffb92014-04-03 14:43:30 -07001829 evTopoSwitch.dpid = sw.getId();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001830 if ((sw.getChannel() != null) &&
1831 (SocketAddress.class.isInstance(
Ray Milkey269ffb92014-04-03 14:43:30 -07001832 sw.getChannel().getRemoteAddress()))) {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001833 evTopoSwitch.ipv4Addr =
Ray Milkey269ffb92014-04-03 14:43:30 -07001834 IPv4.toIPv4Address(((InetSocketAddress) (sw.getChannel().
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001835 getRemoteAddress())).getAddress().getAddress());
Ray Milkey269ffb92014-04-03 14:43:30 -07001836 evTopoSwitch.l4Port =
1837 ((InetSocketAddress) (sw.getChannel().
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001838 getRemoteAddress())).getPort();
1839 } else {
1840 evTopoSwitch.ipv4Addr = 0;
1841 evTopoSwitch.l4Port = 0;
1842 }
Ray Milkey269ffb92014-04-03 14:43:30 -07001843 evTopoSwitch.reason = reason;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001844 evTopoSwitch = evHistTopologySwitch.put(evTopoSwitch, actn);
1845 }
1846
Ray Milkeya5450cc2014-04-17 14:31:30 -07001847 // CHECKSTYLE:OFF suppress warning about too many parameters
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001848 private void evHistTopoLink(long srcDpid, long dstDpid, short srcPort,
1849 short dstPort, int srcPortState, int dstPortState,
1850 ILinkDiscovery.LinkType linkType,
1851 EvAction actn, String reason) {
Ray Milkeya5450cc2014-04-17 14:31:30 -07001852 // CHECKSTYLE:ON
1853
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001854 if (evTopoLink == null) {
1855 evTopoLink = new EventHistoryTopologyLink();
1856 }
1857 evTopoLink.srcSwDpid = srcDpid;
1858 evTopoLink.dstSwDpid = dstDpid;
1859 evTopoLink.srcSwport = srcPort & 0xffff;
1860 evTopoLink.dstSwport = dstPort & 0xffff;
1861 evTopoLink.srcPortState = srcPortState;
1862 evTopoLink.dstPortState = dstPortState;
Ray Milkey269ffb92014-04-03 14:43:30 -07001863 evTopoLink.reason = reason;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001864 switch (linkType) {
1865 case DIRECT_LINK:
1866 evTopoLink.linkType = "DIRECT_LINK";
1867 break;
1868 case MULTIHOP_LINK:
1869 evTopoLink.linkType = "MULTIHOP_LINK";
1870 break;
1871 case TUNNEL:
1872 evTopoLink.linkType = "TUNNEL";
1873 break;
1874 case INVALID_LINK:
1875 default:
1876 evTopoLink.linkType = "Unknown";
1877 break;
1878 }
1879 evTopoLink = evHistTopologyLink.put(evTopoLink, actn);
1880 }
1881
1882 public void evHistTopoCluster(long dpid, long clusterIdOld,
1883 long clusterIdNew, EvAction action, String reason) {
1884 if (evTopoCluster == null) {
1885 evTopoCluster = new EventHistoryTopologyCluster();
1886 }
Ray Milkey269ffb92014-04-03 14:43:30 -07001887 evTopoCluster.dpid = dpid;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001888 evTopoCluster.clusterIdOld = clusterIdOld;
1889 evTopoCluster.clusterIdNew = clusterIdNew;
Ray Milkey269ffb92014-04-03 14:43:30 -07001890 evTopoCluster.reason = reason;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001891 evTopoCluster = evHistTopologyCluster.put(evTopoCluster, action);
1892 }
1893
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001894 @Override
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001895 public boolean isAutoPortFastFeature() {
1896 return autoPortFastFeature;
1897 }
1898
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001899 @Override
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001900 public void setAutoPortFastFeature(boolean autoPortFastFeature) {
1901 this.autoPortFastFeature = autoPortFastFeature;
1902 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001903}