Gracefully stop HT threads when the bundle is being stopped (cache terminated exception)
[controller.git] / opendaylight / hosttracker / implementation / src / main / java / org / opendaylight / controller / hosttracker / internal / HostTracker.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.hosttracker.internal;
10
11 import java.net.InetAddress;
12 import java.net.UnknownHostException;
13 import java.util.ArrayList;
14 import java.util.Collections;
15 import java.util.Dictionary;
16 import java.util.EnumSet;
17 import java.util.HashSet;
18 import java.util.List;
19 import java.util.Map;
20 import java.util.Map.Entry;
21 import java.util.Set;
22 import java.util.Timer;
23 import java.util.TimerTask;
24 import java.util.concurrent.Callable;
25 import java.util.concurrent.ConcurrentHashMap;
26 import java.util.concurrent.ConcurrentMap;
27 import java.util.concurrent.ExecutorService;
28 import java.util.concurrent.Executors;
29 import java.util.concurrent.Future;
30
31 import org.apache.felix.dm.Component;
32 import org.eclipse.osgi.framework.console.CommandInterpreter;
33 import org.eclipse.osgi.framework.console.CommandProvider;
34 import org.opendaylight.controller.clustering.services.CacheConfigException;
35 import org.opendaylight.controller.clustering.services.CacheExistException;
36 import org.opendaylight.controller.clustering.services.ICacheUpdateAware;
37 import org.opendaylight.controller.clustering.services.IClusterContainerServices;
38 import org.opendaylight.controller.clustering.services.IClusterServices;
39 import org.opendaylight.controller.hosttracker.IfHostListener;
40 import org.opendaylight.controller.hosttracker.IfIptoHost;
41 import org.opendaylight.controller.hosttracker.IfNewHostNotify;
42 import org.opendaylight.controller.hosttracker.hostAware.HostNodeConnector;
43 import org.opendaylight.controller.hosttracker.hostAware.IHostFinder;
44 import org.opendaylight.controller.sal.core.ConstructionException;
45 import org.opendaylight.controller.sal.core.Edge;
46 import org.opendaylight.controller.sal.core.Host;
47 import org.opendaylight.controller.sal.core.Node;
48 import org.opendaylight.controller.sal.core.NodeConnector;
49 import org.opendaylight.controller.sal.core.Property;
50 import org.opendaylight.controller.sal.core.State;
51 import org.opendaylight.controller.sal.core.Tier;
52 import org.opendaylight.controller.sal.core.UpdateType;
53 import org.opendaylight.controller.sal.packet.address.DataLinkAddress;
54 import org.opendaylight.controller.sal.packet.address.EthernetAddress;
55 import org.opendaylight.controller.sal.topology.TopoEdgeUpdate;
56 import org.opendaylight.controller.sal.utils.GlobalConstants;
57 import org.opendaylight.controller.sal.utils.HexEncode;
58 import org.opendaylight.controller.sal.utils.NetUtils;
59 import org.opendaylight.controller.sal.utils.NodeCreator;
60 import org.opendaylight.controller.sal.utils.Status;
61 import org.opendaylight.controller.sal.utils.StatusCode;
62 import org.opendaylight.controller.switchmanager.IInventoryListener;
63 import org.opendaylight.controller.switchmanager.ISwitchManager;
64 import org.opendaylight.controller.switchmanager.ISwitchManagerAware;
65 import org.opendaylight.controller.switchmanager.Subnet;
66 import org.opendaylight.controller.topologymanager.ITopologyManager;
67 import org.opendaylight.controller.topologymanager.ITopologyManagerAware;
68 import org.osgi.framework.BundleContext;
69 import org.osgi.framework.FrameworkUtil;
70 import org.slf4j.Logger;
71 import org.slf4j.LoggerFactory;
72
73 /**
74  * @file HostTracker.java This class tracks the location of IP Hosts as to which
75  *       Switch, Port, VLAN, they are connected to, as well as their MAC
76  *       address. This is done dynamically as well as statically. The dynamic
77  *       mechanism consists of listening to ARP messages as well sending ARP
78  *       requests. Static mechanism consists of Northbound APIs to add or remove
79  *       the hosts from the local database. ARP aging is also implemented to age
80  *       out dynamically learned hosts. Interface methods are provided for other
81  *       applications to 1. Query the local database for a single host 2. Get a
82  *       list of all hosts 3. Get notification if a host is learned/added or
83  *       removed the database
84  */
85
86 public class HostTracker implements IfIptoHost, IfHostListener, ISwitchManagerAware, IInventoryListener,
87         ITopologyManagerAware, ICacheUpdateAware<InetAddress, HostNodeConnector>, CommandProvider {
88     static final String ACTIVE_HOST_CACHE = "hosttracker.ActiveHosts";
89     static final String INACTIVE_HOST_CACHE = "hosttracker.InactiveHosts";
90     private static final Logger logger = LoggerFactory.getLogger(HostTracker.class);
91     protected IHostFinder hostFinder;
92     protected ConcurrentMap<InetAddress, HostNodeConnector> hostsDB;
93     /*
94      * Following is a list of hosts which have been requested by NB APIs to be
95      * added, but either the switch or the port is not sup, so they will be
96      * added here until both come up
97      */
98     private ConcurrentMap<NodeConnector, HostNodeConnector> inactiveStaticHosts;
99     private final Set<IfNewHostNotify> newHostNotify = Collections.synchronizedSet(new HashSet<IfNewHostNotify>());
100
101     private ITopologyManager topologyManager;
102     protected IClusterContainerServices clusterContainerService = null;
103     protected ISwitchManager switchManager = null;
104     private Timer timer;
105     private Timer arpRefreshTimer;
106     private String containerName = null;
107     private ExecutorService executor;
108     protected boolean stopping;
109     private static class ARPPending {
110         protected InetAddress hostIP;
111         protected short sent_count;
112         protected HostTrackerCallable hostTrackerCallable;
113
114         public InetAddress getHostIP() {
115             return hostIP;
116         }
117
118         public short getSent_count() {
119             return sent_count;
120         }
121
122         public HostTrackerCallable getHostTrackerCallable() {
123             return hostTrackerCallable;
124         }
125
126         public void setHostIP(InetAddress networkAddr) {
127             this.hostIP = networkAddr;
128         }
129
130         public void setSent_count(short count) {
131             this.sent_count = count;
132         }
133
134         public void setHostTrackerCallable(HostTrackerCallable callable) {
135             hostTrackerCallable = callable;
136         }
137     }
138
139     // This list contains the hosts for which ARP requests are being sent
140     // periodically
141     ConcurrentMap<InetAddress, ARPPending> ARPPendingList;
142     /*
143      * This list below contains the hosts which were initially in ARPPendingList
144      * above, but ARP response didn't come from there hosts after multiple
145      * attempts over 8 seconds. The assumption is that the response didn't come
146      * back due to one of the following possibilities: 1. The L3 interface
147      * wasn't created for this host in the controller. This would cause
148      * arphandler not to know where to send the ARP 2. The host facing port is
149      * down 3. The IP host doesn't exist or is not responding to ARP requests
150      *
151      * Conditions 1 and 2 above can be recovered if ARP is sent when the
152      * relevant L3 interface is added or the port facing host comes up. Whenever
153      * L3 interface is added or host facing port comes up, ARP will be sent to
154      * hosts in this list.
155      *
156      * We can't recover from condition 3 above
157      */
158     ConcurrentMap<InetAddress, ARPPending> failedARPReqList;
159
160     public HostTracker() {
161     }
162
163     private void startUp() {
164         nonClusterObjectCreate();
165         allocateCache();
166         retrieveCache();
167         stopping = false;
168
169         timer = new Timer();
170         timer.schedule(new OutStandingARPHandler(), 4000, 4000);
171         executor = Executors.newFixedThreadPool(2);
172         /* ARP Refresh Timer to go off every 5 seconds to implement ARP aging */
173         arpRefreshTimer = new Timer();
174         arpRefreshTimer.schedule(new ARPRefreshHandler(), 5000, 5000);
175         logger.debug("startUp: Caches created, timers started");
176     }
177
178     private void allocateCache() {
179         if (this.clusterContainerService == null) {
180             logger.error("un-initialized clusterContainerService, can't create cache");
181             return;
182         }
183         logger.debug("Creating Cache for HostTracker");
184         try {
185             this.clusterContainerService.createCache(ACTIVE_HOST_CACHE,
186                     EnumSet.of(IClusterServices.cacheMode.TRANSACTIONAL));
187             this.clusterContainerService.createCache(INACTIVE_HOST_CACHE,
188                     EnumSet.of(IClusterServices.cacheMode.TRANSACTIONAL));
189         } catch (CacheConfigException cce) {
190             logger.error("Cache couldn't be created for HostTracker -  check cache mode");
191         } catch (CacheExistException cce) {
192             logger.error("Cache for HostTracker already exists, destroy and recreate");
193         }
194         logger.debug("Cache successfully created for HostTracker");
195     }
196
197     @SuppressWarnings({ "unchecked" })
198     private void retrieveCache() {
199         if (this.clusterContainerService == null) {
200             logger.error("un-initialized clusterContainerService, can't retrieve cache");
201             return;
202         }
203         logger.debug("Retrieving cache for HostTrackerAH");
204         hostsDB = (ConcurrentMap<InetAddress, HostNodeConnector>) this.clusterContainerService
205                 .getCache(ACTIVE_HOST_CACHE);
206         if (hostsDB == null) {
207             logger.error("Cache couldn't be retrieved for HostTracker");
208         }
209         logger.debug("Cache was successfully retrieved for HostTracker");
210         logger.debug("Retrieving cache for HostTrackerIH");
211         inactiveStaticHosts = (ConcurrentMap<NodeConnector, HostNodeConnector>) this.clusterContainerService
212                 .getCache(INACTIVE_HOST_CACHE);
213         if (inactiveStaticHosts == null) {
214             logger.error("Cache couldn't be retrieved for HostTrackerIH");
215         }
216         logger.debug("Cache was successfully retrieved for HostTrackerIH");
217     }
218
219     public void nonClusterObjectCreate() {
220         hostsDB = new ConcurrentHashMap<InetAddress, HostNodeConnector>();
221         inactiveStaticHosts = new ConcurrentHashMap<NodeConnector, HostNodeConnector>();
222         ARPPendingList = new ConcurrentHashMap<InetAddress, ARPPending>();
223         failedARPReqList = new ConcurrentHashMap<InetAddress, ARPPending>();
224     }
225
226     public void shutDown() {
227     }
228
229     public void setnewHostNotify(IfNewHostNotify obj) {
230         this.newHostNotify.add(obj);
231     }
232
233     public void unsetnewHostNotify(IfNewHostNotify obj) {
234         this.newHostNotify.remove(obj);
235     }
236
237     public void setArpHandler(IHostFinder hostFinder) {
238         this.hostFinder = hostFinder;
239     }
240
241     public void unsetArpHandler(IHostFinder hostFinder) {
242         if (this.hostFinder == hostFinder) {
243             logger.debug("Arp Handler Service removed!");
244             this.hostFinder = null;
245         }
246     }
247
248     public void setTopologyManager(ITopologyManager s) {
249         this.topologyManager = s;
250     }
251
252     public void unsetTopologyManager(ITopologyManager s) {
253         if (this.topologyManager == s) {
254             logger.debug("Topology Manager Service removed!");
255             this.topologyManager = null;
256         }
257     }
258
259     private boolean hostExists(HostNodeConnector host) {
260         HostNodeConnector lhost = hostsDB.get(host.getNetworkAddress());
261         return host.equals(lhost);
262     }
263
264     private HostNodeConnector getHostFromOnActiveDB(InetAddress networkAddress) {
265         return hostsDB.get(networkAddress);
266     }
267
268     private Entry<NodeConnector, HostNodeConnector> getHostFromInactiveDB(InetAddress networkAddress) {
269         for (Entry<NodeConnector, HostNodeConnector> entry : inactiveStaticHosts.entrySet()) {
270             if (entry.getValue().equalsByIP(networkAddress)) {
271                 logger.debug("getHostFromInactiveDB(): Inactive Host found for IP:{} ", networkAddress.getHostAddress());
272                 return entry;
273             }
274         }
275         logger.debug("getHostFromInactiveDB() Inactive Host Not found for IP: {}", networkAddress.getHostAddress());
276         return null;
277     }
278
279     private void removeHostFromInactiveDB(InetAddress networkAddress) {
280         NodeConnector nodeConnector = null;
281         for (Entry<NodeConnector, HostNodeConnector> entry : inactiveStaticHosts.entrySet()) {
282             if (entry.getValue().equalsByIP(networkAddress)) {
283                 nodeConnector = entry.getKey();
284                 break;
285             }
286         }
287         if (nodeConnector != null) {
288             inactiveStaticHosts.remove(nodeConnector);
289             logger.debug("removeHostFromInactiveDB(): Host Removed for IP: {}", networkAddress.getHostAddress());
290             return;
291         }
292         logger.debug("removeHostFromInactiveDB(): Host Not found for IP: {}", networkAddress.getHostAddress());
293     }
294
295     protected boolean hostMoved(HostNodeConnector host) {
296         if (hostQuery(host.getNetworkAddress()) != null) {
297             return true;
298         }
299         return false;
300     }
301
302     @Override
303     public HostNodeConnector hostQuery(InetAddress networkAddress) {
304         return hostsDB.get(networkAddress);
305     }
306
307     @Override
308     public Future<HostNodeConnector> discoverHost(InetAddress networkAddress) {
309         if (executor == null) {
310             logger.error("discoverHost: Null executor");
311             return null;
312         }
313         Callable<HostNodeConnector> worker = new HostTrackerCallable(this, networkAddress);
314         Future<HostNodeConnector> submit = executor.submit(worker);
315         return submit;
316     }
317
318     @Override
319     public HostNodeConnector hostFind(InetAddress networkAddress) {
320         /*
321          * Sometimes at boot with containers configured in the startup we hit
322          * this path (from TIF) when hostFinder has not been set yet Caller
323          * already handles the null return
324          */
325
326         if (hostFinder == null) {
327             logger.debug("Exiting hostFind, null hostFinder");
328             return null;
329         }
330
331         HostNodeConnector host = hostQuery(networkAddress);
332         if (host != null) {
333             logger.debug("hostFind(): Host found for IP: {}", networkAddress.getHostAddress());
334             return host;
335         }
336
337         /* Add this host to ARPPending List for any potential retries */
338
339         addToARPPendingList(networkAddress);
340         logger.debug("hostFind(): Host Not Found for IP: {}, Inititated Host Discovery ...",
341                 networkAddress.getHostAddress());
342
343         /* host is not found, initiate a discovery */
344
345         hostFinder.find(networkAddress);
346         return null;
347     }
348
349     @Override
350     public Set<HostNodeConnector> getAllHosts() {
351         Set<HostNodeConnector> allHosts = new HashSet<HostNodeConnector>();
352         for (Entry<InetAddress, HostNodeConnector> entry : hostsDB.entrySet()) {
353             HostNodeConnector host = entry.getValue();
354             allHosts.add(host);
355         }
356         logger.debug("Exiting getAllHosts, Found {} Hosts", allHosts.size());
357         return allHosts;
358     }
359
360     @Override
361     public Set<HostNodeConnector> getActiveStaticHosts() {
362         Set<HostNodeConnector> list = new HashSet<HostNodeConnector>();
363         for (Entry<InetAddress, HostNodeConnector> entry : hostsDB.entrySet()) {
364             HostNodeConnector host = entry.getValue();
365             if (host.isStaticHost()) {
366                 list.add(host);
367             }
368         }
369         logger.debug("getActiveStaticHosts(): Found {} Hosts", list.size());
370         return list;
371     }
372
373     @Override
374     public Set<HostNodeConnector> getInactiveStaticHosts() {
375         Set<HostNodeConnector> list = new HashSet<HostNodeConnector>();
376         for (Entry<NodeConnector, HostNodeConnector> entry : inactiveStaticHosts.entrySet()) {
377             list.add(entry.getValue());
378         }
379         logger.debug("getInactiveStaticHosts(): Found {} Hosts", list.size());
380         return list;
381     }
382
383     private void addToARPPendingList(InetAddress networkAddr) {
384         ARPPending arphost = new ARPPending();
385
386         arphost.setHostIP(networkAddr);
387         arphost.setSent_count((short) 1);
388         ARPPendingList.put(networkAddr, arphost);
389         logger.debug("Host Added to ARPPending List, IP: {}", networkAddr);
390     }
391
392     public void setCallableOnPendingARP(InetAddress networkAddr, HostTrackerCallable callable) {
393         ARPPending arphost;
394         for (Entry<InetAddress, ARPPending> entry : ARPPendingList.entrySet()) {
395             arphost = entry.getValue();
396             if (arphost.getHostIP().equals(networkAddr)) {
397                 arphost.setHostTrackerCallable(callable);
398             }
399         }
400     }
401
402     private void processPendingARPReqs(InetAddress networkAddr) {
403         ARPPending arphost;
404
405         if ((arphost = ARPPendingList.remove(networkAddr)) != null) {
406             // Remove the arphost from ARPPendingList as it has been learned now
407             logger.debug("Host Removed from ARPPending List, IP: {}", networkAddr);
408             HostTrackerCallable htCallable = arphost.getHostTrackerCallable();
409             if (htCallable != null) {
410                 htCallable.wakeup();
411             }
412             return;
413         }
414
415         /*
416          * It could have been a host from the FailedARPReqList
417          */
418
419         if (failedARPReqList.containsKey(networkAddr)) {
420             failedARPReqList.remove(networkAddr);
421             logger.debug("Host Removed from FailedARPReqList List, IP: {}", networkAddr);
422         }
423     }
424
425     // Learn a new Host
426     private void learnNewHost(HostNodeConnector host) {
427         host.initArpSendCountDown();
428         HostNodeConnector rHost = hostsDB.putIfAbsent(host.getNetworkAddress(), host);
429         if (rHost != null) {
430             // Another host is already learned for this IP address, replace it
431             replaceHost(host.getNetworkAddress(), rHost, host);
432         } else {
433             logger.debug("New Host Learned: MAC: {}  IP: {}", HexEncode.bytesToHexString(host
434                     .getDataLayerAddressBytes()), host.getNetworkAddress().getHostAddress());
435         }
436     }
437
438     private void replaceHost(InetAddress networkAddr, HostNodeConnector removedHost, HostNodeConnector newHost) {
439         // Ignore ARP messages from internal nodes
440         NodeConnector newHostNc = newHost.getnodeConnector();
441         boolean newHostIsInternal = topologyManager.isInternal(newHostNc);
442         if (newHostIsInternal) {
443             return;
444         }
445
446         newHost.initArpSendCountDown();
447
448         if (hostsDB.replace(networkAddr, removedHost, newHost)) {
449             logger.debug("Host move occurred: Old Host IP:{}, New Host IP: {}", removedHost.getNetworkAddress()
450                     .getHostAddress(), newHost.getNetworkAddress().getHostAddress());
451             logger.debug("Old Host MAC: {}, New Host MAC: {}",
452                     HexEncode.bytesToHexString(removedHost.getDataLayerAddressBytes()),
453                     HexEncode.bytesToHexString(newHost.getDataLayerAddressBytes()));
454             // Display the Old and New HostNodeConnectors also
455             logger.debug("Old {}, New {}", removedHost, newHost);
456         } else {
457             /*
458              * Host replacement has failed, do the recovery
459              */
460             hostsDB.put(networkAddr, newHost);
461             logger.error("Host replacement failed. Overwrite the host. Repalced Host: {}, New Host: {}", removedHost,
462                     newHost);
463         }
464         notifyHostLearnedOrRemoved(removedHost, false);
465         notifyHostLearnedOrRemoved(newHost, true);
466         if (!newHost.isStaticHost()) {
467             processPendingARPReqs(networkAddr);
468         }
469     }
470
471     // Remove known Host
472     private void removeKnownHost(InetAddress key) {
473         HostNodeConnector host = hostsDB.get(key);
474         if (host != null) {
475             logger.debug("Removing Host: IP:{}", host.getNetworkAddress().getHostAddress());
476             hostsDB.remove(key);
477         } else {
478             logger.error("removeKnownHost(): Host for IP address {} not found in hostsDB", key.getHostAddress());
479         }
480     }
481
482     private class NotifyHostThread extends Thread {
483
484         private final HostNodeConnector host;
485
486         public NotifyHostThread(HostNodeConnector h) {
487             this.host = h;
488         }
489
490         @Override
491         public void run() {
492             HostNodeConnector removedHost = null;
493             InetAddress networkAddr = host.getNetworkAddress();
494
495             /* Check for Host Move case */
496             if (hostMoved(host)) {
497                 /*
498                  * Host has been moved from one location (switch,port, MAC, or
499                  * VLAN) to another. Replace the existing host and its previous
500                  * location parameters with new information, and notify the
501                  * applications listening to host move.
502                  */
503                 removedHost = hostsDB.get(networkAddr);
504                 if (removedHost != null) {
505                     replaceHost(networkAddr, removedHost, host);
506                     return;
507                 } else {
508                     logger.error("Host to be removed not found in hostsDB");
509                 }
510             }
511
512             // It is a new host
513             learnNewHost(host);
514
515             /* check if there is an outstanding request for this host */
516             processPendingARPReqs(networkAddr);
517             notifyHostLearnedOrRemoved(host, true);
518         }
519     }
520
521     @Override
522     public void hostListener(HostNodeConnector host) {
523
524         logger.debug("ARP received for Host: IP {}, MAC {}, {}", host.getNetworkAddress().getHostAddress(),
525                 HexEncode.bytesToHexString(host.getDataLayerAddressBytes()), host);
526         if (hostExists(host)) {
527             HostNodeConnector existinghost = hostsDB.get(host.getNetworkAddress());
528             existinghost.initArpSendCountDown();
529             return;
530         }
531         new NotifyHostThread(host).start();
532     }
533
534     // Notify whoever is interested that a new host was learned (dynamically or
535     // statically)
536     private void notifyHostLearnedOrRemoved(HostNodeConnector host, boolean add) {
537         // Update listeners if any
538         if (newHostNotify != null) {
539             logger.debug("Notifying Applications for Host {} Being {}", host.getNetworkAddress().getHostAddress(),
540                     add ? "Added" : "Deleted");
541             synchronized (this.newHostNotify) {
542                 for (IfNewHostNotify ta : newHostNotify) {
543                     try {
544                         if (add) {
545                             ta.notifyHTClient(host);
546                         } else {
547                             ta.notifyHTClientHostRemoved(host);
548                         }
549                     } catch (Exception e) {
550                         logger.error("Exception on callback", e);
551                     }
552                 }
553             }
554         } else {
555             logger.error("notifyHostLearnedOrRemoved(): New host notify is null");
556         }
557
558         // Topology update is for some reason outside of listeners registry
559         // logic
560         Node node = host.getnodeconnectorNode();
561         Host h = null;
562         NodeConnector p = host.getnodeConnector();
563         try {
564             DataLinkAddress dla = new EthernetAddress(host.getDataLayerAddressBytes());
565             h = new Host(dla, host.getNetworkAddress());
566         } catch (ConstructionException ce) {
567             p = null;
568             h = null;
569         }
570
571         if (topologyManager != null && p != null && h != null) {
572             logger.debug("Notifying Topology Manager for Host {} Being {}", h.getNetworkAddress().getHostAddress(),
573                     add ? "Added" : "Deleted");
574             if (add == true) {
575                 Tier tier = new Tier(1);
576                 switchManager.setNodeProp(node, tier);
577                 topologyManager.updateHostLink(p, h, UpdateType.ADDED, null);
578             } else {
579                 // No need to reset the tiering if no other hosts are currently
580                 // connected
581                 // If this switch was discovered to be an access switch, it
582                 // still is even if the host is down
583                 Tier tier = new Tier(0);
584                 switchManager.setNodeProp(node, tier);
585                 topologyManager.updateHostLink(p, h, UpdateType.REMOVED, null);
586             }
587         }
588     }
589
590     /**
591      * When a new Host is learnt by the hosttracker module, it places the
592      * directly connected Node in Tier-1 & using this function, updates the Tier
593      * value for all other Nodes in the network hierarchy.
594      *
595      * This is a recursive function and it takes care of updating the Tier value
596      * for all the connected and eligible Nodes.
597      *
598      * @param n
599      *            Node that represents one of the Vertex in the Topology Graph.
600      * @param currentTier
601      *            The Tier on which n belongs
602      */
603     @SuppressWarnings("unused")
604     private void updateSwitchTiers(Node n, int currentTier) {
605         Map<Node, Set<Edge>> ndlinks = topologyManager.getNodeEdges();
606         if (ndlinks == null) {
607             logger.debug("updateSwitchTiers(): ndlinks null for Node: {}, Tier:{}", n, currentTier);
608             return;
609         }
610         Set<Edge> links = ndlinks.get(n);
611         if (links == null) {
612             logger.debug("updateSwitchTiers(): links null for ndlinks:{}", ndlinks);
613             return;
614         }
615         ArrayList<Node> needsVisiting = new ArrayList<Node>();
616         for (Edge lt : links) {
617             if (!lt.getHeadNodeConnector().getType().equals(NodeConnector.NodeConnectorIDType.OPENFLOW)) {
618                 // We don't want to work on Node that are not openflow
619                 // for now
620                 continue;
621             }
622             Node dstNode = lt.getHeadNodeConnector().getNode();
623             if (switchNeedsTieringUpdate(dstNode, currentTier + 1)) {
624                 Tier t = new Tier(currentTier + 1);
625                 switchManager.setNodeProp(dstNode, t);
626                 needsVisiting.add(dstNode);
627             }
628         }
629
630         /*
631          * Due to the nature of the problem, having a separate loop for nodes
632          * that needs visiting provides a decent walk optimization.
633          */
634         for (Node node : needsVisiting) {
635             updateSwitchTiers(node, currentTier + 1);
636         }
637     }
638
639     /**
640      * Internal convenience routine to check the eligibility of a Switch for a
641      * Tier update. Any Node with Tier=0 or a Tier value that is greater than
642      * the new Tier Value is eligible for the update.
643      *
644      * @param n
645      *            Node for which the Tier update eligibility is checked
646      * @param tier
647      *            new Tier Value
648      * @return <code>true</code> if the Node is eligible for Tier Update
649      *         <code>false</code> otherwise
650      */
651
652     private boolean switchNeedsTieringUpdate(Node n, int tier) {
653         if (n == null) {
654             logger.error("switchNeedsTieringUpdate(): Null node for tier: {}", tier);
655             return false;
656         }
657         /*
658          * Node could have gone down
659          */
660         if (!switchManager.getNodes().contains(n)) {
661             return false;
662         }
663         // This is the case where Tier was never set for this node
664         Tier t = (Tier) switchManager.getNodeProp(n, Tier.TierPropName);
665         if (t == null) {
666             return true;
667         }
668         if (t.getValue() == 0) {
669             return true;
670         } else if (t.getValue() > tier) {
671             return true;
672         }
673         return false;
674     }
675
676     /**
677      * Internal convenience routine to clear all the Tier values to 0. This
678      * cleanup is performed during cases such as Topology Change where the
679      * existing Tier values might become incorrect
680      */
681     @SuppressWarnings("unused")
682     private void clearTiers() {
683         Set<Node> nodes = null;
684         if (switchManager == null) {
685             logger.error("clearTiers(): Null switchManager");
686             return;
687         }
688         nodes = switchManager.getNodes();
689
690         for (Node n : nodes) {
691             Tier t = new Tier(0);
692             switchManager.setNodeProp(n, t);
693         }
694     }
695
696     /**
697      * Internal convenience routine to print the hierarchies of switches.
698      */
699     @SuppressWarnings("unused")
700     private void logHierarchies(ArrayList<ArrayList<String>> hierarchies) {
701         String hierarchyString = null;
702         int num = 1;
703         for (ArrayList<String> hierarchy : hierarchies) {
704             StringBuffer buf = new StringBuffer();
705             buf.append("Hierarchy#" + num + " : ");
706             for (String switchName : hierarchy) {
707                 buf.append(switchName + "/");
708             }
709             logger.debug("{} -> {}", getContainerName(), buf);
710             num++;
711         }
712     }
713
714     /**
715      * getHostNetworkHierarchy is the Back-end routine for the North-Bound API
716      * that returns the Network Hierarchy for a given Host. This API is
717      * typically used by applications like Hadoop for Rack Awareness
718      * functionality.
719      *
720      * @param hostAddress
721      *            IP-Address of the host/node.
722      * @return Network Hierarchies represented by an Array of Array (of
723      *         Switch-Ids as String).
724      */
725     @Override
726     public List<List<String>> getHostNetworkHierarchy(InetAddress hostAddress) {
727         HostNodeConnector host = hostQuery(hostAddress);
728         if (host == null) {
729             return null;
730         }
731
732         List<List<String>> hierarchies = new ArrayList<List<String>>();
733         ArrayList<String> currHierarchy = new ArrayList<String>();
734         hierarchies.add(currHierarchy);
735
736         Node node = host.getnodeconnectorNode();
737         updateCurrentHierarchy(node, currHierarchy, hierarchies);
738         return hierarchies;
739     }
740
741     /**
742      * dpidToHostNameHack is a hack function for Cisco Live Hadoop Demo. Mininet
743      * is used as the network for Hadoop Demos & in order to give a meaningful
744      * rack-awareness switch names, the DPID is organized in ASCII Characters
745      * and retrieved as string.
746      *
747      * @param dpid
748      *            Switch DataPath Id
749      * @return Ascii String represented by the DPID.
750      */
751     private String dpidToHostNameHack(long dpid) {
752         String hex = Long.toHexString(dpid);
753
754         StringBuffer sb = new StringBuffer();
755         int result = 0;
756         for (int i = 0; i < hex.length(); i++) {
757             result = (int) ((dpid >> (i * 8)) & 0xff);
758             if (result == 0) {
759                 continue;
760             }
761             if (result < 0x30) {
762                 result += 0x40;
763             }
764             sb.append(String.format("%c", result));
765         }
766         return sb.reverse().toString();
767     }
768
769     /**
770      * A convenient recursive routine to obtain the Hierarchy of Switches.
771      *
772      * @param node
773      *            Current Node in the Recursive routine.
774      * @param currHierarchy
775      *            Array of Nodes that make this hierarchy on which the Current
776      *            Switch belong
777      * @param fullHierarchy
778      *            Array of multiple Hierarchies that represent a given host.
779      */
780     @SuppressWarnings("unchecked")
781     private void updateCurrentHierarchy(Node node, ArrayList<String> currHierarchy, List<List<String>> fullHierarchy) {
782         // currHierarchy.add(String.format("%x", currSw.getId()));
783         currHierarchy.add(dpidToHostNameHack((Long) node.getID()));
784         // Shallow copy as required
785         ArrayList<String> currHierarchyClone = (ArrayList<String>) currHierarchy.clone();
786
787         Map<Node, Set<Edge>> ndlinks = topologyManager.getNodeEdges();
788         if (ndlinks == null) {
789             logger.debug("updateCurrentHierarchy(): topologyManager returned null ndlinks for node: {}", node);
790             return;
791         }
792         Node n = NodeCreator.createOFNode((Long) node.getID());
793         Set<Edge> links = ndlinks.get(n);
794         if (links == null) {
795             logger.debug("updateCurrentHierarchy(): Null links for ndlinks");
796             return;
797         }
798         for (Edge lt : links) {
799             if (!lt.getHeadNodeConnector().getType().equals(NodeConnector.NodeConnectorIDType.OPENFLOW)) {
800                 // We don't want to work on Node that are not openflow
801                 // for now
802                 continue;
803             }
804             Node dstNode = lt.getHeadNodeConnector().getNode();
805
806             Tier nodeTier = (Tier) switchManager.getNodeProp(node, Tier.TierPropName);
807             /*
808              * If the host is directly attached to the src node, then the node
809              * should have been assigned the "Access" tier in
810              * notifyHostLearnedOrRemoved. If not, it would be assigned
811              * "Unknown" tier. Thus the tier of host attached node cannot be
812              * null. If the src node here, is the next node in the hierarchy of
813              * the nodes, then its tier cannot be null
814              */
815
816             Tier dstNodeTier = (Tier) switchManager.getNodeProp(dstNode, Tier.TierPropName);
817             /*
818              * Skip if the tier of the destination node is null
819              */
820             if (dstNodeTier == null) {
821                 continue;
822             }
823             if (dstNodeTier.getValue() > nodeTier.getValue()) {
824                 ArrayList<String> buildHierarchy = currHierarchy;
825                 if (currHierarchy.size() > currHierarchyClone.size()) {
826                     // Shallow copy as required
827                     buildHierarchy = (ArrayList<String>) currHierarchyClone.clone();
828                     fullHierarchy.add(buildHierarchy);
829                 }
830                 updateCurrentHierarchy(dstNode, buildHierarchy, fullHierarchy);
831             }
832         }
833     }
834
835     private void debugEdgeUpdate(Edge e, UpdateType type, Set<Property> props) {
836         Long srcNid = null;
837         Short srcPort = null;
838         Long dstNid = null;
839         Short dstPort = null;
840         boolean added = false;
841         String srcType = null;
842         String dstType = null;
843
844         if (e == null || type == null) {
845             logger.error("Edge or Update type are null!");
846             return;
847         } else {
848             srcType = e.getTailNodeConnector().getType();
849             dstType = e.getHeadNodeConnector().getType();
850
851             if (srcType.equals(NodeConnector.NodeConnectorIDType.PRODUCTION)) {
852                 logger.debug("Skip updates for {}", e);
853                 return;
854             }
855
856             if (!srcType.equals(NodeConnector.NodeConnectorIDType.OPENFLOW)) {
857                 logger.debug("For now we cannot handle updates for non-openflow nodes");
858                 return;
859             }
860
861             if (dstType.equals(NodeConnector.NodeConnectorIDType.PRODUCTION)) {
862                 logger.debug("Skip updates for {}", e);
863                 return;
864             }
865
866             if (!dstType.equals(NodeConnector.NodeConnectorIDType.OPENFLOW)) {
867                 logger.debug("For now we cannot handle updates for non-openflow nodes");
868                 return;
869             }
870
871             // At this point we know we got an openflow update, so
872             // lets fill everything accordingly.
873             srcNid = (Long) e.getTailNodeConnector().getNode().getID();
874             srcPort = (Short) e.getTailNodeConnector().getID();
875             dstNid = (Long) e.getHeadNodeConnector().getNode().getID();
876             dstPort = (Short) e.getHeadNodeConnector().getID();
877
878             // Now lets update the added flag
879             switch (type) {
880             case ADDED:
881             case CHANGED:
882                 added = true;
883                 break;
884             case REMOVED:
885                 added = false;
886             }
887         }
888
889         logger.debug("HostTracker Topology linkUpdate handling src:{}[port {}] dst:{}[port {}] added: {}",
890                 new Object[] { srcNid, srcPort, dstNid, dstPort, added });
891     }
892
893     @Override
894     public void edgeUpdate(List<TopoEdgeUpdate> topoedgeupdateList) {
895         if (logger.isDebugEnabled()) {
896             for (TopoEdgeUpdate topoEdgeUpdate : topoedgeupdateList) {
897                 Edge e = topoEdgeUpdate.getEdge();
898                 Set<Property> p = topoEdgeUpdate.getProperty();
899                 UpdateType type = topoEdgeUpdate.getUpdateType();
900
901                 debugEdgeUpdate(e, type, p);
902             }
903         }
904     }
905
906     @Override
907     public void subnetNotify(Subnet sub, boolean add) {
908         logger.debug("Received subnet notification: {}  add={}", sub, add);
909         if (add) {
910             for (Entry<InetAddress, ARPPending> entry : failedARPReqList.entrySet()) {
911                 ARPPending arphost;
912                 arphost = entry.getValue();
913                 if (hostFinder == null) {
914                     logger.warn("ARPHandler Services are not available on subnet addition");
915                     continue;
916                 }
917                 logger.debug("Sending the ARP from FailedARPReqList fors IP: {}", arphost.getHostIP().getHostAddress());
918                 hostFinder.find(arphost.getHostIP());
919             }
920         }
921     }
922
923     class OutStandingARPHandler extends TimerTask {
924         @Override
925         public void run() {
926             if (stopping) {
927                 return;
928             }
929             ARPPending arphost;
930             /* This routine runs every 4 seconds */
931             logger.trace("Number of Entries in ARP Pending/Failed Lists: ARPPendingList = {}, failedARPReqList = {}",
932                     ARPPendingList.size(), failedARPReqList.size());
933             for (Entry<InetAddress, ARPPending> entry : ARPPendingList.entrySet()) {
934                 arphost = entry.getValue();
935
936                 if (hostsDB.containsKey(arphost.getHostIP())) {
937                     // this host is already learned, shouldn't be in
938                     // ARPPendingList
939                     // Remove it and continue
940                     logger.warn("Learned Host {} found in ARPPendingList", arphost.getHostIP());
941                     ARPPendingList.remove(entry.getKey());
942                     continue;
943                 }
944                 if (arphost.getSent_count() < switchManager.getHostRetryCount()) {
945                     /*
946                      * No reply has been received of first ARP Req, send the
947                      * next one. Before sending the ARP, check if ARPHandler is
948                      * available or not
949                      */
950                     if (hostFinder == null) {
951                         logger.warn("ARPHandler Services are not available for Outstanding ARPs");
952                         continue;
953                     }
954                     hostFinder.find(arphost.getHostIP());
955                     arphost.sent_count++;
956                     logger.debug("ARP Sent from ARPPending List, IP: {}", arphost.getHostIP().getHostAddress());
957                 } else if (arphost.getSent_count() >= switchManager.getHostRetryCount()) {
958                     /*
959                      * ARP requests have been sent without receiving a reply,
960                      * remove this from the pending list
961                      */
962                     ARPPendingList.remove(entry.getKey());
963                     logger.debug("ARP reply not received after multiple attempts, removing from Pending List IP: {}",
964                             arphost.getHostIP().getHostAddress());
965                     /*
966                      * Add this host to a different list which will be processed
967                      * on link up events
968                      */
969                     logger.debug("Adding the host to FailedARPReqList IP: {}", arphost.getHostIP().getHostAddress());
970                     failedARPReqList.put(entry.getKey(), arphost);
971
972                 } else {
973                     logger.error("Inavlid arp_sent count for entry: {}", entry);
974                 }
975             }
976         }
977     }
978
979     private class ARPRefreshHandler extends TimerTask {
980         @Override
981         public void run() {
982             if (stopping) {
983                 return;
984             }
985             if ((clusterContainerService != null) && !clusterContainerService.amICoordinator()) {
986                 return;
987             }
988             if ((switchManager != null) && !switchManager.isHostRefreshEnabled()) {
989                 /*
990                  * The host probe procedure was disabled by CLI
991                  */
992                 return;
993             }
994             if (hostsDB == null) {
995                 /* hostsDB is not allocated yet */
996                 logger.error("ARPRefreshHandler(): hostsDB is not allocated yet:");
997                 return;
998             }
999             for (Entry<InetAddress, HostNodeConnector> entry : hostsDB.entrySet()) {
1000                 HostNodeConnector host = entry.getValue();
1001                 if (host.isStaticHost()) {
1002                     /* this host was learned via API3, don't age it out */
1003                     continue;
1004                 }
1005
1006                 short arp_cntdown = host.getArpSendCountDown();
1007                 arp_cntdown--;
1008                 if (arp_cntdown > switchManager.getHostRetryCount()) {
1009                     host.setArpSendCountDown(arp_cntdown);
1010                 } else if (arp_cntdown <= 0) {
1011                     /*
1012                      * No ARP Reply received in last 2 minutes, remove this host
1013                      * and inform applications
1014                      */
1015                     removeKnownHost(entry.getKey());
1016                     notifyHostLearnedOrRemoved(host, false);
1017                 } else if (arp_cntdown <= switchManager.getHostRetryCount()) {
1018                     /*
1019                      * Use the services of arphandler to check if host is still
1020                      * there
1021                      */
1022                     if (logger.isTraceEnabled()) {
1023                         logger.trace(
1024                                 "ARP Probing ({}) for {}({})",
1025                                 new Object[] { arp_cntdown, host.getNetworkAddress().getHostAddress(),
1026                                         HexEncode.bytesToHexString(host.getDataLayerAddressBytes()) });
1027                     }
1028                     host.setArpSendCountDown(arp_cntdown);
1029                     if (hostFinder == null) {
1030                         /*
1031                          * If hostfinder is not available, then can't send the
1032                          * probe. However, continue the age out the hosts since
1033                          * we don't know if the host is indeed out there or not.
1034                          */
1035                         logger.warn("ARPHandler is not avaialable, can't send the probe");
1036                         continue;
1037                     }
1038                     hostFinder.probe(host);
1039                 }
1040             }
1041         }
1042     }
1043
1044     /**
1045      * Inform the controller IP to MAC binding of a host and its connectivity to
1046      * an openflow switch in terms of Node, port, and VLAN.
1047      *
1048      * @param networkAddr
1049      *            IP address of the host
1050      * @param dataLayer
1051      *            Address MAC address of the host
1052      * @param nc
1053      *            NodeConnector to which host is connected
1054      * @param port
1055      *            Port of the switch to which host is connected
1056      * @param vlan
1057      *            Vlan of which this host is member of
1058      *
1059      * @return Status The status object as described in {@code Status}
1060      *         indicating the result of this action.
1061      */
1062
1063     public Status addStaticHostReq(InetAddress networkAddr, byte[] dataLayerAddress, NodeConnector nc, short vlan) {
1064         if (dataLayerAddress.length != NetUtils.MACAddrLengthInBytes) {
1065             return new Status(StatusCode.BADREQUEST, "Invalid MAC address");
1066         }
1067
1068         if (nc == null) {
1069             return new Status(StatusCode.BADREQUEST, "Invalid NodeConnector");
1070         }
1071         HostNodeConnector host = null;
1072         try {
1073             host = new HostNodeConnector(dataLayerAddress, networkAddr, nc, vlan);
1074             if (hostExists(host)) {
1075                 // This host is already learned either via ARP or through a
1076                 // northbound request
1077                 HostNodeConnector transHost = hostsDB.get(networkAddr);
1078                 transHost.setStaticHost(true);
1079                 return new Status(StatusCode.SUCCESS, null);
1080             }
1081
1082             if (hostsDB.get(networkAddr) != null) {
1083                 // There is already a host with this IP address (but behind
1084                 // a different (switch, port, vlan) tuple. Return an error
1085                 return new Status(StatusCode.CONFLICT, "Existing IP, Use PUT to update");
1086             }
1087             host.setStaticHost(true);
1088             /*
1089              * Check if the nc is an ISL port
1090              */
1091             if (topologyManager != null) {
1092                 if (topologyManager.isInternal(nc)) {
1093                     return new Status(StatusCode.BADREQUEST, "Cannot add host on ISL port");
1094                 }
1095             }
1096             /*
1097              * Before adding host, Check if the switch and the port have already
1098              * come up
1099              */
1100             if (switchManager.isNodeConnectorEnabled(nc)) {
1101                 learnNewHost(host);
1102                 processPendingARPReqs(networkAddr);
1103                 notifyHostLearnedOrRemoved(host, true);
1104             } else {
1105                 inactiveStaticHosts.put(nc, host);
1106                 logger.debug("Switch or switchport is not up, adding host {} to inactive list",
1107                         networkAddr.getHostName());
1108             }
1109             return new Status(StatusCode.SUCCESS, null);
1110         } catch (ConstructionException e) {
1111             logger.error("", e);
1112             return new Status(StatusCode.INTERNALERROR, "Host could not be created");
1113         }
1114
1115     }
1116
1117     /**
1118      * Update the controller IP to MAC binding of a host and its connectivity to
1119      * an openflow switch in terms of switch id, switch port, and VLAN.
1120      *
1121      * @param networkAddr
1122      *            IP address of the host
1123      * @param dataLayer
1124      *            Address MAC address of the host
1125      * @param nc
1126      *            NodeConnector to which host is connected
1127      * @param port
1128      *            Port of the switch to which host is connected
1129      * @param vlan
1130      *            Vlan of which this host is member of
1131      *
1132      * @return Status The status object as described in {@code Status}
1133      *         indicating the result of this action.
1134      */
1135     public Status updateHostReq(InetAddress networkAddr, byte[] dataLayerAddress, NodeConnector nc, short vlan) {
1136         HostNodeConnector tobeUpdatedHost;
1137         HostNodeConnector host = null;
1138
1139         if (dataLayerAddress.length != NetUtils.MACAddrLengthInBytes) {
1140             return new Status(StatusCode.BADREQUEST, "Invalid MAC address");
1141         }
1142
1143         if (nc == null) {
1144             return new Status(StatusCode.BADREQUEST, "Invalid NodeConnector");
1145         }
1146
1147         try {
1148             host = new HostNodeConnector(dataLayerAddress, networkAddr, nc, vlan);
1149             if (hostExists(host)) {
1150                 return new Status(StatusCode.BADREQUEST, "Host already exists");
1151             }
1152
1153             if ((tobeUpdatedHost = hostsDB.get(networkAddr)) != null) {
1154                 if (hostsDB.replace(networkAddr, tobeUpdatedHost, host)) {
1155                     logger.debug("Host replaced from hostsDB. Old host: {} New Host: {}", tobeUpdatedHost, host);
1156                     notifyHostLearnedOrRemoved(tobeUpdatedHost, false);
1157                     notifyHostLearnedOrRemoved(host, true);
1158                     return new Status(StatusCode.SUCCESS);
1159                 } else {
1160                     logger.error("Static host replacement failed from hostsDB, Replaced Host: {}, New Host: {}",
1161                             tobeUpdatedHost, host);
1162                     return new Status(StatusCode.INTERNALERROR,
1163                             "Host Replacement Failed due to presence of another host with same IP");
1164                 }
1165             }
1166
1167             // Check if the host exists in inactive hosts database
1168             if ((tobeUpdatedHost = inactiveStaticHosts.get(nc)) != null) {
1169                 if (inactiveStaticHosts.replace(nc, tobeUpdatedHost, host)) {
1170                     logger.debug("Host replaced from inactive hostsDB. Old host: {} New Host: {}", tobeUpdatedHost,
1171                             host);
1172                     return new Status(StatusCode.SUCCESS);
1173                 } else {
1174                     logger.error("Static host replacement failed, Replaced Host: {}, New Host: {}", tobeUpdatedHost,
1175                             host);
1176                     return new Status(StatusCode.INTERNALERROR,
1177                             "Host Replacement Failed due to presence of another host with same IP");
1178                 }
1179             }
1180
1181             // Host doesn't exist
1182             return new Status(StatusCode.BADREQUEST, "Host doesn't exists, can't update");
1183         } catch (ConstructionException e) {
1184             logger.error("", e);
1185             return new Status(StatusCode.INTERNALERROR, "host object creation failure");
1186         }
1187     }
1188
1189     /**
1190      * Remove from the controller IP to MAC binding of a host and its
1191      * connectivity to an openflow switch
1192      *
1193      * @param networkAddr
1194      *            IP address of the host
1195      *
1196      * @return boolean true if the host was removed successfully, false
1197      *         otherwise
1198      */
1199
1200     public Status removeStaticHostReq(InetAddress networkAddress) {
1201         // Check if host is in active hosts database
1202         HostNodeConnector host = getHostFromOnActiveDB(networkAddress);
1203         if (host != null) {
1204             // Validation check
1205             if (!host.isStaticHost()) {
1206                 return new Status(StatusCode.FORBIDDEN, "Host " + networkAddress.getHostName() + " is not static");
1207             }
1208             // Remove and notify
1209             notifyHostLearnedOrRemoved(host, false);
1210             removeKnownHost(networkAddress);
1211             return new Status(StatusCode.SUCCESS, null);
1212         }
1213
1214         // Check if host is in inactive hosts database
1215         Entry<NodeConnector, HostNodeConnector> entry = getHostFromInactiveDB(networkAddress);
1216         if (entry != null) {
1217             host = entry.getValue();
1218             // Validation check
1219             if (!host.isStaticHost()) {
1220                 return new Status(StatusCode.FORBIDDEN, "Host " + networkAddress.getHostName() + " is not static");
1221             }
1222             this.removeHostFromInactiveDB(networkAddress);
1223             return new Status(StatusCode.SUCCESS, null);
1224         }
1225
1226         // Host is neither in active nor inactive hosts database
1227         return new Status(StatusCode.NOTFOUND, "Host does not exist");
1228     }
1229
1230     @Override
1231     public void modeChangeNotify(Node node, boolean proactive) {
1232         logger.debug("Set Switch {} Mode to {}", node.getID(), proactive);
1233     }
1234
1235     @Override
1236     public void notifyNode(Node node, UpdateType type, Map<String, Property> propMap) {
1237         if (node == null) {
1238             return;
1239         }
1240
1241         switch (type) {
1242         case REMOVED:
1243             logger.debug("Received removed node {}", node);
1244             for (Entry<InetAddress, HostNodeConnector> entry : hostsDB.entrySet()) {
1245                 HostNodeConnector host = entry.getValue();
1246                 if (host.getnodeconnectorNode().equals(node)) {
1247                     logger.debug("Node: {} is down, remove from Hosts_DB", node);
1248                     removeKnownHost(entry.getKey());
1249                     notifyHostLearnedOrRemoved(host, false);
1250                 }
1251             }
1252             break;
1253         default:
1254             break;
1255         }
1256     }
1257
1258     @Override
1259     public void notifyNodeConnector(NodeConnector nodeConnector, UpdateType type, Map<String, Property> propMap) {
1260         if (nodeConnector == null) {
1261             return;
1262         }
1263
1264         boolean up = false;
1265         switch (type) {
1266         case ADDED:
1267             up = true;
1268             break;
1269         case REMOVED:
1270             break;
1271         case CHANGED:
1272             State state = (State) propMap.get(State.StatePropName);
1273             if ((state != null) && (state.getValue() == State.EDGE_UP)) {
1274                 up = true;
1275             }
1276             break;
1277         default:
1278             return;
1279         }
1280
1281         if (up) {
1282             handleNodeConnectorStatusUp(nodeConnector);
1283         } else {
1284             handleNodeConnectorStatusDown(nodeConnector);
1285         }
1286     }
1287
1288     @Override
1289     public Status addStaticHost(String networkAddress, String dataLayerAddress, NodeConnector nc, String vlan) {
1290         try {
1291             InetAddress ip = InetAddress.getByName(networkAddress);
1292             if (nc == null) {
1293                 return new Status(StatusCode.BADREQUEST, "Invalid NodeId");
1294             }
1295             return addStaticHostReq(ip, HexEncode.bytesFromHexString(dataLayerAddress), nc, Short.valueOf(vlan));
1296         } catch (UnknownHostException e) {
1297             logger.error("", e);
1298             return new Status(StatusCode.BADREQUEST, "Invalid Address");
1299         }
1300     }
1301
1302     @Override
1303     public Status removeStaticHost(String networkAddress) {
1304         InetAddress address;
1305         try {
1306             address = InetAddress.getByName(networkAddress);
1307             return removeStaticHostReq(address);
1308         } catch (UnknownHostException e) {
1309             logger.error("", e);
1310             return new Status(StatusCode.BADREQUEST, "Invalid Address");
1311         }
1312     }
1313
1314     private void handleNodeConnectorStatusUp(NodeConnector nodeConnector) {
1315         ARPPending arphost;
1316         HostNodeConnector host = null;
1317
1318         logger.debug("handleNodeConnectorStatusUp {}", nodeConnector);
1319
1320         for (Entry<InetAddress, ARPPending> entry : failedARPReqList.entrySet()) {
1321             arphost = entry.getValue();
1322             logger.debug("Sending the ARP from FailedARPReqList fors IP: {}", arphost.getHostIP().getHostAddress());
1323             if (hostFinder == null) {
1324                 logger.warn("ARPHandler is not available at interface  up");
1325                 logger.warn("Since this event is missed, host(s) connected to interface {} may not be discovered",
1326                         nodeConnector);
1327                 continue;
1328             }
1329
1330             // Send a broadcast ARP only on the interface which just came up.
1331             // Use hostFinder's "probe" method
1332             try {
1333                 byte[] dataLayerAddress = NetUtils.getBroadcastMACAddr();
1334                 host = new HostNodeConnector(dataLayerAddress, arphost.getHostIP(), nodeConnector, (short) 0);
1335                 hostFinder.probe(host);
1336             } catch (ConstructionException e) {
1337                 logger.debug("HostNodeConnector couldn't be created for Host: {}, NodeConnector: {}",
1338                         arphost.getHostIP(), nodeConnector);
1339                 logger.error("", e);
1340             }
1341             logger.debug("Done. handleNodeConnectorStatusUp {}", nodeConnector);
1342         }
1343
1344         host = inactiveStaticHosts.get(nodeConnector);
1345         if (host != null) {
1346             inactiveStaticHosts.remove(nodeConnector);
1347             learnNewHost(host);
1348             processPendingARPReqs(host.getNetworkAddress());
1349             notifyHostLearnedOrRemoved(host, true);
1350         }
1351     }
1352
1353     private void handleNodeConnectorStatusDown(NodeConnector nodeConnector) {
1354         logger.debug("handleNodeConnectorStatusDown {}", nodeConnector);
1355
1356         for (Entry<InetAddress, HostNodeConnector> entry : hostsDB.entrySet()) {
1357             HostNodeConnector host = entry.getValue();
1358             if (host.getnodeConnector().equals(nodeConnector)) {
1359                 logger.debug(" NodeConnector: {} is down, remove from Hosts_DB", nodeConnector);
1360                 removeKnownHost(entry.getKey());
1361                 notifyHostLearnedOrRemoved(host, false);
1362             }
1363         }
1364     }
1365
1366     void setClusterContainerService(IClusterContainerServices s) {
1367         logger.debug("Cluster Service set");
1368         this.clusterContainerService = s;
1369     }
1370
1371     void unsetClusterContainerService(IClusterContainerServices s) {
1372         if (this.clusterContainerService == s) {
1373             logger.debug("Cluster Service removed!");
1374             this.clusterContainerService = null;
1375         }
1376     }
1377
1378     void setSwitchManager(ISwitchManager s) {
1379         logger.debug("SwitchManager set");
1380         this.switchManager = s;
1381     }
1382
1383     void unsetSwitchManager(ISwitchManager s) {
1384         if (this.switchManager == s) {
1385             logger.debug("SwitchManager removed!");
1386             this.switchManager = null;
1387         }
1388     }
1389
1390     public String getContainerName() {
1391         if (containerName == null) {
1392             return GlobalConstants.DEFAULT.toString();
1393         }
1394         return containerName;
1395     }
1396
1397     /**
1398      * Function called by the dependency manager when all the required
1399      * dependencies are satisfied
1400      *
1401      */
1402     void init(Component c) {
1403         Dictionary<?, ?> props = c.getServiceProperties();
1404         if (props != null) {
1405             this.containerName = (String) props.get("containerName");
1406             logger.debug("Running containerName: {}", this.containerName);
1407         } else {
1408             // In the Global instance case the containerName is empty
1409             this.containerName = "";
1410         }
1411         startUp();
1412     }
1413
1414     /**
1415      * Function called by the dependency manager when at least one dependency
1416      * become unsatisfied or when the component is shutting down because for
1417      * example bundle is being stopped.
1418      *
1419      */
1420     void destroy() {
1421     }
1422
1423     /**
1424      * Function called by dependency manager after "init ()" is called and after
1425      * the services provided by the class are registered in the service registry
1426      *
1427      */
1428     void start() {
1429         registerWithOSGIConsole();
1430     }
1431
1432     /**
1433      * Function called by the dependency manager before the services exported by
1434      * the component are unregistered, this will be followed by a "destroy ()"
1435      * calls
1436      *
1437      */
1438     void stop() {
1439     }
1440
1441     void stopping() {
1442         stopping = true;
1443         arpRefreshTimer.cancel();
1444         timer.cancel();
1445         executor.shutdownNow();
1446     }
1447
1448     @Override
1449     public void edgeOverUtilized(Edge edge) {
1450
1451     }
1452
1453     @Override
1454     public void edgeUtilBackToNormal(Edge edge) {
1455
1456     }
1457
1458     @Override
1459     public void entryCreated(InetAddress key, String cacheName, boolean originLocal) {
1460         if (originLocal) {
1461             return;
1462         }
1463         processPendingARPReqs(key);
1464     }
1465
1466     @Override
1467     public void entryUpdated(InetAddress key, HostNodeConnector new_value, String cacheName, boolean originLocal) {
1468     }
1469
1470     @Override
1471     public void entryDeleted(InetAddress key, String cacheName, boolean originLocal) {
1472     }
1473
1474     private void registerWithOSGIConsole() {
1475         BundleContext bundleContext = FrameworkUtil.getBundle(this.getClass()).getBundleContext();
1476         bundleContext.registerService(CommandProvider.class.getName(), this, null);
1477     }
1478
1479     @Override
1480     public String getHelp() {
1481         return null;
1482     }
1483
1484     public void _dumpPendingARPReqList(CommandInterpreter ci) {
1485         ARPPending arphost;
1486         for (Entry<InetAddress, ARPPending> entry : ARPPendingList.entrySet()) {
1487             arphost = entry.getValue();
1488             ci.println(arphost.getHostIP().toString());
1489         }
1490     }
1491
1492     public void _dumpFailedARPReqList(CommandInterpreter ci) {
1493         ARPPending arphost;
1494         for (Entry<InetAddress, ARPPending> entry : failedARPReqList.entrySet()) {
1495             arphost = entry.getValue();
1496             ci.println(arphost.getHostIP().toString());
1497         }
1498     }
1499 }