blob: 9be2313f4fac2b96111603034dc4f227dbfb47df [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;
Jonathan Hart121a0242014-06-06 15:53:42 -0700864 }
865 // XXX ONOS: Don't disregard any BDDP messages from other
866 // controllers because they're used for inter-instance link detection
867
868 /*else if (sw <= remoteSwitch.getId()) {
Teru Ub7246af2014-01-13 13:24:38 -0800869 if (log.isTraceEnabled()) {
870 log.trace("Getting BBDP from a different controller. myId {}: remoteId {}", myId, otherId);
871 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 -0700872 }
873 //XXX ONOS: Fix the BDDP broadcast issue
874 //return Command.CONTINUE;
875 return Command.STOP;
Jonathan Hart121a0242014-06-06 15:53:42 -0700876 }*/
Teru Ub7246af2014-01-13 13:24:38 -0800877 /*
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800878 else if (myId < otherId) {
879 if (log.isTraceEnabled()) {
880 log.trace("Getting BDDP packets from a different controller" +
881 "and letting it go through normal processing chain.");
882 }
HIGUCHI Yuta30d03302013-06-14 13:47:36 -0700883 //XXX ONOS: Fix the BDDP broadcast issue
Jonathan Hart0b2c76a2013-02-27 17:09:33 -0800884 //return Command.CONTINUE;
885 return Command.STOP;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800886 }
Teru Ub7246af2014-01-13 13:24:38 -0800887 */
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800888 }
889
890
891 if (remoteSwitch == null) {
892 // Ignore LLDPs not generated by Floodlight, or from a switch that has recently
893 // disconnected, or from a switch connected to another Floodlight instance
894 if (log.isTraceEnabled()) {
895 log.trace("Received LLDP from remote switch not connected to the controller");
896 }
897 return Command.STOP;
898 }
899
900 if (!remoteSwitch.portEnabled(remotePort)) {
901 if (log.isTraceEnabled()) {
902 log.trace("Ignoring link with disabled source port: switch {} port {}", remoteSwitch, remotePort);
903 }
904 return Command.STOP;
905 }
906 if (suppressLinkDiscovery.contains(new NodePortTuple(remoteSwitch.getId(),
Ray Milkey269ffb92014-04-03 14:43:30 -0700907 remotePort))) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800908 if (log.isTraceEnabled()) {
909 log.trace("Ignoring link with suppressed src port: switch {} port {}",
Ray Milkey269ffb92014-04-03 14:43:30 -0700910 remoteSwitch, remotePort);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800911 }
912 return Command.STOP;
913 }
914 if (!iofSwitch.portEnabled(pi.getInPort())) {
915 if (log.isTraceEnabled()) {
916 log.trace("Ignoring link with disabled dest port: switch {} port {}", sw, pi.getInPort());
917 }
918 return Command.STOP;
919 }
920
921 OFPhysicalPort physicalPort = remoteSwitch.getPort(remotePort);
922 int srcPortState = (physicalPort != null) ? physicalPort.getState() : 0;
923 physicalPort = iofSwitch.getPort(pi.getInPort());
924 int dstPortState = (physicalPort != null) ? physicalPort.getState() : 0;
925
926 // Store the time of update to this link, and push it out to routingEngine
927 Link lt = new Link(remoteSwitch.getId(), remotePort, iofSwitch.getId(), pi.getInPort());
928
929
930 Long lastLldpTime = null;
931 Long lastBddpTime = null;
932
933 Long firstSeenTime = System.currentTimeMillis();
934
Ray Milkeyb29e6262014-04-09 16:02:14 -0700935 if (isStandard) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800936 lastLldpTime = System.currentTimeMillis();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700937 } else {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800938 lastBddpTime = System.currentTimeMillis();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700939 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800940
941 LinkInfo newLinkInfo =
942 new LinkInfo(firstSeenTime, lastLldpTime, lastBddpTime,
Ray Milkey269ffb92014-04-03 14:43:30 -0700943 srcPortState, dstPortState);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800944
945 addOrUpdateLink(lt, newLinkInfo);
946
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800947 // Check if reverse link exists.
948 // If it doesn't exist and if the forward link was seen
949 // first seen within a small interval, send probe on the
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800950 // reverse link.
951
952 newLinkInfo = links.get(lt);
Ray Milkey6c4f2fe2014-04-11 09:47:23 -0700953 if (newLinkInfo != null && isStandard && !isReverse) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800954 Link reverseLink = new Link(lt.getDst(), lt.getDstPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -0700955 lt.getSrc(), lt.getSrcPort());
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800956 LinkInfo reverseInfo = links.get(reverseLink);
957 if (reverseInfo == null) {
958 // the reverse link does not exist.
959 if (newLinkInfo.getFirstSeenTime() > System.currentTimeMillis() - LINK_TIMEOUT) {
960 this.sendDiscoveryMessage(lt.getDst(), lt.getDstPort(), isStandard, true);
961 }
962 }
963 }
964
Jonathan Hart121a0242014-06-06 15:53:42 -0700965 // XXX ONOS: Don't do this:
966 // If the received packet is a BDDP packet, then create a reverse BDDP
967 // link as well.
968 // We want to preserve our semantic of the instance that controls the
969 // destination switch is the one who adds the link to the database.
970 /*
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800971 if (!isStandard) {
972 Link reverseLink = new Link(lt.getDst(), lt.getDstPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -0700973 lt.getSrc(), lt.getSrcPort());
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800974
975 // srcPortState and dstPort state are reversed.
976 LinkInfo reverseInfo =
977 new LinkInfo(firstSeenTime, lastLldpTime, lastBddpTime,
Ray Milkey269ffb92014-04-03 14:43:30 -0700978 dstPortState, srcPortState);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800979
980 addOrUpdateLink(reverseLink, reverseInfo);
981 }
Jonathan Hart121a0242014-06-06 15:53:42 -0700982 */
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800983
984 // Remove the node ports from the quarantine and maintenance queues.
985 NodePortTuple nptSrc = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
986 NodePortTuple nptDst = new NodePortTuple(lt.getDst(), lt.getDstPort());
987 removeFromQuarantineQueue(nptSrc);
988 removeFromMaintenanceQueue(nptSrc);
989 removeFromQuarantineQueue(nptDst);
990 removeFromMaintenanceQueue(nptDst);
991
992 // Consume this message
993 return Command.STOP;
994 }
995
996 protected Command handlePacketIn(long sw, OFPacketIn pi,
997 FloodlightContext cntx) {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800998 Ethernet eth =
999 IFloodlightProviderService.bcStore.get(cntx,
Ray Milkey269ffb92014-04-03 14:43:30 -07001000 IFloodlightProviderService.CONTEXT_PI_PAYLOAD);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001001
Ray Milkey269ffb92014-04-03 14:43:30 -07001002 if (eth.getEtherType() == Ethernet.TYPE_BSN) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001003 BSN bsn = (BSN) eth.getPayload();
Ray Milkeyb29e6262014-04-09 16:02:14 -07001004 if (bsn == null) {
1005 return Command.STOP;
1006 }
1007 if (bsn.getPayload() == null) {
1008 return Command.STOP;
1009 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001010 // It could be a packet other than BSN LLDP, therefore
1011 // continue with the regular processing.
Ray Milkey6c4f2fe2014-04-11 09:47:23 -07001012 if (!(bsn.getPayload() instanceof LLDP)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001013 return Command.CONTINUE;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001014 }
Ubuntu9cbb4ca2013-02-07 17:19:59 +00001015 return handleLldp((LLDP) bsn.getPayload(), sw, pi, false, cntx);
Ray Milkey269ffb92014-04-03 14:43:30 -07001016 } else if (eth.getEtherType() == Ethernet.TYPE_LLDP) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001017 return handleLldp((LLDP) eth.getPayload(), sw, pi, true, cntx);
1018 } else if (eth.getEtherType() < 1500) {
1019 long destMac = eth.getDestinationMAC().toLong();
Ray Milkey269ffb92014-04-03 14:43:30 -07001020 if ((destMac & LINK_LOCAL_MASK) == LINK_LOCAL_VALUE) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001021 if (log.isTraceEnabled()) {
1022 log.trace("Ignoring packet addressed to 802.1D/Q " +
1023 "reserved address.");
1024 }
1025 return Command.STOP;
1026 }
1027 }
1028
1029 // If packet-in is from a quarantine port, stop processing.
1030 NodePortTuple npt = new NodePortTuple(sw, pi.getInPort());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001031 if (quarantineQueue.contains(npt)) {
1032 return Command.STOP;
1033 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001034
1035 return Command.CONTINUE;
1036 }
1037
1038 protected UpdateOperation getUpdateOperation(int srcPortState,
1039 int dstPortState) {
1040 boolean added =
1041 (((srcPortState &
Ray Milkey269ffb92014-04-03 14:43:30 -07001042 OFPortState.OFPPS_STP_MASK.getValue()) !=
1043 OFPortState.OFPPS_STP_BLOCK.getValue()) &&
1044 ((dstPortState &
1045 OFPortState.OFPPS_STP_MASK.getValue()) !=
1046 OFPortState.OFPPS_STP_BLOCK.getValue()));
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001047
Ray Milkeyb29e6262014-04-09 16:02:14 -07001048 if (added) {
1049 return UpdateOperation.LINK_UPDATED;
1050 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001051 return UpdateOperation.LINK_REMOVED;
1052 }
1053
1054
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001055 protected UpdateOperation getUpdateOperation(int srcPortState) {
1056 boolean portUp = ((srcPortState &
1057 OFPortState.OFPPS_STP_MASK.getValue()) !=
1058 OFPortState.OFPPS_STP_BLOCK.getValue());
1059
Ray Milkeyb29e6262014-04-09 16:02:14 -07001060 if (portUp) {
1061 return UpdateOperation.PORT_UP;
1062 } else {
1063 return UpdateOperation.PORT_DOWN;
1064 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001065 }
1066
1067 protected boolean addOrUpdateLink(Link lt, LinkInfo newInfo) {
1068
1069 NodePortTuple srcNpt, dstNpt;
1070 boolean linkChanged = false;
1071
1072 lock.writeLock().lock();
1073 try {
1074 // put the new info. if an old info exists, it will be returned.
1075 LinkInfo oldInfo = links.put(lt, newInfo);
1076 if (oldInfo != null &&
Ray Milkeyb29e6262014-04-09 16:02:14 -07001077 oldInfo.getFirstSeenTime() < newInfo.getFirstSeenTime()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001078 newInfo.setFirstSeenTime(oldInfo.getFirstSeenTime());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001079 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001080
1081 if (log.isTraceEnabled()) {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001082 log.trace("addOrUpdateLink: {} {}",
Ray Milkey269ffb92014-04-03 14:43:30 -07001083 lt,
1084 (newInfo.getMulticastValidTime() != null) ? "multicast" : "unicast");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001085 }
1086
1087 UpdateOperation updateOperation = null;
1088 linkChanged = false;
1089
1090 srcNpt = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
1091 dstNpt = new NodePortTuple(lt.getDst(), lt.getDstPort());
1092
1093 if (oldInfo == null) {
1094 // index it by switch source
Ray Milkeyb29e6262014-04-09 16:02:14 -07001095 if (!switchLinks.containsKey(lt.getSrc())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001096 switchLinks.put(lt.getSrc(), new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001097 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001098 switchLinks.get(lt.getSrc()).add(lt);
1099
1100 // index it by switch dest
Ray Milkeyb29e6262014-04-09 16:02:14 -07001101 if (!switchLinks.containsKey(lt.getDst())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001102 switchLinks.put(lt.getDst(), new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001103 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001104 switchLinks.get(lt.getDst()).add(lt);
1105
1106 // index both ends by switch:port
Ray Milkeyb29e6262014-04-09 16:02:14 -07001107 if (!portLinks.containsKey(srcNpt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001108 portLinks.put(srcNpt, new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001109 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001110 portLinks.get(srcNpt).add(lt);
1111
Ray Milkeyb29e6262014-04-09 16:02:14 -07001112 if (!portLinks.containsKey(dstNpt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001113 portLinks.put(dstNpt, new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001114 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001115 portLinks.get(dstNpt).add(lt);
1116
1117 // Add to portNOFLinks if the unicast valid time is null
Ray Milkeyb29e6262014-04-09 16:02:14 -07001118 if (newInfo.getUnicastValidTime() == null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001119 addLinkToBroadcastDomain(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001120 }
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001121
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001122 // ONOS: Distinguish added event separately from updated event
Pankaj Berdea41016d2013-06-10 21:18:18 -07001123 updateOperation = UpdateOperation.LINK_ADDED;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001124 linkChanged = true;
1125
1126 // Add to event history
1127 evHistTopoLink(lt.getSrc(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001128 lt.getDst(),
1129 lt.getSrcPort(),
1130 lt.getDstPort(),
1131 newInfo.getSrcPortState(), newInfo.getDstPortState(),
1132 getLinkType(lt, newInfo),
1133 EvAction.LINK_ADDED, "LLDP Recvd");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001134 } else {
1135 // Since the link info is already there, we need to
1136 // update the right fields.
1137 if (newInfo.getUnicastValidTime() == null) {
1138 // This is due to a multicast LLDP, so copy the old unicast
1139 // value.
1140 if (oldInfo.getUnicastValidTime() != null) {
1141 newInfo.setUnicastValidTime(oldInfo.getUnicastValidTime());
1142 }
1143 } else if (newInfo.getMulticastValidTime() == null) {
1144 // This is due to a unicast LLDP, so copy the old multicast
1145 // value.
1146 if (oldInfo.getMulticastValidTime() != null) {
1147 newInfo.setMulticastValidTime(oldInfo.getMulticastValidTime());
1148 }
1149 }
1150
1151 Long oldTime = oldInfo.getUnicastValidTime();
1152 Long newTime = newInfo.getUnicastValidTime();
1153 // the link has changed its state between openflow and non-openflow
1154 // if the unicastValidTimes are null or not null
1155 if (oldTime != null & newTime == null) {
1156 // openflow -> non-openflow transition
1157 // we need to add the link tuple to the portNOFLinks
1158 addLinkToBroadcastDomain(lt);
1159 linkChanged = true;
1160 } else if (oldTime == null & newTime != null) {
1161 // non-openflow -> openflow transition
1162 // we need to remove the link from the portNOFLinks
1163 removeLinkFromBroadcastDomain(lt);
1164 linkChanged = true;
1165 }
1166
1167 // Only update the port states if they've changed
1168 if (newInfo.getSrcPortState().intValue() !=
1169 oldInfo.getSrcPortState().intValue() ||
1170 newInfo.getDstPortState().intValue() !=
Ray Milkeyb29e6262014-04-09 16:02:14 -07001171 oldInfo.getDstPortState().intValue()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001172 linkChanged = true;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001173 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001174
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001175 if (linkChanged) {
1176 updateOperation = getUpdateOperation(newInfo.getSrcPortState(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001177 newInfo.getDstPortState());
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001178 if (log.isTraceEnabled()) {
1179 log.trace("Updated link {}", lt);
1180 }
1181 // Add to event history
1182 evHistTopoLink(lt.getSrc(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001183 lt.getDst(),
1184 lt.getSrcPort(),
1185 lt.getDstPort(),
1186 newInfo.getSrcPortState(), newInfo.getDstPortState(),
1187 getLinkType(lt, newInfo),
1188 EvAction.LINK_PORT_STATE_UPDATED,
1189 "LLDP Recvd");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001190 }
1191 }
1192
1193 if (linkChanged) {
1194 // find out if the link was added or removed here.
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001195 LinkUpdate update = new LinkUpdate(new LDUpdate(lt.getSrc(), lt.getSrcPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001196 lt.getDst(), lt.getDstPort(),
1197 getLinkType(lt, newInfo),
1198 updateOperation));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001199 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001200 }
1201 } finally {
1202 lock.writeLock().unlock();
1203 }
1204
1205 return linkChanged;
1206 }
1207
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001208 @Override
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001209 public Map<Long, Set<Link>> getSwitchLinks() {
1210 return this.switchLinks;
1211 }
1212
1213 /**
1214 * Removes links from memory and storage.
Ray Milkey269ffb92014-04-03 14:43:30 -07001215 *
Ray Milkey5df613b2014-04-15 10:50:56 -07001216 * @param linksToDelete The List of @LinkTuple to delete.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001217 */
Ray Milkey5df613b2014-04-15 10:50:56 -07001218 protected void deleteLinks(List<Link> linksToDelete, String reason) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001219 NodePortTuple srcNpt, dstNpt;
1220
1221 lock.writeLock().lock();
1222 try {
Ray Milkey5df613b2014-04-15 10:50:56 -07001223 for (Link lt : linksToDelete) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001224 srcNpt = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
Ray Milkey269ffb92014-04-03 14:43:30 -07001225 dstNpt = new NodePortTuple(lt.getDst(), lt.getDstPort());
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001226
1227 switchLinks.get(lt.getSrc()).remove(lt);
1228 switchLinks.get(lt.getDst()).remove(lt);
1229 if (switchLinks.containsKey(lt.getSrc()) &&
Ray Milkeyb29e6262014-04-09 16:02:14 -07001230 switchLinks.get(lt.getSrc()).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001231 this.switchLinks.remove(lt.getSrc());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001232 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001233 if (this.switchLinks.containsKey(lt.getDst()) &&
Ray Milkeyb29e6262014-04-09 16:02:14 -07001234 this.switchLinks.get(lt.getDst()).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001235 this.switchLinks.remove(lt.getDst());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001236 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001237
1238 if (this.portLinks.get(srcNpt) != null) {
1239 this.portLinks.get(srcNpt).remove(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001240 if (this.portLinks.get(srcNpt).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001241 this.portLinks.remove(srcNpt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001242 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001243 }
1244 if (this.portLinks.get(dstNpt) != null) {
1245 this.portLinks.get(dstNpt).remove(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001246 if (this.portLinks.get(dstNpt).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001247 this.portLinks.remove(dstNpt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001248 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001249 }
1250
1251 LinkInfo info = this.links.remove(lt);
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001252 LinkUpdate update = new LinkUpdate(new LDUpdate(lt.getSrc(), lt.getSrcPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001253 lt.getDst(), lt.getDstPort(),
1254 getLinkType(lt, info),
1255 UpdateOperation.LINK_REMOVED));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001256 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001257
1258 // Update Event History
1259 evHistTopoLink(lt.getSrc(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001260 lt.getDst(),
1261 lt.getSrcPort(),
1262 lt.getDstPort(),
1263 0, 0, // Port states
1264 ILinkDiscovery.LinkType.INVALID_LINK,
1265 EvAction.LINK_DELETED, reason);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001266
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001267 // TODO Whenever link is removed, it has to checked if
1268 // the switchports must be added to quarantine.
1269
1270 if (log.isTraceEnabled()) {
1271 log.trace("Deleted link {}", lt);
1272 }
1273 }
1274 } finally {
1275 lock.writeLock().unlock();
1276 }
1277 }
1278
1279 /**
1280 * Handles an OFPortStatus message from a switch. We will add or
1281 * delete LinkTupes as well re-compute the topology if needed.
Ray Milkey269ffb92014-04-03 14:43:30 -07001282 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001283 * @param sw The IOFSwitch that sent the port status message
1284 * @param ps The OFPortStatus message
1285 * @return The Command to continue or stop after we process this message
1286 */
1287 protected Command handlePortStatus(long sw, OFPortStatus ps) {
1288
1289 IOFSwitch iofSwitch = floodlightProvider.getSwitches().get(sw);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001290 if (iofSwitch == null) {
1291 return Command.CONTINUE;
1292 }
HIGUCHI Yutaa89b2842013-06-17 13:54:57 -07001293
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001294 // ONOS: If we do not control this switch, then we should not process its port status messages
Ray Milkeyb29e6262014-04-09 16:02:14 -07001295 if (!registryService.hasControl(iofSwitch.getId())) {
Ray Milkey269ffb92014-04-03 14:43:30 -07001296 return Command.CONTINUE;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001297 }
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001298
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001299 if (log.isTraceEnabled()) {
1300 log.trace("handlePortStatus: Switch {} port #{} reason {}; " +
1301 "config is {} state is {}",
Ray Milkey269ffb92014-04-03 14:43:30 -07001302 new Object[]{iofSwitch.getStringId(),
1303 ps.getDesc().getPortNumber(),
1304 ps.getReason(),
1305 ps.getDesc().getConfig(),
1306 ps.getDesc().getState()});
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001307 }
1308
1309 short port = ps.getDesc().getPortNumber();
1310 NodePortTuple npt = new NodePortTuple(sw, port);
Ray Milkey269ffb92014-04-03 14:43:30 -07001311 boolean linkDeleted = false;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001312 boolean linkInfoChanged = false;
1313
1314 lock.writeLock().lock();
1315 try {
1316 // if ps is a delete, or a modify where the port is down or
1317 // configured down
Ray Milkey269ffb92014-04-03 14:43:30 -07001318 if ((byte) OFPortReason.OFPPR_DELETE.ordinal() == ps.getReason() ||
1319 ((byte) OFPortReason.OFPPR_MODIFY.ordinal() ==
1320 ps.getReason() && !portEnabled(ps.getDesc()))) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001321 deleteLinksOnPort(npt, "Port Status Changed");
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001322 LinkUpdate update = new LinkUpdate(new LDUpdate(sw, port, UpdateOperation.PORT_DOWN));
1323 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001324 linkDeleted = true;
Ray Milkey269ffb92014-04-03 14:43:30 -07001325 } else if (ps.getReason() ==
1326 (byte) OFPortReason.OFPPR_MODIFY.ordinal()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001327 // If ps is a port modification and the port state has changed
1328 // that affects links in the topology
1329
1330 if (this.portLinks.containsKey(npt)) {
Ray Milkey269ffb92014-04-03 14:43:30 -07001331 for (Link lt : this.portLinks.get(npt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001332 LinkInfo linkInfo = links.get(lt);
Ray Milkey269ffb92014-04-03 14:43:30 -07001333 assert (linkInfo != null);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001334 Integer updatedSrcPortState = null;
1335 Integer updatedDstPortState = null;
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001336 if (lt.getSrc() == npt.getNodeId() &&
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001337 lt.getSrcPort() == npt.getPortId() &&
1338 (linkInfo.getSrcPortState() !=
Ray Milkey269ffb92014-04-03 14:43:30 -07001339 ps.getDesc().getState())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001340 updatedSrcPortState = ps.getDesc().getState();
1341 linkInfo.setSrcPortState(updatedSrcPortState);
1342 }
1343 if (lt.getDst() == npt.getNodeId() &&
1344 lt.getDstPort() == npt.getPortId() &&
1345 (linkInfo.getDstPortState() !=
Ray Milkey269ffb92014-04-03 14:43:30 -07001346 ps.getDesc().getState())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001347 updatedDstPortState = ps.getDesc().getState();
1348 linkInfo.setDstPortState(updatedDstPortState);
1349 }
1350 if ((updatedSrcPortState != null) ||
1351 (updatedDstPortState != null)) {
1352 // The link is already known to link discovery
1353 // manager and the status has changed, therefore
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001354 // send an LinkUpdate.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001355 UpdateOperation operation =
1356 getUpdateOperation(linkInfo.getSrcPortState(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001357 linkInfo.getDstPortState());
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001358 LinkUpdate update = new LinkUpdate(new LDUpdate(lt.getSrc(), lt.getSrcPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001359 lt.getDst(), lt.getDstPort(),
1360 getLinkType(lt, linkInfo),
1361 operation));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001362 controller.publishUpdate(update);
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001363
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001364 linkInfoChanged = true;
1365 }
1366 }
1367 }
1368
1369 UpdateOperation operation =
1370 getUpdateOperation(ps.getDesc().getState());
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001371 LinkUpdate update = new LinkUpdate(new LDUpdate(sw, port, operation));
1372 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001373 }
1374
Ray Milkey269ffb92014-04-03 14:43:30 -07001375 if (!linkDeleted && !linkInfoChanged) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001376 if (log.isTraceEnabled()) {
Ray Milkey269ffb92014-04-03 14:43:30 -07001377 log.trace("handlePortStatus: Switch {} port #{} reason {};" +
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001378 " no links to update/remove",
Ray Milkey269ffb92014-04-03 14:43:30 -07001379 new Object[]{HexString.toHexString(sw),
1380 ps.getDesc().getPortNumber(),
1381 ps.getReason()});
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001382 }
1383 }
1384 } finally {
1385 lock.writeLock().unlock();
1386 }
1387
1388 if (!linkDeleted) {
1389 // Send LLDP right away when port state is changed for faster
1390 // cluster-merge. If it is a link delete then there is not need
1391 // to send the LLDPs right away and instead we wait for the LLDPs
1392 // to be sent on the timer as it is normally done
1393 // do it outside the write-lock
1394 // sendLLDPTask.reschedule(1000, TimeUnit.MILLISECONDS);
1395 processNewPort(npt.getNodeId(), npt.getPortId());
1396 }
1397 return Command.CONTINUE;
1398 }
1399
1400 /**
1401 * Process a new port.
1402 * If link discovery is disabled on the port, then do nothing.
1403 * If autoportfast feature is enabled and the port is a fast port, then
1404 * do nothing.
1405 * Otherwise, send LLDP message. Add the port to quarantine.
Ray Milkey269ffb92014-04-03 14:43:30 -07001406 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001407 * @param sw
1408 * @param p
1409 */
1410 private void processNewPort(long sw, short p) {
1411 if (isLinkDiscoverySuppressed(sw, p)) {
1412 // Do nothing as link discovery is suppressed.
Ray Milkey1aa71f82014-04-08 16:23:24 -07001413 return;
Ray Milkey269ffb92014-04-03 14:43:30 -07001414 } else if (autoPortFastFeature && isFastPort(sw, p)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001415 // Do nothing as the port is a fast port.
Ray Milkey1aa71f82014-04-08 16:23:24 -07001416 return;
Ray Milkey269ffb92014-04-03 14:43:30 -07001417 } else {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001418 NodePortTuple npt = new NodePortTuple(sw, p);
1419 discover(sw, p);
1420 // if it is not a fast port, add it to quarantine.
1421 if (!isFastPort(sw, p)) {
1422 addToQuarantineQueue(npt);
1423 } else {
1424 // Add to maintenance queue to ensure that BDDP packets
1425 // are sent out.
1426 addToMaintenanceQueue(npt);
1427 }
1428 }
1429 }
1430
1431 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -07001432 * We send out LLDP messages when a switch is added to discover the topology.
Ray Milkey269ffb92014-04-03 14:43:30 -07001433 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001434 * @param sw The IOFSwitch that connected to the controller
1435 */
1436 @Override
1437 public void addedSwitch(IOFSwitch sw) {
1438
1439 if (sw.getEnabledPorts() != null) {
1440 for (Short p : sw.getEnabledPortNumbers()) {
1441 processNewPort(sw.getId(), p);
1442 }
1443 }
1444 // Update event history
1445 evHistTopoSwitch(sw, EvAction.SWITCH_CONNECTED, "None");
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001446 LinkUpdate update = new LinkUpdate(new LDUpdate(sw.getId(), null,
Ray Milkey269ffb92014-04-03 14:43:30 -07001447 UpdateOperation.SWITCH_UPDATED));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001448 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001449 }
1450
1451 /**
1452 * When a switch disconnects we remove any links from our map and notify.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001453 */
1454 @Override
1455 public void removedSwitch(IOFSwitch iofSwitch) {
1456 // Update event history
1457 long sw = iofSwitch.getId();
1458 evHistTopoSwitch(iofSwitch, EvAction.SWITCH_DISCONNECTED, "None");
1459 List<Link> eraseList = new ArrayList<Link>();
1460 lock.writeLock().lock();
1461 try {
1462 if (switchLinks.containsKey(sw)) {
1463 if (log.isTraceEnabled()) {
1464 log.trace("Handle switchRemoved. Switch {}; removing links {}",
Ray Milkey269ffb92014-04-03 14:43:30 -07001465 HexString.toHexString(sw), switchLinks.get(sw));
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001466 }
1467 // add all tuples with an endpoint on this switch to erase list
1468 eraseList.addAll(switchLinks.get(sw));
HIGUCHI Yutaa89b2842013-06-17 13:54:57 -07001469 deleteLinks(eraseList, "Switch Removed");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001470
1471 // Send a switch removed update
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001472 LinkUpdate update = new LinkUpdate(new LDUpdate(sw, null, UpdateOperation.SWITCH_REMOVED));
1473 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001474 }
1475 } finally {
1476 lock.writeLock().unlock();
1477 }
1478 }
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001479
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001480 /**
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001481 * We don't react the port changed notifications here. we listen for
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001482 * OFPortStatus messages directly. Might consider using this notifier
1483 * instead
1484 */
1485 @Override
1486 public void switchPortChanged(Long switchId) {
1487 // no-op
1488 }
1489
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001490 /**
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001491 * Delete links incident on a given switch port.
Ray Milkey269ffb92014-04-03 14:43:30 -07001492 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001493 * @param npt
1494 * @param reason
1495 */
1496 protected void deleteLinksOnPort(NodePortTuple npt, String reason) {
1497 List<Link> eraseList = new ArrayList<Link>();
1498 if (this.portLinks.containsKey(npt)) {
1499 if (log.isTraceEnabled()) {
1500 log.trace("handlePortStatus: Switch {} port #{} " +
1501 "removing links {}",
Ray Milkey269ffb92014-04-03 14:43:30 -07001502 new Object[]{HexString.toHexString(npt.getNodeId()),
1503 npt.getPortId(),
1504 this.portLinks.get(npt)});
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001505 }
1506 eraseList.addAll(this.portLinks.get(npt));
1507 deleteLinks(eraseList, reason);
1508 }
1509 }
1510
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001511 /**
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001512 * Iterates through the list of links and deletes if the
1513 * last discovery message reception time exceeds timeout values.
1514 */
1515 protected void timeoutLinks() {
1516 List<Link> eraseList = new ArrayList<Link>();
1517 Long curTime = System.currentTimeMillis();
1518 boolean linkChanged = false;
1519
1520 // reentrant required here because deleteLink also write locks
1521 lock.writeLock().lock();
1522 try {
1523 Iterator<Entry<Link, LinkInfo>> it =
1524 this.links.entrySet().iterator();
1525 while (it.hasNext()) {
1526 Entry<Link, LinkInfo> entry = it.next();
1527 Link lt = entry.getKey();
1528 LinkInfo info = entry.getValue();
1529
1530 // Timeout the unicast and multicast LLDP valid times
1531 // independently.
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001532 if ((info.getUnicastValidTime() != null) &&
Ray Milkey149693c2014-05-20 14:58:53 -07001533 (info.getUnicastValidTime() + (1000L * LINK_TIMEOUT) < curTime)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001534 info.setUnicastValidTime(null);
1535
Ray Milkeyb29e6262014-04-09 16:02:14 -07001536 if (info.getMulticastValidTime() != null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001537 addLinkToBroadcastDomain(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001538 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001539 // Note that even if mTime becomes null later on,
1540 // the link would be deleted, which would trigger updateClusters().
1541 linkChanged = true;
1542 }
Ray Milkey269ffb92014-04-03 14:43:30 -07001543 if ((info.getMulticastValidTime() != null) &&
Ray Milkey149693c2014-05-20 14:58:53 -07001544 (info.getMulticastValidTime() + (1000L * LINK_TIMEOUT) < curTime)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001545 info.setMulticastValidTime(null);
1546 // if uTime is not null, then link will remain as openflow
1547 // link. If uTime is null, it will be deleted. So, we
1548 // don't care about linkChanged flag here.
1549 removeLinkFromBroadcastDomain(lt);
1550 linkChanged = true;
1551 }
1552 // Add to the erase list only if the unicast
1553 // time is null.
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001554 if (info.getUnicastValidTime() == null &&
Ray Milkey269ffb92014-04-03 14:43:30 -07001555 info.getMulticastValidTime() == null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001556 eraseList.add(entry.getKey());
1557 } else if (linkChanged) {
1558 UpdateOperation operation;
1559 operation = getUpdateOperation(info.getSrcPortState(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001560 info.getDstPortState());
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001561 LinkUpdate update = new LinkUpdate(new LDUpdate(lt.getSrc(), lt.getSrcPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001562 lt.getDst(), lt.getDstPort(),
1563 getLinkType(lt, info),
1564 operation));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001565 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001566 }
1567 }
1568
1569 // if any link was deleted or any link was changed.
1570 if ((eraseList.size() > 0) || linkChanged) {
1571 deleteLinks(eraseList, "LLDP timeout");
1572 }
1573 } finally {
1574 lock.writeLock().unlock();
1575 }
1576 }
1577
1578 private boolean portEnabled(OFPhysicalPort port) {
Ray Milkeyb29e6262014-04-09 16:02:14 -07001579 if (port == null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001580 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001581 }
1582 if ((OFPortConfig.OFPPC_PORT_DOWN.getValue() & port.getConfig()) > 0) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001583 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001584 }
1585 if ((OFPortState.OFPPS_LINK_DOWN.getValue() & port.getState()) > 0) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001586 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001587 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001588 // Port STP state doesn't work with multiple VLANs, so ignore it for now
1589 // if ((port.getState() & OFPortState.OFPPS_STP_MASK.getValue()) == OFPortState.OFPPS_STP_BLOCK.getValue())
1590 // return false;
1591 return true;
1592 }
1593
1594 public Map<NodePortTuple, Set<Link>> getPortBroadcastDomainLinks() {
1595 return portBroadcastDomainLinks;
1596 }
1597
1598 @Override
1599 public Map<Link, LinkInfo> getLinks() {
1600 lock.readLock().lock();
1601 Map<Link, LinkInfo> result;
1602 try {
1603 result = new HashMap<Link, LinkInfo>(links);
1604 } finally {
1605 lock.readLock().unlock();
1606 }
1607 return result;
1608 }
1609
1610 protected void addLinkToBroadcastDomain(Link lt) {
1611
1612 NodePortTuple srcNpt, dstNpt;
1613 srcNpt = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
1614 dstNpt = new NodePortTuple(lt.getDst(), lt.getDstPort());
1615
Ray Milkeyb29e6262014-04-09 16:02:14 -07001616 if (!portBroadcastDomainLinks.containsKey(srcNpt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001617 portBroadcastDomainLinks.put(srcNpt, new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001618 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001619 portBroadcastDomainLinks.get(srcNpt).add(lt);
1620
Ray Milkeyb29e6262014-04-09 16:02:14 -07001621 if (!portBroadcastDomainLinks.containsKey(dstNpt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001622 portBroadcastDomainLinks.put(dstNpt, new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001623 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001624 portBroadcastDomainLinks.get(dstNpt).add(lt);
1625 }
1626
1627 protected void removeLinkFromBroadcastDomain(Link lt) {
1628
1629 NodePortTuple srcNpt, dstNpt;
1630 srcNpt = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
1631 dstNpt = new NodePortTuple(lt.getDst(), lt.getDstPort());
1632
1633 if (portBroadcastDomainLinks.containsKey(srcNpt)) {
1634 portBroadcastDomainLinks.get(srcNpt).remove(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001635 if (portBroadcastDomainLinks.get(srcNpt).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001636 portBroadcastDomainLinks.remove(srcNpt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001637 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001638 }
1639
1640 if (portBroadcastDomainLinks.containsKey(dstNpt)) {
1641 portBroadcastDomainLinks.get(dstNpt).remove(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001642 if (portBroadcastDomainLinks.get(dstNpt).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001643 portBroadcastDomainLinks.remove(dstNpt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001644 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001645 }
1646 }
1647
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001648 @Override
1649 public void addListener(ILinkDiscoveryListener listener) {
1650 linkDiscoveryAware.add(listener);
1651 }
1652
1653 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -07001654 * Register a link discovery aware component.
Ray Milkey269ffb92014-04-03 14:43:30 -07001655 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001656 * @param linkDiscoveryAwareComponent
1657 */
1658 public void addLinkDiscoveryAware(ILinkDiscoveryListener linkDiscoveryAwareComponent) {
1659 // TODO make this a copy on write set or lock it somehow
1660 this.linkDiscoveryAware.add(linkDiscoveryAwareComponent);
1661 }
1662
1663 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -07001664 * Deregister a link discovery aware component.
Ray Milkey269ffb92014-04-03 14:43:30 -07001665 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001666 * @param linkDiscoveryAwareComponent
1667 */
1668 public void removeLinkDiscoveryAware(ILinkDiscoveryListener linkDiscoveryAwareComponent) {
1669 // TODO make this a copy on write set or lock it somehow
1670 this.linkDiscoveryAware.remove(linkDiscoveryAwareComponent);
1671 }
1672
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001673 @Override
1674 public boolean isCallbackOrderingPrereq(OFType type, String name) {
1675 return false;
1676 }
1677
1678 @Override
1679 public boolean isCallbackOrderingPostreq(OFType type, String name) {
1680 return false;
1681 }
1682
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001683 // IFloodlightModule classes
1684
1685 @Override
1686 public Collection<Class<? extends IFloodlightService>> getModuleServices() {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001687 Collection<Class<? extends IFloodlightService>> l =
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001688 new ArrayList<Class<? extends IFloodlightService>>();
1689 l.add(ILinkDiscoveryService.class);
1690 //l.add(ITopologyService.class);
1691 return l;
1692 }
1693
1694 @Override
1695 public Map<Class<? extends IFloodlightService>, IFloodlightService>
1696 getServiceImpls() {
1697 Map<Class<? extends IFloodlightService>,
Ray Milkey269ffb92014-04-03 14:43:30 -07001698 IFloodlightService> m =
1699 new HashMap<Class<? extends IFloodlightService>,
1700 IFloodlightService>();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001701 // We are the class that implements the service
1702 m.put(ILinkDiscoveryService.class, this);
1703 return m;
1704 }
1705
1706 @Override
1707 public Collection<Class<? extends IFloodlightService>> getModuleDependencies() {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001708 Collection<Class<? extends IFloodlightService>> l =
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001709 new ArrayList<Class<? extends IFloodlightService>>();
1710 l.add(IFloodlightProviderService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001711 l.add(IThreadPoolService.class);
1712 l.add(IRestApiService.class);
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001713 // Added by ONOS
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -07001714 l.add(IControllerRegistryService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001715 return l;
1716 }
1717
1718 @Override
1719 public void init(FloodlightModuleContext context)
1720 throws FloodlightModuleException {
1721 floodlightProvider = context.getServiceImpl(IFloodlightProviderService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001722 threadPool = context.getServiceImpl(IThreadPoolService.class);
1723 restApi = context.getServiceImpl(IRestApiService.class);
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001724 // Added by ONOS
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -07001725 registryService = context.getServiceImpl(IControllerRegistryService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001726
1727 // Set the autoportfast feature to false.
1728 this.autoPortFastFeature = false;
1729
1730 // We create this here because there is no ordering guarantee
1731 this.linkDiscoveryAware = new ArrayList<ILinkDiscoveryListener>();
1732 this.lock = new ReentrantReadWriteLock();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001733 this.links = new HashMap<Link, LinkInfo>();
1734 this.portLinks = new HashMap<NodePortTuple, Set<Link>>();
1735 this.suppressLinkDiscovery =
1736 Collections.synchronizedSet(new HashSet<NodePortTuple>());
1737 this.portBroadcastDomainLinks = new HashMap<NodePortTuple, Set<Link>>();
1738 this.switchLinks = new HashMap<Long, Set<Link>>();
1739 this.quarantineQueue = new LinkedBlockingQueue<NodePortTuple>();
1740 this.maintenanceQueue = new LinkedBlockingQueue<NodePortTuple>();
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001741 // Added by ONOS
HIGUCHI Yuta7677a6f2013-06-14 14:13:35 -07001742 this.remoteSwitches = new HashMap<Long, IOnosRemoteSwitch>();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001743
1744 this.evHistTopologySwitch =
1745 new EventHistory<EventHistoryTopologySwitch>("Topology: Switch");
1746 this.evHistTopologyLink =
1747 new EventHistory<EventHistoryTopologyLink>("Topology: Link");
1748 this.evHistTopologyCluster =
1749 new EventHistory<EventHistoryTopologyCluster>("Topology: Cluster");
1750 }
1751
1752 @Override
1753 @LogMessageDocs({
Ray Milkey269ffb92014-04-03 14:43:30 -07001754 @LogMessageDoc(level = "ERROR",
1755 message = "No storage source found.",
1756 explanation = "Storage source was not initialized; cannot initialize " +
1757 "link discovery.",
1758 recommendation = LogMessageDoc.REPORT_CONTROLLER_BUG),
1759 @LogMessageDoc(level = "ERROR",
1760 message = "Error in installing listener for " +
1761 "switch config table {table}",
1762 explanation = "Failed to install storage notification for the " +
1763 "switch config table",
1764 recommendation = LogMessageDoc.REPORT_CONTROLLER_BUG),
1765 @LogMessageDoc(level = "ERROR",
1766 message = "No storage source found.",
1767 explanation = "Storage source was not initialized; cannot initialize " +
1768 "link discovery.",
1769 recommendation = LogMessageDoc.REPORT_CONTROLLER_BUG),
1770 @LogMessageDoc(level = "ERROR",
1771 message = "Exception in LLDP send timer.",
1772 explanation = "An unknown error occured while sending LLDP " +
1773 "messages to switches.",
1774 recommendation = LogMessageDoc.CHECK_SWITCH)
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001775 })
1776 public void startUp(FloodlightModuleContext context) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001777 ScheduledExecutorService ses = threadPool.getScheduledExecutor();
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001778 controller =
1779 context.getServiceImpl(IFloodlightProviderService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001780
1781 // To be started by the first switch connection
1782 discoveryTask = new SingletonTask(ses, new Runnable() {
1783 @Override
1784 public void run() {
1785 try {
1786 discoverLinks();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001787 } catch (Exception e) {
1788 log.error("Exception in LLDP send timer.", e);
1789 } finally {
1790 if (!shuttingDown) {
Ray Milkey269ffb92014-04-03 14:43:30 -07001791 // Always reschedule link discovery if we're not
1792 // shutting down (no chance of SLAVE role now)
Jonathan Hartec4f14e2013-12-12 10:46:38 -08001793 log.trace("Rescheduling discovery task");
1794 discoveryTask.reschedule(DISCOVERY_TASK_INTERVAL,
Ray Milkey269ffb92014-04-03 14:43:30 -07001795 TimeUnit.SECONDS);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001796 }
1797 }
1798 }
1799 });
1800
Jonathan Hartec4f14e2013-12-12 10:46:38 -08001801 // Always reschedule link discovery as we are never in SLAVE role now
1802 discoveryTask.reschedule(DISCOVERY_TASK_INTERVAL, TimeUnit.SECONDS);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001803
1804 // Setup the BDDP task. It is invoked whenever switch port tuples
1805 // are added to the quarantine list.
1806 bddpTask = new SingletonTask(ses, new QuarantineWorker());
1807 bddpTask.reschedule(BDDP_TASK_INTERVAL, TimeUnit.MILLISECONDS);
1808
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001809
1810 // Register for the OpenFlow messages we want to receive
1811 floodlightProvider.addOFMessageListener(OFType.PACKET_IN, this);
1812 floodlightProvider.addOFMessageListener(OFType.PORT_STATUS, this);
1813 // Register for switch updates
1814 floodlightProvider.addOFSwitchListener(this);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001815 if (restApi != null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001816 restApi.addRestletRoutable(new LinkDiscoveryWebRoutable());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001817 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001818 setControllerTLV();
1819 }
1820
1821 // ****************************************************
1822 // Topology Manager's Event History members and methods
1823 // ****************************************************
1824
1825 // Topology Manager event history
Ray Milkey269ffb92014-04-03 14:43:30 -07001826 public EventHistory<EventHistoryTopologySwitch> evHistTopologySwitch;
1827 public EventHistory<EventHistoryTopologyLink> evHistTopologyLink;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001828 public EventHistory<EventHistoryTopologyCluster> evHistTopologyCluster;
Ray Milkey269ffb92014-04-03 14:43:30 -07001829 public EventHistoryTopologySwitch evTopoSwitch;
1830 public EventHistoryTopologyLink evTopoLink;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001831 public EventHistoryTopologyCluster evTopoCluster;
1832
1833 // Switch Added/Deleted
1834 private void evHistTopoSwitch(IOFSwitch sw, EvAction actn, String reason) {
1835 if (evTopoSwitch == null) {
1836 evTopoSwitch = new EventHistoryTopologySwitch();
1837 }
Ray Milkey269ffb92014-04-03 14:43:30 -07001838 evTopoSwitch.dpid = sw.getId();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001839 if ((sw.getChannel() != null) &&
1840 (SocketAddress.class.isInstance(
Ray Milkey269ffb92014-04-03 14:43:30 -07001841 sw.getChannel().getRemoteAddress()))) {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001842 evTopoSwitch.ipv4Addr =
Ray Milkey269ffb92014-04-03 14:43:30 -07001843 IPv4.toIPv4Address(((InetSocketAddress) (sw.getChannel().
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001844 getRemoteAddress())).getAddress().getAddress());
Ray Milkey269ffb92014-04-03 14:43:30 -07001845 evTopoSwitch.l4Port =
1846 ((InetSocketAddress) (sw.getChannel().
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001847 getRemoteAddress())).getPort();
1848 } else {
1849 evTopoSwitch.ipv4Addr = 0;
1850 evTopoSwitch.l4Port = 0;
1851 }
Ray Milkey269ffb92014-04-03 14:43:30 -07001852 evTopoSwitch.reason = reason;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001853 evTopoSwitch = evHistTopologySwitch.put(evTopoSwitch, actn);
1854 }
1855
Ray Milkeya5450cc2014-04-17 14:31:30 -07001856 // CHECKSTYLE:OFF suppress warning about too many parameters
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001857 private void evHistTopoLink(long srcDpid, long dstDpid, short srcPort,
1858 short dstPort, int srcPortState, int dstPortState,
1859 ILinkDiscovery.LinkType linkType,
1860 EvAction actn, String reason) {
Ray Milkeya5450cc2014-04-17 14:31:30 -07001861 // CHECKSTYLE:ON
1862
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001863 if (evTopoLink == null) {
1864 evTopoLink = new EventHistoryTopologyLink();
1865 }
1866 evTopoLink.srcSwDpid = srcDpid;
1867 evTopoLink.dstSwDpid = dstDpid;
1868 evTopoLink.srcSwport = srcPort & 0xffff;
1869 evTopoLink.dstSwport = dstPort & 0xffff;
1870 evTopoLink.srcPortState = srcPortState;
1871 evTopoLink.dstPortState = dstPortState;
Ray Milkey269ffb92014-04-03 14:43:30 -07001872 evTopoLink.reason = reason;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001873 switch (linkType) {
1874 case DIRECT_LINK:
1875 evTopoLink.linkType = "DIRECT_LINK";
1876 break;
1877 case MULTIHOP_LINK:
1878 evTopoLink.linkType = "MULTIHOP_LINK";
1879 break;
1880 case TUNNEL:
1881 evTopoLink.linkType = "TUNNEL";
1882 break;
1883 case INVALID_LINK:
1884 default:
1885 evTopoLink.linkType = "Unknown";
1886 break;
1887 }
1888 evTopoLink = evHistTopologyLink.put(evTopoLink, actn);
1889 }
1890
1891 public void evHistTopoCluster(long dpid, long clusterIdOld,
1892 long clusterIdNew, EvAction action, String reason) {
1893 if (evTopoCluster == null) {
1894 evTopoCluster = new EventHistoryTopologyCluster();
1895 }
Ray Milkey269ffb92014-04-03 14:43:30 -07001896 evTopoCluster.dpid = dpid;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001897 evTopoCluster.clusterIdOld = clusterIdOld;
1898 evTopoCluster.clusterIdNew = clusterIdNew;
Ray Milkey269ffb92014-04-03 14:43:30 -07001899 evTopoCluster.reason = reason;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001900 evTopoCluster = evHistTopologyCluster.put(evTopoCluster, action);
1901 }
1902
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001903 @Override
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001904 public boolean isAutoPortFastFeature() {
1905 return autoPortFastFeature;
1906 }
1907
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001908 @Override
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001909 public void setAutoPortFastFeature(boolean autoPortFastFeature) {
1910 this.autoPortFastFeature = autoPortFastFeature;
1911 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001912}