blob: aeabb3acf779940a76c93bc862b1bb1200cf3c98 [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 LLDPTLV dpidTLV = new LLDPTLV().setType((byte) 127).setLength((short) dpidTLVValue.length).setValue(dpidTLVValue);
620
621 byte[] dpidArray = new byte[8];
622 ByteBuffer dpidBB = ByteBuffer.wrap(dpidArray);
623 ByteBuffer portBB = ByteBuffer.wrap(portId, 1, 2);
624
625 Long dpid = sw;
626 dpidBB.putLong(dpid);
627 // set the ethernet source mac to last 6 bytes of dpid
628 System.arraycopy(dpidArray, 2, ofpPort.getHardwareAddress(), 0, 6);
629 // set the chassis id's value to last 6 bytes of dpid
630 System.arraycopy(dpidArray, 2, chassisId, 1, 6);
631 // set the optional tlv to the full dpid
632 System.arraycopy(dpidArray, 0, dpidTLVValue, 4, 8);
633
634
635 // set the portId to the outgoing port
636 portBB.putShort(port);
637 if (log.isTraceEnabled()) {
638 log.trace("Sending LLDP out of interface: {}/{}",
Ray Milkey269ffb92014-04-03 14:43:30 -0700639 HexString.toHexString(sw), port);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800640 }
641
642 LLDP lldp = new LLDP();
643 lldp.setChassisId(new LLDPTLV().setType((byte) 1).setLength((short) chassisId.length).setValue(chassisId));
644 lldp.setPortId(new LLDPTLV().setType((byte) 2).setLength((short) portId.length).setValue(portId));
645 lldp.setTtl(new LLDPTLV().setType((byte) 3).setLength((short) ttlValue.length).setValue(ttlValue));
646 lldp.getOptionalTLVList().add(dpidTLV);
647
648 // Add the controller identifier to the TLV value.
649 lldp.getOptionalTLVList().add(controllerTLV);
650 if (isReverse) {
Ray Milkey5c9f2db2014-04-09 10:31:21 -0700651 lldp.getOptionalTLVList().add(REVERSE_TLV);
Ray Milkey269ffb92014-04-03 14:43:30 -0700652 } else {
Ray Milkey5c9f2db2014-04-09 10:31:21 -0700653 lldp.getOptionalTLVList().add(FORWARD_TLV);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800654 }
655
656 Ethernet ethernet;
657 if (isStandard) {
658 ethernet = new Ethernet()
Ray Milkey269ffb92014-04-03 14:43:30 -0700659 .setSourceMACAddress(ofpPort.getHardwareAddress())
660 .setDestinationMACAddress(LLDP_STANDARD_DST_MAC_STRING)
661 .setEtherType(Ethernet.TYPE_LLDP);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800662 ethernet.setPayload(lldp);
663 } else {
664 BSN bsn = new BSN(BSN.BSN_TYPE_BDDP);
665 bsn.setPayload(lldp);
666
667 ethernet = new Ethernet()
Ray Milkey269ffb92014-04-03 14:43:30 -0700668 .setSourceMACAddress(ofpPort.getHardwareAddress())
669 .setDestinationMACAddress(LLDP_BSN_DST_MAC_STRING)
670 .setEtherType(Ethernet.TYPE_BSN);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800671 ethernet.setPayload(bsn);
672 }
673
674
675 // serialize and wrap in a packet out
676 byte[] data = ethernet.serialize();
677 OFPacketOut po = (OFPacketOut) floodlightProvider.getOFMessageFactory().getMessage(OFType.PACKET_OUT);
678 po.setBufferId(OFPacketOut.BUFFER_ID_NONE);
679 po.setInPort(OFPort.OFPP_NONE);
680
681 // set actions
682 List<OFAction> actions = new ArrayList<OFAction>();
683 actions.add(new OFActionOutput(port, (short) 0));
684 po.setActions(actions);
685 po.setActionsLength((short) OFActionOutput.MINIMUM_LENGTH);
686
687 // set data
688 po.setLengthU(OFPacketOut.MINIMUM_LENGTH + po.getActionsLength() + data.length);
689 po.setPacketData(data);
690
691 // send
692 try {
693 iofSwitch.write(po, null);
694 iofSwitch.flush();
695 } catch (IOException e) {
Ray Milkey269ffb92014-04-03 14:43:30 -0700696 log.error("Failure sending LLDP out port " + port + " on switch " + iofSwitch.getStringId(), e);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800697 }
698
699 }
700
701 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -0700702 * Send LLDPs to all switch-ports.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800703 */
704 protected void discoverOnAllPorts() {
705 if (log.isTraceEnabled()) {
Yuta HIGUCHI5302ddf2014-01-06 12:53:35 -0800706 log.trace("Sending LLDP packets out of all the enabled ports on switch");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800707 }
708 Set<Long> switches = floodlightProvider.getSwitches().keySet();
709 // Send standard LLDPs
Ray Milkey269ffb92014-04-03 14:43:30 -0700710 for (long sw : switches) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800711 IOFSwitch iofSwitch = floodlightProvider.getSwitches().get(sw);
Ray Milkeyb29e6262014-04-09 16:02:14 -0700712 if (iofSwitch == null) {
713 continue;
714 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800715 if (iofSwitch.getEnabledPorts() != null) {
Ray Milkey269ffb92014-04-03 14:43:30 -0700716 for (OFPhysicalPort ofp : iofSwitch.getEnabledPorts()) {
Ray Milkeyb29e6262014-04-09 16:02:14 -0700717 if (isLinkDiscoverySuppressed(sw, ofp.getPortNumber())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800718 continue;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700719 }
720 if (autoPortFastFeature && isFastPort(sw, ofp.getPortNumber())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800721 continue;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700722 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800723
724 // sends forward LLDP only non-fastports.
725 sendDiscoveryMessage(sw, ofp.getPortNumber(), true, false);
726
727 // If the switch port is not alreayd in the maintenance
728 // queue, add it.
729 NodePortTuple npt = new NodePortTuple(sw, ofp.getPortNumber());
730 addToMaintenanceQueue(npt);
731 }
732 }
733 }
734 }
735
736 protected void setControllerTLV() {
737 //Setting the controllerTLVValue based on current nano time,
738 //controller's IP address, and the network interface object hash
739 //the corresponding IP address.
740
741 final int prime = 7867;
742 InetAddress localIPAddress = null;
743 NetworkInterface localInterface = null;
744
Ray Milkey269ffb92014-04-03 14:43:30 -0700745 byte[] controllerTLVValue = new byte[]{0, 0, 0, 0, 0, 0, 0, 0}; // 8 byte value.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800746 ByteBuffer bb = ByteBuffer.allocate(10);
747
Ray Milkey269ffb92014-04-03 14:43:30 -0700748 try {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800749 localIPAddress = java.net.InetAddress.getLocalHost();
750 localInterface = NetworkInterface.getByInetAddress(localIPAddress);
751 } catch (Exception e) {
752 e.printStackTrace();
753 }
754
755 long result = System.nanoTime();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700756 if (localIPAddress != null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800757 result = result * prime + IPv4.toIPv4Address(localIPAddress.getHostAddress());
Ray Milkeyb29e6262014-04-09 16:02:14 -0700758 }
759 if (localInterface != null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800760 result = result * prime + localInterface.hashCode();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700761 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800762 // set the first 4 bits to 0.
763 result = result & (0x0fffffffffffffffL);
764
765 bb.putLong(result);
766
767 bb.rewind();
768 bb.get(controllerTLVValue, 0, 8);
769
770 this.controllerTLV = new LLDPTLV().setType((byte) 0x0c).setLength((short) controllerTLVValue.length).setValue(controllerTLVValue);
771 }
772
773 @Override
774 public String getName() {
775 return "linkdiscovery";
776 }
777
778 @Override
779 public Command receive(IOFSwitch sw, OFMessage msg, FloodlightContext cntx) {
780 switch (msg.getType()) {
781 case PACKET_IN:
Pavlin Radoslavov0b88a262014-04-10 15:43:27 -0700782 if (msg instanceof OFPacketIn) {
783 return this.handlePacketIn(sw.getId(), (OFPacketIn) msg,
784 cntx);
785 }
786 break;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800787 case PORT_STATUS:
Pavlin Radoslavov0b88a262014-04-10 15:43:27 -0700788 if (msg instanceof OFPortStatus) {
789 return this.handlePortStatus(sw.getId(), (OFPortStatus) msg);
790 }
791 break;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800792 default:
793 break;
794 }
795 return Command.CONTINUE;
796 }
797
798 private Command handleLldp(LLDP lldp, long sw, OFPacketIn pi, boolean isStandard, FloodlightContext cntx) {
799 // If LLDP is suppressed on this port, ignore received packet as well
800 IOFSwitch iofSwitch = floodlightProvider.getSwitches().get(sw);
801 if (iofSwitch == null) {
802 return Command.STOP;
803 }
804
Ray Milkeyb29e6262014-04-09 16:02:14 -0700805 if (isLinkDiscoverySuppressed(sw, pi.getInPort())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800806 return Command.STOP;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700807 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800808
809 // If this is a malformed LLDP, or not from us, exit
Ray Milkeyb29e6262014-04-09 16:02:14 -0700810 if (lldp.getPortId() == null || lldp.getPortId().getLength() != 3) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800811 return Command.CONTINUE;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700812 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800813
814 long myId = ByteBuffer.wrap(controllerTLV.getValue()).getLong();
815 long otherId = 0;
816 boolean myLLDP = false;
817 Boolean isReverse = null;
818
819 ByteBuffer portBB = ByteBuffer.wrap(lldp.getPortId().getValue());
820 portBB.position(1);
821
822 Short remotePort = portBB.getShort();
823 IOFSwitch remoteSwitch = null;
824
825 // Verify this LLDP packet matches what we're looking for
826 for (LLDPTLV lldptlv : lldp.getOptionalTLVList()) {
827 if (lldptlv.getType() == 127 && lldptlv.getLength() == 12 &&
828 lldptlv.getValue()[0] == 0x0 && lldptlv.getValue()[1] == 0x26 &&
Ray Milkey269ffb92014-04-03 14:43:30 -0700829 lldptlv.getValue()[2] == (byte) 0xe1 && lldptlv.getValue()[3] == 0x0) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800830 ByteBuffer dpidBB = ByteBuffer.wrap(lldptlv.getValue());
831 remoteSwitch = floodlightProvider.getSwitches().get(dpidBB.getLong(4));
Umesh Krishnaswamyf962d642013-01-23 19:04:23 -0800832 if (remoteSwitch == null) {
Ray Milkey269ffb92014-04-03 14:43:30 -0700833 // Added by ONOS
834 // floodlight LLDP coming from a remote switch connected to a different controller
835 // add it to our cache of unconnected remote switches
836 remoteSwitch = addRemoteSwitch(dpidBB.getLong(4), remotePort);
Umesh Krishnaswamyf962d642013-01-23 19:04:23 -0800837 }
Ray Milkey269ffb92014-04-03 14:43:30 -0700838 } else if (lldptlv.getType() == 12 && lldptlv.getLength() == 8) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800839 otherId = ByteBuffer.wrap(lldptlv.getValue()).getLong();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700840 if (myId == otherId) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800841 myLLDP = true;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700842 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800843 } else if (lldptlv.getType() == TLV_DIRECTION_TYPE &&
844 lldptlv.getLength() == TLV_DIRECTION_LENGTH) {
Ray Milkeyb29e6262014-04-09 16:02:14 -0700845 if (lldptlv.getValue()[0] == TLV_DIRECTION_VALUE_FORWARD[0]) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800846 isReverse = false;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700847 } else if (lldptlv.getValue()[0] == TLV_DIRECTION_VALUE_REVERSE[0]) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800848 isReverse = true;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700849 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800850 }
851 }
852
Ray Milkey6c4f2fe2014-04-11 09:47:23 -0700853 if (!myLLDP) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800854 // This is not the LLDP sent by this controller.
855 // If the LLDP message has multicast bit set, then we need to broadcast
856 // the packet as a regular packet.
857 if (isStandard) {
858 if (log.isTraceEnabled()) {
859 log.trace("Getting standard LLDP from a different controller and quelching it.");
860 }
861 return Command.STOP;
Ray Milkey269ffb92014-04-03 14:43:30 -0700862 } else if (sw <= remoteSwitch.getId()) {
Teru Ub7246af2014-01-13 13:24:38 -0800863 if (log.isTraceEnabled()) {
864 log.trace("Getting BBDP from a different controller. myId {}: remoteId {}", myId, otherId);
865 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 -0700866 }
867 //XXX ONOS: Fix the BDDP broadcast issue
868 //return Command.CONTINUE;
869 return Command.STOP;
Teru Ub7246af2014-01-13 13:24:38 -0800870 }
871 /*
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800872 else if (myId < otherId) {
873 if (log.isTraceEnabled()) {
874 log.trace("Getting BDDP packets from a different controller" +
875 "and letting it go through normal processing chain.");
876 }
HIGUCHI Yuta30d03302013-06-14 13:47:36 -0700877 //XXX ONOS: Fix the BDDP broadcast issue
Jonathan Hart0b2c76a2013-02-27 17:09:33 -0800878 //return Command.CONTINUE;
879 return Command.STOP;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800880 }
Teru Ub7246af2014-01-13 13:24:38 -0800881 */
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800882 }
883
884
885 if (remoteSwitch == null) {
886 // Ignore LLDPs not generated by Floodlight, or from a switch that has recently
887 // disconnected, or from a switch connected to another Floodlight instance
888 if (log.isTraceEnabled()) {
889 log.trace("Received LLDP from remote switch not connected to the controller");
890 }
891 return Command.STOP;
892 }
893
894 if (!remoteSwitch.portEnabled(remotePort)) {
895 if (log.isTraceEnabled()) {
896 log.trace("Ignoring link with disabled source port: switch {} port {}", remoteSwitch, remotePort);
897 }
898 return Command.STOP;
899 }
900 if (suppressLinkDiscovery.contains(new NodePortTuple(remoteSwitch.getId(),
Ray Milkey269ffb92014-04-03 14:43:30 -0700901 remotePort))) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800902 if (log.isTraceEnabled()) {
903 log.trace("Ignoring link with suppressed src port: switch {} port {}",
Ray Milkey269ffb92014-04-03 14:43:30 -0700904 remoteSwitch, remotePort);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800905 }
906 return Command.STOP;
907 }
908 if (!iofSwitch.portEnabled(pi.getInPort())) {
909 if (log.isTraceEnabled()) {
910 log.trace("Ignoring link with disabled dest port: switch {} port {}", sw, pi.getInPort());
911 }
912 return Command.STOP;
913 }
914
915 OFPhysicalPort physicalPort = remoteSwitch.getPort(remotePort);
916 int srcPortState = (physicalPort != null) ? physicalPort.getState() : 0;
917 physicalPort = iofSwitch.getPort(pi.getInPort());
918 int dstPortState = (physicalPort != null) ? physicalPort.getState() : 0;
919
920 // Store the time of update to this link, and push it out to routingEngine
921 Link lt = new Link(remoteSwitch.getId(), remotePort, iofSwitch.getId(), pi.getInPort());
922
923
924 Long lastLldpTime = null;
925 Long lastBddpTime = null;
926
927 Long firstSeenTime = System.currentTimeMillis();
928
Ray Milkeyb29e6262014-04-09 16:02:14 -0700929 if (isStandard) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800930 lastLldpTime = System.currentTimeMillis();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700931 } else {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800932 lastBddpTime = System.currentTimeMillis();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700933 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800934
935 LinkInfo newLinkInfo =
936 new LinkInfo(firstSeenTime, lastLldpTime, lastBddpTime,
Ray Milkey269ffb92014-04-03 14:43:30 -0700937 srcPortState, dstPortState);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800938
939 addOrUpdateLink(lt, newLinkInfo);
940
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800941 // Check if reverse link exists.
942 // If it doesn't exist and if the forward link was seen
943 // first seen within a small interval, send probe on the
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800944 // reverse link.
945
946 newLinkInfo = links.get(lt);
Ray Milkey6c4f2fe2014-04-11 09:47:23 -0700947 if (newLinkInfo != null && isStandard && !isReverse) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800948 Link reverseLink = new Link(lt.getDst(), lt.getDstPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -0700949 lt.getSrc(), lt.getSrcPort());
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800950 LinkInfo reverseInfo = links.get(reverseLink);
951 if (reverseInfo == null) {
952 // the reverse link does not exist.
953 if (newLinkInfo.getFirstSeenTime() > System.currentTimeMillis() - LINK_TIMEOUT) {
954 this.sendDiscoveryMessage(lt.getDst(), lt.getDstPort(), isStandard, true);
955 }
956 }
957 }
958
959 // If the received packet is a BDDP packet, then create a reverse BDDP
960 // link as well.
961 if (!isStandard) {
962 Link reverseLink = new Link(lt.getDst(), lt.getDstPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -0700963 lt.getSrc(), lt.getSrcPort());
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800964
965 // srcPortState and dstPort state are reversed.
966 LinkInfo reverseInfo =
967 new LinkInfo(firstSeenTime, lastLldpTime, lastBddpTime,
Ray Milkey269ffb92014-04-03 14:43:30 -0700968 dstPortState, srcPortState);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800969
970 addOrUpdateLink(reverseLink, reverseInfo);
971 }
972
973 // Remove the node ports from the quarantine and maintenance queues.
974 NodePortTuple nptSrc = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
975 NodePortTuple nptDst = new NodePortTuple(lt.getDst(), lt.getDstPort());
976 removeFromQuarantineQueue(nptSrc);
977 removeFromMaintenanceQueue(nptSrc);
978 removeFromQuarantineQueue(nptDst);
979 removeFromMaintenanceQueue(nptDst);
980
981 // Consume this message
982 return Command.STOP;
983 }
984
985 protected Command handlePacketIn(long sw, OFPacketIn pi,
986 FloodlightContext cntx) {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -0800987 Ethernet eth =
988 IFloodlightProviderService.bcStore.get(cntx,
Ray Milkey269ffb92014-04-03 14:43:30 -0700989 IFloodlightProviderService.CONTEXT_PI_PAYLOAD);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800990
Ray Milkey269ffb92014-04-03 14:43:30 -0700991 if (eth.getEtherType() == Ethernet.TYPE_BSN) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800992 BSN bsn = (BSN) eth.getPayload();
Ray Milkeyb29e6262014-04-09 16:02:14 -0700993 if (bsn == null) {
994 return Command.STOP;
995 }
996 if (bsn.getPayload() == null) {
997 return Command.STOP;
998 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800999 // It could be a packet other than BSN LLDP, therefore
1000 // continue with the regular processing.
Ray Milkey6c4f2fe2014-04-11 09:47:23 -07001001 if (!(bsn.getPayload() instanceof LLDP)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001002 return Command.CONTINUE;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001003 }
Ubuntu9cbb4ca2013-02-07 17:19:59 +00001004 return handleLldp((LLDP) bsn.getPayload(), sw, pi, false, cntx);
Ray Milkey269ffb92014-04-03 14:43:30 -07001005 } else if (eth.getEtherType() == Ethernet.TYPE_LLDP) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001006 return handleLldp((LLDP) eth.getPayload(), sw, pi, true, cntx);
1007 } else if (eth.getEtherType() < 1500) {
1008 long destMac = eth.getDestinationMAC().toLong();
Ray Milkey269ffb92014-04-03 14:43:30 -07001009 if ((destMac & LINK_LOCAL_MASK) == LINK_LOCAL_VALUE) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001010 if (log.isTraceEnabled()) {
1011 log.trace("Ignoring packet addressed to 802.1D/Q " +
1012 "reserved address.");
1013 }
1014 return Command.STOP;
1015 }
1016 }
1017
1018 // If packet-in is from a quarantine port, stop processing.
1019 NodePortTuple npt = new NodePortTuple(sw, pi.getInPort());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001020 if (quarantineQueue.contains(npt)) {
1021 return Command.STOP;
1022 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001023
1024 return Command.CONTINUE;
1025 }
1026
1027 protected UpdateOperation getUpdateOperation(int srcPortState,
1028 int dstPortState) {
1029 boolean added =
1030 (((srcPortState &
Ray Milkey269ffb92014-04-03 14:43:30 -07001031 OFPortState.OFPPS_STP_MASK.getValue()) !=
1032 OFPortState.OFPPS_STP_BLOCK.getValue()) &&
1033 ((dstPortState &
1034 OFPortState.OFPPS_STP_MASK.getValue()) !=
1035 OFPortState.OFPPS_STP_BLOCK.getValue()));
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001036
Ray Milkeyb29e6262014-04-09 16:02:14 -07001037 if (added) {
1038 return UpdateOperation.LINK_UPDATED;
1039 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001040 return UpdateOperation.LINK_REMOVED;
1041 }
1042
1043
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001044 protected UpdateOperation getUpdateOperation(int srcPortState) {
1045 boolean portUp = ((srcPortState &
1046 OFPortState.OFPPS_STP_MASK.getValue()) !=
1047 OFPortState.OFPPS_STP_BLOCK.getValue());
1048
Ray Milkeyb29e6262014-04-09 16:02:14 -07001049 if (portUp) {
1050 return UpdateOperation.PORT_UP;
1051 } else {
1052 return UpdateOperation.PORT_DOWN;
1053 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001054 }
1055
1056 protected boolean addOrUpdateLink(Link lt, LinkInfo newInfo) {
1057
1058 NodePortTuple srcNpt, dstNpt;
1059 boolean linkChanged = false;
1060
1061 lock.writeLock().lock();
1062 try {
1063 // put the new info. if an old info exists, it will be returned.
1064 LinkInfo oldInfo = links.put(lt, newInfo);
1065 if (oldInfo != null &&
Ray Milkeyb29e6262014-04-09 16:02:14 -07001066 oldInfo.getFirstSeenTime() < newInfo.getFirstSeenTime()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001067 newInfo.setFirstSeenTime(oldInfo.getFirstSeenTime());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001068 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001069
1070 if (log.isTraceEnabled()) {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001071 log.trace("addOrUpdateLink: {} {}",
Ray Milkey269ffb92014-04-03 14:43:30 -07001072 lt,
1073 (newInfo.getMulticastValidTime() != null) ? "multicast" : "unicast");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001074 }
1075
1076 UpdateOperation updateOperation = null;
1077 linkChanged = false;
1078
1079 srcNpt = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
1080 dstNpt = new NodePortTuple(lt.getDst(), lt.getDstPort());
1081
1082 if (oldInfo == null) {
1083 // index it by switch source
Ray Milkeyb29e6262014-04-09 16:02:14 -07001084 if (!switchLinks.containsKey(lt.getSrc())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001085 switchLinks.put(lt.getSrc(), new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001086 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001087 switchLinks.get(lt.getSrc()).add(lt);
1088
1089 // index it by switch dest
Ray Milkeyb29e6262014-04-09 16:02:14 -07001090 if (!switchLinks.containsKey(lt.getDst())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001091 switchLinks.put(lt.getDst(), new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001092 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001093 switchLinks.get(lt.getDst()).add(lt);
1094
1095 // index both ends by switch:port
Ray Milkeyb29e6262014-04-09 16:02:14 -07001096 if (!portLinks.containsKey(srcNpt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001097 portLinks.put(srcNpt, new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001098 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001099 portLinks.get(srcNpt).add(lt);
1100
Ray Milkeyb29e6262014-04-09 16:02:14 -07001101 if (!portLinks.containsKey(dstNpt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001102 portLinks.put(dstNpt, new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001103 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001104 portLinks.get(dstNpt).add(lt);
1105
1106 // Add to portNOFLinks if the unicast valid time is null
Ray Milkeyb29e6262014-04-09 16:02:14 -07001107 if (newInfo.getUnicastValidTime() == null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001108 addLinkToBroadcastDomain(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001109 }
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001110
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001111 // ONOS: Distinguish added event separately from updated event
Pankaj Berdea41016d2013-06-10 21:18:18 -07001112 updateOperation = UpdateOperation.LINK_ADDED;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001113 linkChanged = true;
1114
1115 // Add to event history
1116 evHistTopoLink(lt.getSrc(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001117 lt.getDst(),
1118 lt.getSrcPort(),
1119 lt.getDstPort(),
1120 newInfo.getSrcPortState(), newInfo.getDstPortState(),
1121 getLinkType(lt, newInfo),
1122 EvAction.LINK_ADDED, "LLDP Recvd");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001123 } else {
1124 // Since the link info is already there, we need to
1125 // update the right fields.
1126 if (newInfo.getUnicastValidTime() == null) {
1127 // This is due to a multicast LLDP, so copy the old unicast
1128 // value.
1129 if (oldInfo.getUnicastValidTime() != null) {
1130 newInfo.setUnicastValidTime(oldInfo.getUnicastValidTime());
1131 }
1132 } else if (newInfo.getMulticastValidTime() == null) {
1133 // This is due to a unicast LLDP, so copy the old multicast
1134 // value.
1135 if (oldInfo.getMulticastValidTime() != null) {
1136 newInfo.setMulticastValidTime(oldInfo.getMulticastValidTime());
1137 }
1138 }
1139
1140 Long oldTime = oldInfo.getUnicastValidTime();
1141 Long newTime = newInfo.getUnicastValidTime();
1142 // the link has changed its state between openflow and non-openflow
1143 // if the unicastValidTimes are null or not null
1144 if (oldTime != null & newTime == null) {
1145 // openflow -> non-openflow transition
1146 // we need to add the link tuple to the portNOFLinks
1147 addLinkToBroadcastDomain(lt);
1148 linkChanged = true;
1149 } else if (oldTime == null & newTime != null) {
1150 // non-openflow -> openflow transition
1151 // we need to remove the link from the portNOFLinks
1152 removeLinkFromBroadcastDomain(lt);
1153 linkChanged = true;
1154 }
1155
1156 // Only update the port states if they've changed
1157 if (newInfo.getSrcPortState().intValue() !=
1158 oldInfo.getSrcPortState().intValue() ||
1159 newInfo.getDstPortState().intValue() !=
Ray Milkeyb29e6262014-04-09 16:02:14 -07001160 oldInfo.getDstPortState().intValue()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001161 linkChanged = true;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001162 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001163
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001164 if (linkChanged) {
1165 updateOperation = getUpdateOperation(newInfo.getSrcPortState(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001166 newInfo.getDstPortState());
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001167 if (log.isTraceEnabled()) {
1168 log.trace("Updated link {}", lt);
1169 }
1170 // Add to event history
1171 evHistTopoLink(lt.getSrc(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001172 lt.getDst(),
1173 lt.getSrcPort(),
1174 lt.getDstPort(),
1175 newInfo.getSrcPortState(), newInfo.getDstPortState(),
1176 getLinkType(lt, newInfo),
1177 EvAction.LINK_PORT_STATE_UPDATED,
1178 "LLDP Recvd");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001179 }
1180 }
1181
1182 if (linkChanged) {
1183 // find out if the link was added or removed here.
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001184 LinkUpdate update = new LinkUpdate(new LDUpdate(lt.getSrc(), lt.getSrcPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001185 lt.getDst(), lt.getDstPort(),
1186 getLinkType(lt, newInfo),
1187 updateOperation));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001188 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001189 }
1190 } finally {
1191 lock.writeLock().unlock();
1192 }
1193
1194 return linkChanged;
1195 }
1196
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001197 @Override
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001198 public Map<Long, Set<Link>> getSwitchLinks() {
1199 return this.switchLinks;
1200 }
1201
1202 /**
1203 * Removes links from memory and storage.
Ray Milkey269ffb92014-04-03 14:43:30 -07001204 *
Ray Milkey5df613b2014-04-15 10:50:56 -07001205 * @param linksToDelete The List of @LinkTuple to delete.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001206 */
Ray Milkey5df613b2014-04-15 10:50:56 -07001207 protected void deleteLinks(List<Link> linksToDelete, String reason) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001208 NodePortTuple srcNpt, dstNpt;
1209
1210 lock.writeLock().lock();
1211 try {
Ray Milkey5df613b2014-04-15 10:50:56 -07001212 for (Link lt : linksToDelete) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001213 srcNpt = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
Ray Milkey269ffb92014-04-03 14:43:30 -07001214 dstNpt = new NodePortTuple(lt.getDst(), lt.getDstPort());
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001215
1216 switchLinks.get(lt.getSrc()).remove(lt);
1217 switchLinks.get(lt.getDst()).remove(lt);
1218 if (switchLinks.containsKey(lt.getSrc()) &&
Ray Milkeyb29e6262014-04-09 16:02:14 -07001219 switchLinks.get(lt.getSrc()).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001220 this.switchLinks.remove(lt.getSrc());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001221 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001222 if (this.switchLinks.containsKey(lt.getDst()) &&
Ray Milkeyb29e6262014-04-09 16:02:14 -07001223 this.switchLinks.get(lt.getDst()).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001224 this.switchLinks.remove(lt.getDst());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001225 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001226
1227 if (this.portLinks.get(srcNpt) != null) {
1228 this.portLinks.get(srcNpt).remove(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001229 if (this.portLinks.get(srcNpt).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001230 this.portLinks.remove(srcNpt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001231 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001232 }
1233 if (this.portLinks.get(dstNpt) != null) {
1234 this.portLinks.get(dstNpt).remove(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001235 if (this.portLinks.get(dstNpt).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001236 this.portLinks.remove(dstNpt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001237 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001238 }
1239
1240 LinkInfo info = this.links.remove(lt);
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001241 LinkUpdate update = new LinkUpdate(new LDUpdate(lt.getSrc(), lt.getSrcPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001242 lt.getDst(), lt.getDstPort(),
1243 getLinkType(lt, info),
1244 UpdateOperation.LINK_REMOVED));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001245 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001246
1247 // Update Event History
1248 evHistTopoLink(lt.getSrc(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001249 lt.getDst(),
1250 lt.getSrcPort(),
1251 lt.getDstPort(),
1252 0, 0, // Port states
1253 ILinkDiscovery.LinkType.INVALID_LINK,
1254 EvAction.LINK_DELETED, reason);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001255
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001256 // TODO Whenever link is removed, it has to checked if
1257 // the switchports must be added to quarantine.
1258
1259 if (log.isTraceEnabled()) {
1260 log.trace("Deleted link {}", lt);
1261 }
1262 }
1263 } finally {
1264 lock.writeLock().unlock();
1265 }
1266 }
1267
1268 /**
1269 * Handles an OFPortStatus message from a switch. We will add or
1270 * delete LinkTupes as well re-compute the topology if needed.
Ray Milkey269ffb92014-04-03 14:43:30 -07001271 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001272 * @param sw The IOFSwitch that sent the port status message
1273 * @param ps The OFPortStatus message
1274 * @return The Command to continue or stop after we process this message
1275 */
1276 protected Command handlePortStatus(long sw, OFPortStatus ps) {
1277
1278 IOFSwitch iofSwitch = floodlightProvider.getSwitches().get(sw);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001279 if (iofSwitch == null) {
1280 return Command.CONTINUE;
1281 }
HIGUCHI Yutaa89b2842013-06-17 13:54:57 -07001282
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001283 // ONOS: If we do not control this switch, then we should not process its port status messages
Ray Milkeyb29e6262014-04-09 16:02:14 -07001284 if (!registryService.hasControl(iofSwitch.getId())) {
Ray Milkey269ffb92014-04-03 14:43:30 -07001285 return Command.CONTINUE;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001286 }
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001287
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001288 if (log.isTraceEnabled()) {
1289 log.trace("handlePortStatus: Switch {} port #{} reason {}; " +
1290 "config is {} state is {}",
Ray Milkey269ffb92014-04-03 14:43:30 -07001291 new Object[]{iofSwitch.getStringId(),
1292 ps.getDesc().getPortNumber(),
1293 ps.getReason(),
1294 ps.getDesc().getConfig(),
1295 ps.getDesc().getState()});
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001296 }
1297
1298 short port = ps.getDesc().getPortNumber();
1299 NodePortTuple npt = new NodePortTuple(sw, port);
Ray Milkey269ffb92014-04-03 14:43:30 -07001300 boolean linkDeleted = false;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001301 boolean linkInfoChanged = false;
1302
1303 lock.writeLock().lock();
1304 try {
1305 // if ps is a delete, or a modify where the port is down or
1306 // configured down
Ray Milkey269ffb92014-04-03 14:43:30 -07001307 if ((byte) OFPortReason.OFPPR_DELETE.ordinal() == ps.getReason() ||
1308 ((byte) OFPortReason.OFPPR_MODIFY.ordinal() ==
1309 ps.getReason() && !portEnabled(ps.getDesc()))) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001310 deleteLinksOnPort(npt, "Port Status Changed");
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001311 LinkUpdate update = new LinkUpdate(new LDUpdate(sw, port, UpdateOperation.PORT_DOWN));
1312 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001313 linkDeleted = true;
Ray Milkey269ffb92014-04-03 14:43:30 -07001314 } else if (ps.getReason() ==
1315 (byte) OFPortReason.OFPPR_MODIFY.ordinal()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001316 // If ps is a port modification and the port state has changed
1317 // that affects links in the topology
1318
1319 if (this.portLinks.containsKey(npt)) {
Ray Milkey269ffb92014-04-03 14:43:30 -07001320 for (Link lt : this.portLinks.get(npt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001321 LinkInfo linkInfo = links.get(lt);
Ray Milkey269ffb92014-04-03 14:43:30 -07001322 assert (linkInfo != null);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001323 Integer updatedSrcPortState = null;
1324 Integer updatedDstPortState = null;
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001325 if (lt.getSrc() == npt.getNodeId() &&
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001326 lt.getSrcPort() == npt.getPortId() &&
1327 (linkInfo.getSrcPortState() !=
Ray Milkey269ffb92014-04-03 14:43:30 -07001328 ps.getDesc().getState())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001329 updatedSrcPortState = ps.getDesc().getState();
1330 linkInfo.setSrcPortState(updatedSrcPortState);
1331 }
1332 if (lt.getDst() == npt.getNodeId() &&
1333 lt.getDstPort() == npt.getPortId() &&
1334 (linkInfo.getDstPortState() !=
Ray Milkey269ffb92014-04-03 14:43:30 -07001335 ps.getDesc().getState())) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001336 updatedDstPortState = ps.getDesc().getState();
1337 linkInfo.setDstPortState(updatedDstPortState);
1338 }
1339 if ((updatedSrcPortState != null) ||
1340 (updatedDstPortState != null)) {
1341 // The link is already known to link discovery
1342 // manager and the status has changed, therefore
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001343 // send an LinkUpdate.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001344 UpdateOperation operation =
1345 getUpdateOperation(linkInfo.getSrcPortState(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001346 linkInfo.getDstPortState());
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001347 LinkUpdate update = new LinkUpdate(new LDUpdate(lt.getSrc(), lt.getSrcPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001348 lt.getDst(), lt.getDstPort(),
1349 getLinkType(lt, linkInfo),
1350 operation));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001351 controller.publishUpdate(update);
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001352
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001353 linkInfoChanged = true;
1354 }
1355 }
1356 }
1357
1358 UpdateOperation operation =
1359 getUpdateOperation(ps.getDesc().getState());
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001360 LinkUpdate update = new LinkUpdate(new LDUpdate(sw, port, operation));
1361 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001362 }
1363
Ray Milkey269ffb92014-04-03 14:43:30 -07001364 if (!linkDeleted && !linkInfoChanged) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001365 if (log.isTraceEnabled()) {
Ray Milkey269ffb92014-04-03 14:43:30 -07001366 log.trace("handlePortStatus: Switch {} port #{} reason {};" +
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001367 " no links to update/remove",
Ray Milkey269ffb92014-04-03 14:43:30 -07001368 new Object[]{HexString.toHexString(sw),
1369 ps.getDesc().getPortNumber(),
1370 ps.getReason()});
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001371 }
1372 }
1373 } finally {
1374 lock.writeLock().unlock();
1375 }
1376
1377 if (!linkDeleted) {
1378 // Send LLDP right away when port state is changed for faster
1379 // cluster-merge. If it is a link delete then there is not need
1380 // to send the LLDPs right away and instead we wait for the LLDPs
1381 // to be sent on the timer as it is normally done
1382 // do it outside the write-lock
1383 // sendLLDPTask.reschedule(1000, TimeUnit.MILLISECONDS);
1384 processNewPort(npt.getNodeId(), npt.getPortId());
1385 }
1386 return Command.CONTINUE;
1387 }
1388
1389 /**
1390 * Process a new port.
1391 * If link discovery is disabled on the port, then do nothing.
1392 * If autoportfast feature is enabled and the port is a fast port, then
1393 * do nothing.
1394 * Otherwise, send LLDP message. Add the port to quarantine.
Ray Milkey269ffb92014-04-03 14:43:30 -07001395 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001396 * @param sw
1397 * @param p
1398 */
1399 private void processNewPort(long sw, short p) {
1400 if (isLinkDiscoverySuppressed(sw, p)) {
1401 // Do nothing as link discovery is suppressed.
Ray Milkey1aa71f82014-04-08 16:23:24 -07001402 return;
Ray Milkey269ffb92014-04-03 14:43:30 -07001403 } else if (autoPortFastFeature && isFastPort(sw, p)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001404 // Do nothing as the port is a fast port.
Ray Milkey1aa71f82014-04-08 16:23:24 -07001405 return;
Ray Milkey269ffb92014-04-03 14:43:30 -07001406 } else {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001407 NodePortTuple npt = new NodePortTuple(sw, p);
1408 discover(sw, p);
1409 // if it is not a fast port, add it to quarantine.
1410 if (!isFastPort(sw, p)) {
1411 addToQuarantineQueue(npt);
1412 } else {
1413 // Add to maintenance queue to ensure that BDDP packets
1414 // are sent out.
1415 addToMaintenanceQueue(npt);
1416 }
1417 }
1418 }
1419
1420 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -07001421 * We send out LLDP messages when a switch is added to discover the topology.
Ray Milkey269ffb92014-04-03 14:43:30 -07001422 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001423 * @param sw The IOFSwitch that connected to the controller
1424 */
1425 @Override
1426 public void addedSwitch(IOFSwitch sw) {
1427
1428 if (sw.getEnabledPorts() != null) {
1429 for (Short p : sw.getEnabledPortNumbers()) {
1430 processNewPort(sw.getId(), p);
1431 }
1432 }
1433 // Update event history
1434 evHistTopoSwitch(sw, EvAction.SWITCH_CONNECTED, "None");
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001435 LinkUpdate update = new LinkUpdate(new LDUpdate(sw.getId(), null,
Ray Milkey269ffb92014-04-03 14:43:30 -07001436 UpdateOperation.SWITCH_UPDATED));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001437 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001438 }
1439
1440 /**
1441 * When a switch disconnects we remove any links from our map and notify.
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001442 */
1443 @Override
1444 public void removedSwitch(IOFSwitch iofSwitch) {
1445 // Update event history
1446 long sw = iofSwitch.getId();
1447 evHistTopoSwitch(iofSwitch, EvAction.SWITCH_DISCONNECTED, "None");
1448 List<Link> eraseList = new ArrayList<Link>();
1449 lock.writeLock().lock();
1450 try {
1451 if (switchLinks.containsKey(sw)) {
1452 if (log.isTraceEnabled()) {
1453 log.trace("Handle switchRemoved. Switch {}; removing links {}",
Ray Milkey269ffb92014-04-03 14:43:30 -07001454 HexString.toHexString(sw), switchLinks.get(sw));
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001455 }
1456 // add all tuples with an endpoint on this switch to erase list
1457 eraseList.addAll(switchLinks.get(sw));
HIGUCHI Yutaa89b2842013-06-17 13:54:57 -07001458 deleteLinks(eraseList, "Switch Removed");
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001459
1460 // Send a switch removed update
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001461 LinkUpdate update = new LinkUpdate(new LDUpdate(sw, null, UpdateOperation.SWITCH_REMOVED));
1462 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001463 }
1464 } finally {
1465 lock.writeLock().unlock();
1466 }
1467 }
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001468
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001469 /**
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001470 * We don't react the port changed notifications here. we listen for
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001471 * OFPortStatus messages directly. Might consider using this notifier
1472 * instead
1473 */
1474 @Override
1475 public void switchPortChanged(Long switchId) {
1476 // no-op
1477 }
1478
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001479 /**
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001480 * Delete links incident on a given switch port.
Ray Milkey269ffb92014-04-03 14:43:30 -07001481 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001482 * @param npt
1483 * @param reason
1484 */
1485 protected void deleteLinksOnPort(NodePortTuple npt, String reason) {
1486 List<Link> eraseList = new ArrayList<Link>();
1487 if (this.portLinks.containsKey(npt)) {
1488 if (log.isTraceEnabled()) {
1489 log.trace("handlePortStatus: Switch {} port #{} " +
1490 "removing links {}",
Ray Milkey269ffb92014-04-03 14:43:30 -07001491 new Object[]{HexString.toHexString(npt.getNodeId()),
1492 npt.getPortId(),
1493 this.portLinks.get(npt)});
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001494 }
1495 eraseList.addAll(this.portLinks.get(npt));
1496 deleteLinks(eraseList, reason);
1497 }
1498 }
1499
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001500 /**
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001501 * Iterates through the list of links and deletes if the
1502 * last discovery message reception time exceeds timeout values.
1503 */
1504 protected void timeoutLinks() {
1505 List<Link> eraseList = new ArrayList<Link>();
1506 Long curTime = System.currentTimeMillis();
1507 boolean linkChanged = false;
1508
1509 // reentrant required here because deleteLink also write locks
1510 lock.writeLock().lock();
1511 try {
1512 Iterator<Entry<Link, LinkInfo>> it =
1513 this.links.entrySet().iterator();
1514 while (it.hasNext()) {
1515 Entry<Link, LinkInfo> entry = it.next();
1516 Link lt = entry.getKey();
1517 LinkInfo info = entry.getValue();
1518
1519 // Timeout the unicast and multicast LLDP valid times
1520 // independently.
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001521 if ((info.getUnicastValidTime() != null) &&
Pavlin Radoslavov8861ea52014-04-10 14:31:49 -07001522 (info.getUnicastValidTime() + (1000L * this.LINK_TIMEOUT) < curTime)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001523 info.setUnicastValidTime(null);
1524
Ray Milkeyb29e6262014-04-09 16:02:14 -07001525 if (info.getMulticastValidTime() != null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001526 addLinkToBroadcastDomain(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001527 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001528 // Note that even if mTime becomes null later on,
1529 // the link would be deleted, which would trigger updateClusters().
1530 linkChanged = true;
1531 }
Ray Milkey269ffb92014-04-03 14:43:30 -07001532 if ((info.getMulticastValidTime() != null) &&
Pavlin Radoslavov0002b2d2014-04-10 14:57:37 -07001533 (info.getMulticastValidTime() + (1000L * this.LINK_TIMEOUT) < curTime)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001534 info.setMulticastValidTime(null);
1535 // if uTime is not null, then link will remain as openflow
1536 // link. If uTime is null, it will be deleted. So, we
1537 // don't care about linkChanged flag here.
1538 removeLinkFromBroadcastDomain(lt);
1539 linkChanged = true;
1540 }
1541 // Add to the erase list only if the unicast
1542 // time is null.
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001543 if (info.getUnicastValidTime() == null &&
Ray Milkey269ffb92014-04-03 14:43:30 -07001544 info.getMulticastValidTime() == null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001545 eraseList.add(entry.getKey());
1546 } else if (linkChanged) {
1547 UpdateOperation operation;
1548 operation = getUpdateOperation(info.getSrcPortState(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001549 info.getDstPortState());
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001550 LinkUpdate update = new LinkUpdate(new LDUpdate(lt.getSrc(), lt.getSrcPort(),
Ray Milkey269ffb92014-04-03 14:43:30 -07001551 lt.getDst(), lt.getDstPort(),
1552 getLinkType(lt, info),
1553 operation));
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001554 controller.publishUpdate(update);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001555 }
1556 }
1557
1558 // if any link was deleted or any link was changed.
1559 if ((eraseList.size() > 0) || linkChanged) {
1560 deleteLinks(eraseList, "LLDP timeout");
1561 }
1562 } finally {
1563 lock.writeLock().unlock();
1564 }
1565 }
1566
1567 private boolean portEnabled(OFPhysicalPort port) {
Ray Milkeyb29e6262014-04-09 16:02:14 -07001568 if (port == null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001569 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001570 }
1571 if ((OFPortConfig.OFPPC_PORT_DOWN.getValue() & port.getConfig()) > 0) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001572 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001573 }
1574 if ((OFPortState.OFPPS_LINK_DOWN.getValue() & port.getState()) > 0) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001575 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -07001576 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001577 // Port STP state doesn't work with multiple VLANs, so ignore it for now
1578 // if ((port.getState() & OFPortState.OFPPS_STP_MASK.getValue()) == OFPortState.OFPPS_STP_BLOCK.getValue())
1579 // return false;
1580 return true;
1581 }
1582
1583 public Map<NodePortTuple, Set<Link>> getPortBroadcastDomainLinks() {
1584 return portBroadcastDomainLinks;
1585 }
1586
1587 @Override
1588 public Map<Link, LinkInfo> getLinks() {
1589 lock.readLock().lock();
1590 Map<Link, LinkInfo> result;
1591 try {
1592 result = new HashMap<Link, LinkInfo>(links);
1593 } finally {
1594 lock.readLock().unlock();
1595 }
1596 return result;
1597 }
1598
1599 protected void addLinkToBroadcastDomain(Link lt) {
1600
1601 NodePortTuple srcNpt, dstNpt;
1602 srcNpt = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
1603 dstNpt = new NodePortTuple(lt.getDst(), lt.getDstPort());
1604
Ray Milkeyb29e6262014-04-09 16:02:14 -07001605 if (!portBroadcastDomainLinks.containsKey(srcNpt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001606 portBroadcastDomainLinks.put(srcNpt, new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001607 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001608 portBroadcastDomainLinks.get(srcNpt).add(lt);
1609
Ray Milkeyb29e6262014-04-09 16:02:14 -07001610 if (!portBroadcastDomainLinks.containsKey(dstNpt)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001611 portBroadcastDomainLinks.put(dstNpt, new HashSet<Link>());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001612 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001613 portBroadcastDomainLinks.get(dstNpt).add(lt);
1614 }
1615
1616 protected void removeLinkFromBroadcastDomain(Link lt) {
1617
1618 NodePortTuple srcNpt, dstNpt;
1619 srcNpt = new NodePortTuple(lt.getSrc(), lt.getSrcPort());
1620 dstNpt = new NodePortTuple(lt.getDst(), lt.getDstPort());
1621
1622 if (portBroadcastDomainLinks.containsKey(srcNpt)) {
1623 portBroadcastDomainLinks.get(srcNpt).remove(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001624 if (portBroadcastDomainLinks.get(srcNpt).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001625 portBroadcastDomainLinks.remove(srcNpt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001626 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001627 }
1628
1629 if (portBroadcastDomainLinks.containsKey(dstNpt)) {
1630 portBroadcastDomainLinks.get(dstNpt).remove(lt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001631 if (portBroadcastDomainLinks.get(dstNpt).isEmpty()) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001632 portBroadcastDomainLinks.remove(dstNpt);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001633 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001634 }
1635 }
1636
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001637 @Override
1638 public void addListener(ILinkDiscoveryListener listener) {
1639 linkDiscoveryAware.add(listener);
1640 }
1641
1642 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -07001643 * Register a link discovery aware component.
Ray Milkey269ffb92014-04-03 14:43:30 -07001644 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001645 * @param linkDiscoveryAwareComponent
1646 */
1647 public void addLinkDiscoveryAware(ILinkDiscoveryListener linkDiscoveryAwareComponent) {
1648 // TODO make this a copy on write set or lock it somehow
1649 this.linkDiscoveryAware.add(linkDiscoveryAwareComponent);
1650 }
1651
1652 /**
Ray Milkeyb41100a2014-04-10 10:42:15 -07001653 * Deregister a link discovery aware component.
Ray Milkey269ffb92014-04-03 14:43:30 -07001654 *
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001655 * @param linkDiscoveryAwareComponent
1656 */
1657 public void removeLinkDiscoveryAware(ILinkDiscoveryListener linkDiscoveryAwareComponent) {
1658 // TODO make this a copy on write set or lock it somehow
1659 this.linkDiscoveryAware.remove(linkDiscoveryAwareComponent);
1660 }
1661
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001662 @Override
1663 public boolean isCallbackOrderingPrereq(OFType type, String name) {
1664 return false;
1665 }
1666
1667 @Override
1668 public boolean isCallbackOrderingPostreq(OFType type, String name) {
1669 return false;
1670 }
1671
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001672 // IFloodlightModule classes
1673
1674 @Override
1675 public Collection<Class<? extends IFloodlightService>> getModuleServices() {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001676 Collection<Class<? extends IFloodlightService>> l =
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001677 new ArrayList<Class<? extends IFloodlightService>>();
1678 l.add(ILinkDiscoveryService.class);
1679 //l.add(ITopologyService.class);
1680 return l;
1681 }
1682
1683 @Override
1684 public Map<Class<? extends IFloodlightService>, IFloodlightService>
1685 getServiceImpls() {
1686 Map<Class<? extends IFloodlightService>,
Ray Milkey269ffb92014-04-03 14:43:30 -07001687 IFloodlightService> m =
1688 new HashMap<Class<? extends IFloodlightService>,
1689 IFloodlightService>();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001690 // We are the class that implements the service
1691 m.put(ILinkDiscoveryService.class, this);
1692 return m;
1693 }
1694
1695 @Override
1696 public Collection<Class<? extends IFloodlightService>> getModuleDependencies() {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001697 Collection<Class<? extends IFloodlightService>> l =
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001698 new ArrayList<Class<? extends IFloodlightService>>();
1699 l.add(IFloodlightProviderService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001700 l.add(IThreadPoolService.class);
1701 l.add(IRestApiService.class);
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001702 // Added by ONOS
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -07001703 l.add(IControllerRegistryService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001704 return l;
1705 }
1706
1707 @Override
1708 public void init(FloodlightModuleContext context)
1709 throws FloodlightModuleException {
1710 floodlightProvider = context.getServiceImpl(IFloodlightProviderService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001711 threadPool = context.getServiceImpl(IThreadPoolService.class);
1712 restApi = context.getServiceImpl(IRestApiService.class);
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001713 // Added by ONOS
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -07001714 registryService = context.getServiceImpl(IControllerRegistryService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001715
1716 // Set the autoportfast feature to false.
1717 this.autoPortFastFeature = false;
1718
1719 // We create this here because there is no ordering guarantee
1720 this.linkDiscoveryAware = new ArrayList<ILinkDiscoveryListener>();
1721 this.lock = new ReentrantReadWriteLock();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001722 this.links = new HashMap<Link, LinkInfo>();
1723 this.portLinks = new HashMap<NodePortTuple, Set<Link>>();
1724 this.suppressLinkDiscovery =
1725 Collections.synchronizedSet(new HashSet<NodePortTuple>());
1726 this.portBroadcastDomainLinks = new HashMap<NodePortTuple, Set<Link>>();
1727 this.switchLinks = new HashMap<Long, Set<Link>>();
1728 this.quarantineQueue = new LinkedBlockingQueue<NodePortTuple>();
1729 this.maintenanceQueue = new LinkedBlockingQueue<NodePortTuple>();
HIGUCHI Yuta30d03302013-06-14 13:47:36 -07001730 // Added by ONOS
HIGUCHI Yuta7677a6f2013-06-14 14:13:35 -07001731 this.remoteSwitches = new HashMap<Long, IOnosRemoteSwitch>();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001732
1733 this.evHistTopologySwitch =
1734 new EventHistory<EventHistoryTopologySwitch>("Topology: Switch");
1735 this.evHistTopologyLink =
1736 new EventHistory<EventHistoryTopologyLink>("Topology: Link");
1737 this.evHistTopologyCluster =
1738 new EventHistory<EventHistoryTopologyCluster>("Topology: Cluster");
1739 }
1740
1741 @Override
1742 @LogMessageDocs({
Ray Milkey269ffb92014-04-03 14:43:30 -07001743 @LogMessageDoc(level = "ERROR",
1744 message = "No storage source found.",
1745 explanation = "Storage source was not initialized; cannot initialize " +
1746 "link discovery.",
1747 recommendation = LogMessageDoc.REPORT_CONTROLLER_BUG),
1748 @LogMessageDoc(level = "ERROR",
1749 message = "Error in installing listener for " +
1750 "switch config table {table}",
1751 explanation = "Failed to install storage notification for the " +
1752 "switch config table",
1753 recommendation = LogMessageDoc.REPORT_CONTROLLER_BUG),
1754 @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 = "Exception in LLDP send timer.",
1761 explanation = "An unknown error occured while sending LLDP " +
1762 "messages to switches.",
1763 recommendation = LogMessageDoc.CHECK_SWITCH)
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001764 })
1765 public void startUp(FloodlightModuleContext context) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001766 ScheduledExecutorService ses = threadPool.getScheduledExecutor();
Pankaj Berdedc73bb12013-08-14 13:46:38 -07001767 controller =
1768 context.getServiceImpl(IFloodlightProviderService.class);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001769
1770 // To be started by the first switch connection
1771 discoveryTask = new SingletonTask(ses, new Runnable() {
1772 @Override
1773 public void run() {
1774 try {
1775 discoverLinks();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001776 } catch (Exception e) {
1777 log.error("Exception in LLDP send timer.", e);
1778 } finally {
1779 if (!shuttingDown) {
Ray Milkey269ffb92014-04-03 14:43:30 -07001780 // Always reschedule link discovery if we're not
1781 // shutting down (no chance of SLAVE role now)
Jonathan Hartec4f14e2013-12-12 10:46:38 -08001782 log.trace("Rescheduling discovery task");
1783 discoveryTask.reschedule(DISCOVERY_TASK_INTERVAL,
Ray Milkey269ffb92014-04-03 14:43:30 -07001784 TimeUnit.SECONDS);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001785 }
1786 }
1787 }
1788 });
1789
Jonathan Hartec4f14e2013-12-12 10:46:38 -08001790 // Always reschedule link discovery as we are never in SLAVE role now
1791 discoveryTask.reschedule(DISCOVERY_TASK_INTERVAL, TimeUnit.SECONDS);
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001792
1793 // Setup the BDDP task. It is invoked whenever switch port tuples
1794 // are added to the quarantine list.
1795 bddpTask = new SingletonTask(ses, new QuarantineWorker());
1796 bddpTask.reschedule(BDDP_TASK_INTERVAL, TimeUnit.MILLISECONDS);
1797
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001798
1799 // Register for the OpenFlow messages we want to receive
1800 floodlightProvider.addOFMessageListener(OFType.PACKET_IN, this);
1801 floodlightProvider.addOFMessageListener(OFType.PORT_STATUS, this);
1802 // Register for switch updates
1803 floodlightProvider.addOFSwitchListener(this);
Ray Milkeyb29e6262014-04-09 16:02:14 -07001804 if (restApi != null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001805 restApi.addRestletRoutable(new LinkDiscoveryWebRoutable());
Ray Milkeyb29e6262014-04-09 16:02:14 -07001806 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001807 setControllerTLV();
1808 }
1809
1810 // ****************************************************
1811 // Topology Manager's Event History members and methods
1812 // ****************************************************
1813
1814 // Topology Manager event history
Ray Milkey269ffb92014-04-03 14:43:30 -07001815 public EventHistory<EventHistoryTopologySwitch> evHistTopologySwitch;
1816 public EventHistory<EventHistoryTopologyLink> evHistTopologyLink;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001817 public EventHistory<EventHistoryTopologyCluster> evHistTopologyCluster;
Ray Milkey269ffb92014-04-03 14:43:30 -07001818 public EventHistoryTopologySwitch evTopoSwitch;
1819 public EventHistoryTopologyLink evTopoLink;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001820 public EventHistoryTopologyCluster evTopoCluster;
1821
1822 // Switch Added/Deleted
1823 private void evHistTopoSwitch(IOFSwitch sw, EvAction actn, String reason) {
1824 if (evTopoSwitch == null) {
1825 evTopoSwitch = new EventHistoryTopologySwitch();
1826 }
Ray Milkey269ffb92014-04-03 14:43:30 -07001827 evTopoSwitch.dpid = sw.getId();
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001828 if ((sw.getChannel() != null) &&
1829 (SocketAddress.class.isInstance(
Ray Milkey269ffb92014-04-03 14:43:30 -07001830 sw.getChannel().getRemoteAddress()))) {
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001831 evTopoSwitch.ipv4Addr =
Ray Milkey269ffb92014-04-03 14:43:30 -07001832 IPv4.toIPv4Address(((InetSocketAddress) (sw.getChannel().
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001833 getRemoteAddress())).getAddress().getAddress());
Ray Milkey269ffb92014-04-03 14:43:30 -07001834 evTopoSwitch.l4Port =
1835 ((InetSocketAddress) (sw.getChannel().
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001836 getRemoteAddress())).getPort();
1837 } else {
1838 evTopoSwitch.ipv4Addr = 0;
1839 evTopoSwitch.l4Port = 0;
1840 }
Ray Milkey269ffb92014-04-03 14:43:30 -07001841 evTopoSwitch.reason = reason;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001842 evTopoSwitch = evHistTopologySwitch.put(evTopoSwitch, actn);
1843 }
1844
1845 private void evHistTopoLink(long srcDpid, long dstDpid, short srcPort,
1846 short dstPort, int srcPortState, int dstPortState,
1847 ILinkDiscovery.LinkType linkType,
1848 EvAction actn, String reason) {
1849 if (evTopoLink == null) {
1850 evTopoLink = new EventHistoryTopologyLink();
1851 }
1852 evTopoLink.srcSwDpid = srcDpid;
1853 evTopoLink.dstSwDpid = dstDpid;
1854 evTopoLink.srcSwport = srcPort & 0xffff;
1855 evTopoLink.dstSwport = dstPort & 0xffff;
1856 evTopoLink.srcPortState = srcPortState;
1857 evTopoLink.dstPortState = dstPortState;
Ray Milkey269ffb92014-04-03 14:43:30 -07001858 evTopoLink.reason = reason;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001859 switch (linkType) {
1860 case DIRECT_LINK:
1861 evTopoLink.linkType = "DIRECT_LINK";
1862 break;
1863 case MULTIHOP_LINK:
1864 evTopoLink.linkType = "MULTIHOP_LINK";
1865 break;
1866 case TUNNEL:
1867 evTopoLink.linkType = "TUNNEL";
1868 break;
1869 case INVALID_LINK:
1870 default:
1871 evTopoLink.linkType = "Unknown";
1872 break;
1873 }
1874 evTopoLink = evHistTopologyLink.put(evTopoLink, actn);
1875 }
1876
1877 public void evHistTopoCluster(long dpid, long clusterIdOld,
1878 long clusterIdNew, EvAction action, String reason) {
1879 if (evTopoCluster == null) {
1880 evTopoCluster = new EventHistoryTopologyCluster();
1881 }
Ray Milkey269ffb92014-04-03 14:43:30 -07001882 evTopoCluster.dpid = dpid;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001883 evTopoCluster.clusterIdOld = clusterIdOld;
1884 evTopoCluster.clusterIdNew = clusterIdNew;
Ray Milkey269ffb92014-04-03 14:43:30 -07001885 evTopoCluster.reason = reason;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001886 evTopoCluster = evHistTopologyCluster.put(evTopoCluster, action);
1887 }
1888
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001889 @Override
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001890 public boolean isAutoPortFastFeature() {
1891 return autoPortFastFeature;
1892 }
1893
Yuta HIGUCHIe8813402014-01-08 13:36:50 -08001894 @Override
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001895 public void setAutoPortFastFeature(boolean autoPortFastFeature) {
1896 this.autoPortFastFeature = autoPortFastFeature;
1897 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001898}