blob: 3962efbe98763ef235b76b6a840f317da044711c [file] [log] [blame]
Jonathan Hartc7ca35d2013-06-25 20:54:25 +12001package net.onrc.onos.ofcontroller.proxyarp;
2
3import java.io.IOException;
4import java.net.InetAddress;
5import java.net.UnknownHostException;
6import java.util.ArrayList;
7import java.util.Collection;
Jonathan Harte93aed42013-12-05 18:39:50 -08008import java.util.HashMap;
Jonathan Harta18e4792013-10-31 10:10:54 -07009import java.util.HashSet;
Jonathan Hart6261dcd2013-07-22 17:58:35 +120010import java.util.Iterator;
Jonathan Hartc7ca35d2013-06-25 20:54:25 +120011import java.util.List;
12import java.util.Map;
13import java.util.Set;
Jonathan Hart6261dcd2013-07-22 17:58:35 +120014import java.util.Timer;
15import java.util.TimerTask;
Jonathan Hartc7ca35d2013-06-25 20:54:25 +120016
17import net.floodlightcontroller.core.FloodlightContext;
18import net.floodlightcontroller.core.IFloodlightProviderService;
19import net.floodlightcontroller.core.IOFMessageListener;
20import net.floodlightcontroller.core.IOFSwitch;
Jonathan Harte93aed42013-12-05 18:39:50 -080021import net.floodlightcontroller.core.module.FloodlightModuleContext;
22import net.floodlightcontroller.core.module.IFloodlightModule;
23import net.floodlightcontroller.core.module.IFloodlightService;
Jonathan Hartc7ca35d2013-06-25 20:54:25 +120024import net.floodlightcontroller.packet.ARP;
25import net.floodlightcontroller.packet.Ethernet;
Jonathan Hart08ee8522013-09-22 17:34:43 +120026import net.floodlightcontroller.packet.IPv4;
Jonathan Hart5afde492013-10-01 12:30:53 +130027import net.floodlightcontroller.restserver.IRestApiService;
Jonathan Hartc7ca35d2013-06-25 20:54:25 +120028import net.floodlightcontroller.topology.ITopologyService;
Jonathan Hart8ec133c2013-06-26 15:25:18 +120029import net.floodlightcontroller.util.MACAddress;
Jonathan Hart18ad55c2013-11-11 22:49:55 -080030import net.onrc.onos.datagrid.IDatagridService;
Jonathan Hart2f790d22013-08-15 14:01:24 +120031import net.onrc.onos.ofcontroller.bgproute.Interface;
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070032import net.onrc.onos.ofcontroller.core.IDeviceStorage;
33import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.IDeviceObject;
Jonathan Hart9a21e0d2013-11-14 15:09:09 -080034import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.IPortObject;
pingping-lin017a8922013-12-11 11:15:33 +080035import net.onrc.onos.ofcontroller.core.INetMapTopologyObjects.ISwitchObject;
Jonathan Hart18ad55c2013-11-11 22:49:55 -080036import net.onrc.onos.ofcontroller.core.INetMapTopologyService.ITopoSwitchService;
Jonathan Hartebba1e12013-10-29 11:37:02 -070037import net.onrc.onos.ofcontroller.core.config.IConfigInfoService;
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070038import net.onrc.onos.ofcontroller.core.internal.DeviceStorageImpl;
Jonathan Hart9a21e0d2013-11-14 15:09:09 -080039import net.onrc.onos.ofcontroller.core.internal.TopoSwitchServiceImpl;
Jonathan Hartba9ced92013-11-24 16:52:13 -080040import net.onrc.onos.ofcontroller.util.Dpid;
41import net.onrc.onos.ofcontroller.util.Port;
42import net.onrc.onos.ofcontroller.util.SwitchPort;
Jonathan Hartc7ca35d2013-06-25 20:54:25 +120043
44import org.openflow.protocol.OFMessage;
45import org.openflow.protocol.OFPacketIn;
46import org.openflow.protocol.OFPacketOut;
47import org.openflow.protocol.OFPort;
48import org.openflow.protocol.OFType;
49import org.openflow.protocol.action.OFAction;
50import org.openflow.protocol.action.OFActionOutput;
Jonathan Hart8ec133c2013-06-26 15:25:18 +120051import org.openflow.util.HexString;
Jonathan Hartc7ca35d2013-06-25 20:54:25 +120052import org.slf4j.Logger;
53import org.slf4j.LoggerFactory;
54
Jonathan Hart4dfc3652013-08-02 20:22:36 +120055import com.google.common.collect.HashMultimap;
56import com.google.common.collect.Multimaps;
57import com.google.common.collect.SetMultimap;
Jonathan Harta18e4792013-10-31 10:10:54 -070058import com.google.common.net.InetAddresses;
Jonathan Hart4dfc3652013-08-02 20:22:36 +120059
Jonathan Hart18ad55c2013-11-11 22:49:55 -080060public class ProxyArpManager implements IProxyArpService, IOFMessageListener,
Jonathan Harte93aed42013-12-05 18:39:50 -080061 IArpEventHandler, IFloodlightModule {
Jonathan Hart5b803bc2013-09-23 14:46:11 +120062 private final static Logger log = LoggerFactory.getLogger(ProxyArpManager.class);
Jonathan Hartc7ca35d2013-06-25 20:54:25 +120063
pingping-lin017a8922013-12-11 11:15:33 +080064 private final long ARP_TIMER_PERIOD = 100; //ms
65
66 private static final int ARP_REQUEST_TIMEOUT = 500; //ms
Jonathan Hart6261dcd2013-07-22 17:58:35 +120067
Jonathan Harta8887642013-10-28 13:46:54 -070068 private IFloodlightProviderService floodlightProvider;
69 private ITopologyService topology;
Jonathan Hart18ad55c2013-11-11 22:49:55 -080070 private IDatagridService datagrid;
Jonathan Harta8887642013-10-28 13:46:54 -070071 private IConfigInfoService configService;
72 private IRestApiService restApi;
Jonathan Hartc7ca35d2013-06-25 20:54:25 +120073
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070074 private IDeviceStorage deviceStorage;
Jonathan Hart9a21e0d2013-11-14 15:09:09 -080075 private volatile ITopoSwitchService topoSwitchService;
Jonathan Hartd6ed62b2013-11-01 13:18:25 -070076
Jonathan Hart1cf9de02013-10-21 17:42:29 -070077 private short vlan;
78 private static final short NO_VLAN = 0;
79
Jonathan Harta8887642013-10-28 13:46:54 -070080 private ArpCache arpCache;
Jonathan Hartdf6ec332013-08-04 01:37:14 +120081
Jonathan Harta8887642013-10-28 13:46:54 -070082 private SetMultimap<InetAddress, ArpRequest> arpRequests;
Jonathan Hart6261dcd2013-07-22 17:58:35 +120083
Jonathan Hartabad6a52013-09-30 18:17:21 +130084 private static class ArpRequest {
Jonathan Hart5b803bc2013-09-23 14:46:11 +120085 private final IArpRequester requester;
Jonathan Hartabad6a52013-09-30 18:17:21 +130086 private final boolean retry;
Jonathan Hart6261dcd2013-07-22 17:58:35 +120087 private long requestTime;
88
Jonathan Hart4dfc3652013-08-02 20:22:36 +120089 public ArpRequest(IArpRequester requester, boolean retry){
Jonathan Hart4dfc3652013-08-02 20:22:36 +120090 this.requester = requester;
91 this.retry = retry;
Jonathan Hart6261dcd2013-07-22 17:58:35 +120092 this.requestTime = System.currentTimeMillis();
93 }
94
Jonathan Hart4dfc3652013-08-02 20:22:36 +120095 public ArpRequest(ArpRequest old) {
96 this.requester = old.requester;
97 this.retry = old.retry;
98 this.requestTime = System.currentTimeMillis();
99 }
100
Jonathan Hart4dfc3652013-08-02 20:22:36 +1200101 public boolean isExpired() {
Jonathan Hartda4d0e12013-09-30 21:00:20 +1300102 return (System.currentTimeMillis() - requestTime) > ARP_REQUEST_TIMEOUT;
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200103 }
104
Jonathan Hart4dfc3652013-08-02 20:22:36 +1200105 public boolean shouldRetry() {
106 return retry;
107 }
108
Jonathan Hartabad6a52013-09-30 18:17:21 +1300109 public void dispatchReply(InetAddress ipAddress, MACAddress replyMacAddress) {
Jonathan Hart4dfc3652013-08-02 20:22:36 +1200110 requester.arpResponse(ipAddress, replyMacAddress);
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200111 }
112 }
113
Jonathan Hartda4d0e12013-09-30 21:00:20 +1300114 private class HostArpRequester implements IArpRequester {
115 private final ARP arpRequest;
116 private final long dpid;
117 private final short port;
118
119 public HostArpRequester(ARP arpRequest, long dpid, short port) {
120 this.arpRequest = arpRequest;
121 this.dpid = dpid;
122 this.port = port;
123 }
124
125 @Override
126 public void arpResponse(InetAddress ipAddress, MACAddress macAddress) {
127 ProxyArpManager.this.sendArpReply(arpRequest, dpid, port, macAddress);
128 }
129 }
130
Jonathan Harte93aed42013-12-05 18:39:50 -0800131 @Override
132 public Collection<Class<? extends IFloodlightService>> getModuleServices() {
133 Collection<Class<? extends IFloodlightService>> l
134 = new ArrayList<Class<? extends IFloodlightService>>();
135 l.add(IProxyArpService.class);
136 return l;
Jonathan Harta8887642013-10-28 13:46:54 -0700137 }
Jonathan Harte93aed42013-12-05 18:39:50 -0800138
139 @Override
140 public Map<Class<? extends IFloodlightService>, IFloodlightService> getServiceImpls() {
141 Map<Class<? extends IFloodlightService>, IFloodlightService> m
142 = new HashMap<Class<? extends IFloodlightService>, IFloodlightService>();
143 m.put(IProxyArpService.class, this);
144 return m;
145 }
146
147 @Override
148 public Collection<Class<? extends IFloodlightService>> getModuleDependencies() {
149 Collection<Class<? extends IFloodlightService>> dependencies
150 = new ArrayList<Class<? extends IFloodlightService>>();
151 dependencies.add(IFloodlightProviderService.class);
152 dependencies.add(ITopologyService.class);
153 dependencies.add(IRestApiService.class);
154 dependencies.add(IDatagridService.class);
155 dependencies.add(IConfigInfoService.class);
156 return dependencies;
157 }
Jonathan Harta8887642013-10-28 13:46:54 -0700158
Jonathan Harte93aed42013-12-05 18:39:50 -0800159 @Override
160 public void init(FloodlightModuleContext context){
161 this.floodlightProvider =
162 context.getServiceImpl(IFloodlightProviderService.class);
163 this.topology = context.getServiceImpl(ITopologyService.class);
164 this.datagrid = context.getServiceImpl(IDatagridService.class);
165 this.configService = context.getServiceImpl(IConfigInfoService.class);
166 this.restApi = context.getServiceImpl(IRestApiService.class);
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200167
Jonathan Hartabad6a52013-09-30 18:17:21 +1300168 arpCache = new ArpCache();
Jonathan Hartdf6ec332013-08-04 01:37:14 +1200169
Jonathan Hart4dfc3652013-08-02 20:22:36 +1200170 arpRequests = Multimaps.synchronizedSetMultimap(
171 HashMultimap.<InetAddress, ArpRequest>create());
Jonathan Hart9a21e0d2013-11-14 15:09:09 -0800172
173 topoSwitchService = new TopoSwitchServiceImpl();
Jonathan Hart2f790d22013-08-15 14:01:24 +1200174 }
175
Jonathan Harte93aed42013-12-05 18:39:50 -0800176 @Override
177 public void startUp(FloodlightModuleContext context) {
Jonathan Harta8887642013-10-28 13:46:54 -0700178 this.vlan = configService.getVlan();
Jonathan Hart1cf9de02013-10-21 17:42:29 -0700179 log.info("vlan set to {}", this.vlan);
180
Jonathan Hart5afde492013-10-01 12:30:53 +1300181 restApi.addRestletRoutable(new ArpWebRoutable());
Jonathan Harta8887642013-10-28 13:46:54 -0700182 floodlightProvider.addOFMessageListener(OFType.PACKET_IN, this);
Jonathan Hart5afde492013-10-01 12:30:53 +1300183
Jonathan Hart18ad55c2013-11-11 22:49:55 -0800184 datagrid.registerArpEventHandler(this);
185
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700186 deviceStorage = new DeviceStorageImpl();
187 deviceStorage.init("");
188
Jonathan Hart4aa2b4e2013-09-24 14:50:23 +1200189 Timer arpTimer = new Timer("arp-processing");
Jonathan Hartdf6ec332013-08-04 01:37:14 +1200190 arpTimer.scheduleAtFixedRate(new TimerTask() {
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200191 @Override
192 public void run() {
Jonathan Hartdf6ec332013-08-04 01:37:14 +1200193 doPeriodicArpProcessing();
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200194 }
Jonathan Hartdf6ec332013-08-04 01:37:14 +1200195 }, 0, ARP_TIMER_PERIOD);
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200196 }
197
Jonathan Hartdf6ec332013-08-04 01:37:14 +1200198 /*
199 * Function that runs periodically to manage the asynchronous request mechanism.
200 * It basically cleans up old ARP requests if we don't get a response for them.
201 * The caller can designate that a request should be retried indefinitely, and
202 * this task will handle that as well.
203 */
204 private void doPeriodicArpProcessing() {
205 SetMultimap<InetAddress, ArpRequest> retryList
206 = HashMultimap.<InetAddress, ArpRequest>create();
207
208 //Have to synchronize externally on the Multimap while using an iterator,
209 //even though it's a synchronizedMultimap
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200210 synchronized (arpRequests) {
Jonathan Hart3cd48622013-12-12 14:43:40 -0800211 //log.debug("Current have {} outstanding requests",
212 //arpRequests.size());
Jonathan Hartdf6ec332013-08-04 01:37:14 +1200213
214 Iterator<Map.Entry<InetAddress, ArpRequest>> it
215 = arpRequests.entries().iterator();
216
217 while (it.hasNext()) {
218 Map.Entry<InetAddress, ArpRequest> entry
219 = it.next();
220 ArpRequest request = entry.getValue();
221 if (request.isExpired()) {
222 log.debug("Cleaning expired ARP request for {}",
223 entry.getKey().getHostAddress());
224
pingping-lin017a8922013-12-11 11:15:33 +0800225 //if he ARP Request is expired and then delete the device
226 IDeviceObject targetDevice =
227 deviceStorage.getDeviceByIP(InetAddresses.coerceToInteger(entry.getKey()));
228
229 if(targetDevice!=null)
230 {deviceStorage.removeDevice(targetDevice);
231 log.debug("RemoveDevice: {} due to no have not recieve the ARP reply", targetDevice.toString());
232 }
233
Jonathan Hartdf6ec332013-08-04 01:37:14 +1200234 it.remove();
235
236 if (request.shouldRetry()) {
237 retryList.put(entry.getKey(), request);
238 }
239 }
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200240 }
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200241 }
Jonathan Hartdf6ec332013-08-04 01:37:14 +1200242
243 for (Map.Entry<InetAddress, Collection<ArpRequest>> entry
244 : retryList.asMap().entrySet()) {
245
246 InetAddress address = entry.getKey();
247
248 log.debug("Resending ARP request for {}", address.getHostAddress());
249
250 sendArpRequestForAddress(address);
251
252 for (ArpRequest request : entry.getValue()) {
253 arpRequests.put(address, new ArpRequest(request));
254 }
255 }
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200256 }
257
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200258 @Override
259 public String getName() {
Jonathan Harta18e4792013-10-31 10:10:54 -0700260 return "proxyarpmanager";
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200261 }
262
263 @Override
264 public boolean isCallbackOrderingPrereq(OFType type, String name) {
Jonathan Harta18e4792013-10-31 10:10:54 -0700265 if (type == OFType.PACKET_IN) {
266 return "devicemanager".equals(name);
267 }
268 else {
269 return false;
270 }
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200271 }
272
273 @Override
274 public boolean isCallbackOrderingPostreq(OFType type, String name) {
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200275 return false;
276 }
277
278 @Override
279 public Command receive(
280 IOFSwitch sw, OFMessage msg, FloodlightContext cntx) {
281
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200282 OFPacketIn pi = (OFPacketIn) msg;
283
284 Ethernet eth = IFloodlightProviderService.bcStore.get(cntx,
285 IFloodlightProviderService.CONTEXT_PI_PAYLOAD);
286
287 if (eth.getEtherType() == Ethernet.TYPE_ARP){
Jonathan Hart5ea7cc02013-11-12 11:56:23 -0800288 ARP arp = (ARP) eth.getPayload();
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200289 if (arp.getOpCode() == ARP.OP_REQUEST) {
pingping-lin017a8922013-12-11 11:15:33 +0800290 log.debug("receive ARP request");
Jonathan Harta18e4792013-10-31 10:10:54 -0700291 //TODO check what the DeviceManager does about propagating
292 //or swallowing ARPs. We want to go after DeviceManager in the
293 //chain but we really need it to CONTINUE ARP packets so we can
294 //get them.
Jonathan Hart18ad55c2013-11-11 22:49:55 -0800295 handleArpRequest(sw, pi, arp, eth);
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200296 }
297 else if (arp.getOpCode() == ARP.OP_REPLY) {
pingping-lin017a8922013-12-11 11:15:33 +0800298 log.debug("receive ARP reply");
299 handleArpReply(sw, pi, arp);
300 sendToOtherNodesReply(eth, pi);
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200301 }
Jonathan Hart17672992013-12-12 16:15:16 -0800302
303 // Stop ARP packets here
304 return Command.STOP;
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200305 }
306
Jonathan Hart17672992013-12-12 16:15:16 -0800307 // Propagate everything else
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200308 return Command.CONTINUE;
309 }
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200310
Jonathan Hart18ad55c2013-11-11 22:49:55 -0800311 private void handleArpRequest(IOFSwitch sw, OFPacketIn pi, ARP arp, Ethernet eth) {
Jonathan Hart08ee8522013-09-22 17:34:43 +1200312 if (log.isTraceEnabled()) {
313 log.trace("ARP request received for {}",
314 inetAddressToString(arp.getTargetProtocolAddress()));
315 }
Jonathan Hart2f790d22013-08-15 14:01:24 +1200316
317 InetAddress target;
318 try {
pingping-linb8757bf2013-12-13 01:48:58 +0800319 target = InetAddress.getByAddress(arp.getTargetProtocolAddress());
Jonathan Hart2f790d22013-08-15 14:01:24 +1200320 } catch (UnknownHostException e) {
321 log.debug("Invalid address in ARP request", e);
322 return;
323 }
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200324
Jonathan Harta8887642013-10-28 13:46:54 -0700325 if (configService.fromExternalNetwork(sw.getId(), pi.getInPort())) {
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200326 //If the request came from outside our network, we only care if
327 //it was a request for one of our interfaces.
Jonathan Harta8887642013-10-28 13:46:54 -0700328 if (configService.isInterfaceAddress(target)) {
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200329 log.trace("ARP request for our interface. Sending reply {} => {}",
Jonathan Harta8887642013-10-28 13:46:54 -0700330 target.getHostAddress(), configService.getRouterMacAddress());
pingping-linb8757bf2013-12-13 01:48:58 +0800331
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200332 sendArpReply(arp, sw.getId(), pi.getInPort(),
Jonathan Harta8887642013-10-28 13:46:54 -0700333 configService.getRouterMacAddress());
Jonathan Hart2f790d22013-08-15 14:01:24 +1200334 }
pingping-linb8757bf2013-12-13 01:48:58 +0800335
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200336 return;
337 }
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200338
Jonathan Harta18e4792013-10-31 10:10:54 -0700339 //MACAddress macAddress = arpCache.lookup(target);
pingping-lin017a8922013-12-11 11:15:33 +0800340
Jonathan Hartd6ed62b2013-11-01 13:18:25 -0700341 IDeviceObject targetDevice =
342 deviceStorage.getDeviceByIP(InetAddresses.coerceToInteger(target));
Jonathan Hart18ad55c2013-11-11 22:49:55 -0800343 log.debug("targetDevice: {}", targetDevice);
pingping-linb8757bf2013-12-13 01:48:58 +0800344
345 arpRequests.put(target, new ArpRequest(
346 new HostArpRequester(arp, sw.getId(), pi.getInPort()), false));
347
Jonathan Harta18e4792013-10-31 10:10:54 -0700348 if (targetDevice != null) {
pingping-linb8757bf2013-12-13 01:48:58 +0800349 // Even the device in our database is not null, we do not reply to the request directly, but to check whether the device is still valid
Jonathan Harta18e4792013-10-31 10:10:54 -0700350 MACAddress macAddress = MACAddress.valueOf(targetDevice.getMACAddress());
pingping-linb8757bf2013-12-13 01:48:58 +0800351
Jonathan Harta18e4792013-10-31 10:10:54 -0700352 if (log.isTraceEnabled()) {
pingping-linb8757bf2013-12-13 01:48:58 +0800353 log.trace("The target Device Record in DB is: {} => {} from ARP request host at {}/{}", new Object [] {
354 inetAddressToString(arp.getTargetProtocolAddress()),
355 macAddress.toString(),
356 HexString.toHexString(sw.getId()), pi.getInPort()});
Jonathan Harta18e4792013-10-31 10:10:54 -0700357 }
pingping-linb8757bf2013-12-13 01:48:58 +0800358
359 // sendArpReply(arp, sw.getId(), pi.getInPort(), macAddress);
360
361 log.trace("Checking the device info from DB is still valid or not");
362 Iterable<IPortObject> outPorts=targetDevice.getAttachedPorts();
363
364 if(!outPorts.iterator().hasNext()){
365 log.debug("outPort : null");
Jonathan Hartf9bd98d2013-12-13 11:40:55 -0800366 sendToOtherNodes(eth, sw.getId(), pi);
pingping-linb8757bf2013-12-13 01:48:58 +0800367 }else{
368
369 for (IPortObject portObject : outPorts) {
370 long outSwitch=0;
371 short outPort=0;
372
373
374 if (!portObject.getLinkedPorts().iterator().hasNext()) {
375 outPort=portObject.getNumber();
376 log.debug("outPort:{} ", outPort);
377 }
378
pingping-lin568c6012013-12-14 05:57:11 +0800379 ISwitchObject outSwitchObject = portObject.getSwitch();
380 outSwitch= HexString.toLong(outSwitchObject.getDPID());
381 log.debug("outSwitch.DPID:{}; outPort: {}", outSwitchObject.getDPID(), outPort );
382 sendToOtherNodes( eth, pi, outSwitch, outPort);
383
pingping-linb8757bf2013-12-13 01:48:58 +0800384 }
Jonathan Hart08ee8522013-09-22 17:34:43 +1200385 }
pingping-linb8757bf2013-12-13 01:48:58 +0800386
387 }else {
388 log.debug("The Device info in DB is {} for IP {}", targetDevice, inetAddressToString(arp.getTargetProtocolAddress()));
389
390 // We don't know the device so broadcast the request out
Jonathan Hartf9bd98d2013-12-13 11:40:55 -0800391 sendToOtherNodes(eth, sw.getId(), pi);
pingping-lin017a8922013-12-11 11:15:33 +0800392 }
393
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200394 }
395
Jonathan Hart1912afc2013-10-11 12:02:44 +1300396 private void handleArpReply(IOFSwitch sw, OFPacketIn pi, ARP arp){
Jonathan Hart08ee8522013-09-22 17:34:43 +1200397 if (log.isTraceEnabled()) {
398 log.trace("ARP reply recieved: {} => {}, on {}/{}", new Object[] {
399 inetAddressToString(arp.getSenderProtocolAddress()),
400 HexString.toHexString(arp.getSenderHardwareAddress()),
401 HexString.toHexString(sw.getId()), pi.getInPort()});
402 }
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200403
Jonathan Hartabad6a52013-09-30 18:17:21 +1300404 InetAddress senderIpAddress;
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200405 try {
Jonathan Hartabad6a52013-09-30 18:17:21 +1300406 senderIpAddress = InetAddress.getByAddress(arp.getSenderProtocolAddress());
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200407 } catch (UnknownHostException e) {
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200408 log.debug("Invalid address in ARP reply", e);
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200409 return;
410 }
411
Jonathan Hartabad6a52013-09-30 18:17:21 +1300412 MACAddress senderMacAddress = MACAddress.valueOf(arp.getSenderHardwareAddress());
413
pingping-lin017a8922013-12-11 11:15:33 +0800414 //arpCache.update(senderIpAddress, senderMacAddress);
Jonathan Hartabad6a52013-09-30 18:17:21 +1300415
416 //See if anyone's waiting for this ARP reply
417 Set<ArpRequest> requests = arpRequests.get(senderIpAddress);
Jonathan Hart4dfc3652013-08-02 20:22:36 +1200418
419 //Synchronize on the Multimap while using an iterator for one of the sets
Jonathan Harte751e1c2013-08-23 00:48:47 +1200420 List<ArpRequest> requestsToSend = new ArrayList<ArpRequest>(requests.size());
Jonathan Hart4dfc3652013-08-02 20:22:36 +1200421 synchronized (arpRequests) {
422 Iterator<ArpRequest> it = requests.iterator();
423 while (it.hasNext()) {
424 ArpRequest request = it.next();
425 it.remove();
Jonathan Harte751e1c2013-08-23 00:48:47 +1200426 requestsToSend.add(request);
Jonathan Hart4dfc3652013-08-02 20:22:36 +1200427 }
428 }
Jonathan Harte751e1c2013-08-23 00:48:47 +1200429
430 //Don't hold an ARP lock while dispatching requests
431 for (ArpRequest request : requestsToSend) {
Jonathan Hartabad6a52013-09-30 18:17:21 +1300432 request.dispatchReply(senderIpAddress, senderMacAddress);
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200433 }
434 }
435
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200436 private void sendArpRequestForAddress(InetAddress ipAddress) {
Jonathan Hart08ee8522013-09-22 17:34:43 +1200437 //TODO what should the sender IP address and MAC address be if no
438 //IP addresses are configured? Will there ever be a need to send
439 //ARP requests from the controller in that case?
440 //All-zero MAC address doesn't seem to work - hosts don't respond to it
441
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200442 byte[] zeroIpv4 = {0x0, 0x0, 0x0, 0x0};
443 byte[] zeroMac = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0};
Jonathan Hart08ee8522013-09-22 17:34:43 +1200444 byte[] genericNonZeroMac = {0x0, 0x0, 0x0, 0x0, 0x0, 0x01};
Jonathan Hart4dfc3652013-08-02 20:22:36 +1200445 byte[] broadcastMac = {(byte)0xff, (byte)0xff, (byte)0xff,
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200446 (byte)0xff, (byte)0xff, (byte)0xff};
447
448 ARP arpRequest = new ARP();
449
450 arpRequest.setHardwareType(ARP.HW_TYPE_ETHERNET)
451 .setProtocolType(ARP.PROTO_TYPE_IP)
452 .setHardwareAddressLength((byte)Ethernet.DATALAYER_ADDRESS_LENGTH)
Jonathan Hart08ee8522013-09-22 17:34:43 +1200453 .setProtocolAddressLength((byte)IPv4.ADDRESS_LENGTH)
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200454 .setOpCode(ARP.OP_REQUEST)
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200455 .setTargetHardwareAddress(zeroMac)
456 .setTargetProtocolAddress(ipAddress.getAddress());
Jonathan Hart2f790d22013-08-15 14:01:24 +1200457
Jonathan Harta8887642013-10-28 13:46:54 -0700458 MACAddress routerMacAddress = configService.getRouterMacAddress();
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200459 //TODO hack for now as it's unclear what the MAC address should be
460 byte[] senderMacAddress = genericNonZeroMac;
Jonathan Hart08ee8522013-09-22 17:34:43 +1200461 if (routerMacAddress != null) {
462 senderMacAddress = routerMacAddress.toBytes();
Jonathan Hart2f790d22013-08-15 14:01:24 +1200463 }
Jonathan Hart08ee8522013-09-22 17:34:43 +1200464 arpRequest.setSenderHardwareAddress(senderMacAddress);
465
466 byte[] senderIPAddress = zeroIpv4;
Jonathan Harta8887642013-10-28 13:46:54 -0700467 Interface intf = configService.getOutgoingInterface(ipAddress);
Jonathan Hart08ee8522013-09-22 17:34:43 +1200468 if (intf != null) {
469 senderIPAddress = intf.getIpAddress().getAddress();
470 }
Jonathan Hart2f790d22013-08-15 14:01:24 +1200471
472 arpRequest.setSenderProtocolAddress(senderIPAddress);
473
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200474 Ethernet eth = new Ethernet();
Jonathan Hart08ee8522013-09-22 17:34:43 +1200475 eth.setSourceMACAddress(senderMacAddress)
Jonathan Hart4dfc3652013-08-02 20:22:36 +1200476 .setDestinationMACAddress(broadcastMac)
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200477 .setEtherType(Ethernet.TYPE_ARP)
478 .setPayload(arpRequest);
479
Jonathan Hart1cf9de02013-10-21 17:42:29 -0700480 if (vlan != NO_VLAN) {
481 eth.setVlanID(vlan)
482 .setPriorityCode((byte)0);
483 }
484
Jonathan Hart2f790d22013-08-15 14:01:24 +1200485 sendArpRequestToSwitches(ipAddress, eth.serialize());
486 }
487
488 private void sendArpRequestToSwitches(InetAddress dstAddress, byte[] arpRequest) {
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200489 sendArpRequestToSwitches(dstAddress, arpRequest,
490 0, OFPort.OFPP_NONE.getValue());
Jonathan Hart2f790d22013-08-15 14:01:24 +1200491 }
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200492
Jonathan Hart2f790d22013-08-15 14:01:24 +1200493 private void sendArpRequestToSwitches(InetAddress dstAddress, byte[] arpRequest,
494 long inSwitch, short inPort) {
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200495
Jonathan Harta8887642013-10-28 13:46:54 -0700496 if (configService.hasLayer3Configuration()) {
497 Interface intf = configService.getOutgoingInterface(dstAddress);
Jonathan Hart08ee8522013-09-22 17:34:43 +1200498 if (intf != null) {
499 sendArpRequestOutPort(arpRequest, intf.getDpid(), intf.getPort());
500 }
501 else {
502 //TODO here it should be broadcast out all non-interface edge ports.
503 //I think we can assume that if it's not a request for an external
504 //network, it's an ARP for a host in our own network. So we want to
505 //send it out all edge ports that don't have an interface configured
506 //to ensure it reaches all hosts in our network.
507 log.debug("No interface found to send ARP request for {}",
508 dstAddress.getHostAddress());
509 }
510 }
511 else {
512 broadcastArpRequestOutEdge(arpRequest, inSwitch, inPort);
513 }
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200514 }
515
Jonathan Hartf9bd98d2013-12-13 11:40:55 -0800516 private void sendToOtherNodes(Ethernet eth, long inSwitchId, OFPacketIn pi) {
Jonathan Hart5ea7cc02013-11-12 11:56:23 -0800517 ARP arp = (ARP) eth.getPayload();
Jonathan Hartd3003252013-11-15 09:44:46 -0800518
Jonathan Hart5ea7cc02013-11-12 11:56:23 -0800519 if (log.isTraceEnabled()) {
520 log.trace("Sending ARP request for {} to other ONOS instances",
Jonathan Hart9a21e0d2013-11-14 15:09:09 -0800521 inetAddressToString(arp.getTargetProtocolAddress()));
Jonathan Hart5ea7cc02013-11-12 11:56:23 -0800522 }
Jonathan Hartd3003252013-11-15 09:44:46 -0800523
524 InetAddress targetAddress;
525 try {
526 targetAddress = InetAddress.getByAddress(arp.getTargetProtocolAddress());
527 } catch (UnknownHostException e) {
528 log.error("Unknown host", e);
529 return;
530 }
531
Jonathan Hartf9bd98d2013-12-13 11:40:55 -0800532 datagrid.sendArpRequest(ArpMessage.newRequest(targetAddress, eth.serialize(),
533 -1L, (short)-1, inSwitchId, pi.getInPort()));
Jonathan Hart18ad55c2013-11-11 22:49:55 -0800534 }
pingping-lin017a8922013-12-11 11:15:33 +0800535 //hazelcast to other ONOS instances to send the ARP packet out on outPort of outSwitch
536 private void sendToOtherNodes(Ethernet eth, OFPacketIn pi, long outSwitch, short outPort) {
537 ARP arp = (ARP) eth.getPayload();
538
539 if (log.isTraceEnabled()) {
540 log.trace("Sending ARP request for {} to other ONOS instances with outSwitch {} ",
541 inetAddressToString(arp.getTargetProtocolAddress()), String.valueOf(outSwitch));
542
543 }
544
545 InetAddress targetAddress;
546 try {
547 targetAddress = InetAddress.getByAddress(arp.getTargetProtocolAddress());
548 } catch (UnknownHostException e) {
549 log.error("Unknown host", e);
550 return;
551 }
552
553 datagrid.sendArpRequest(ArpMessage.newRequest(targetAddress, eth.serialize(), outSwitch, outPort));
554 //datagrid.sendArpRequest(ArpMessage.newRequest(targetAddress, eth.serialize()));
555
556
557 }
558 private void sendToOtherNodesReply(Ethernet eth, OFPacketIn pi) {
559 ARP arp = (ARP) eth.getPayload();
560
561 if (log.isTraceEnabled()) {
562 log.trace("Sending ARP reply for {} to other ONOS instances",
563 inetAddressToString(arp.getSenderProtocolAddress()));
564 }
565
566 InetAddress targetAddress;
567 MACAddress mac = new MACAddress(arp.getSenderHardwareAddress());
568
569 try {
570 targetAddress = InetAddress.getByAddress(arp.getSenderProtocolAddress());
571 } catch (UnknownHostException e) {
572 log.error("Unknown host", e);
573 return;
574 }
575
576 datagrid.sendArpRequest(ArpMessage.newReply(targetAddress,mac));
577 //datagrid.sendArpReply(ArpMessage.newRequest(targetAddress, eth.serialize()));
578
579 }
Jonathan Hart18ad55c2013-11-11 22:49:55 -0800580
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200581 private void broadcastArpRequestOutEdge(byte[] arpRequest, long inSwitch, short inPort) {
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200582 for (IOFSwitch sw : floodlightProvider.getSwitches().values()){
583 Collection<Short> enabledPorts = sw.getEnabledPortNumbers();
584 Set<Short> linkPorts = topology.getPortsWithLinks(sw.getId());
585
Jonathan Hart8ec133c2013-06-26 15:25:18 +1200586 if (linkPorts == null){
Jonathan Harta18e4792013-10-31 10:10:54 -0700587 //I think this means the switch doesn't have any links.
588 //continue;
589 linkPorts = new HashSet<Short>();
Jonathan Hart8ec133c2013-06-26 15:25:18 +1200590 }
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200591
Jonathan Harta18e4792013-10-31 10:10:54 -0700592
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200593 OFPacketOut po = new OFPacketOut();
594 po.setInPort(OFPort.OFPP_NONE)
595 .setBufferId(-1)
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200596 .setPacketData(arpRequest);
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200597
598 List<OFAction> actions = new ArrayList<OFAction>();
599
600 for (short portNum : enabledPorts){
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200601 if (linkPorts.contains(portNum) ||
602 (sw.getId() == inSwitch && portNum == inPort)){
603 //If this port isn't an edge port or is the ingress port
604 //for the ARP, don't broadcast out it
605 continue;
606 }
607
608 actions.add(new OFActionOutput(portNum));
609 }
610
611 po.setActions(actions);
612 short actionsLength = (short) (actions.size() * OFActionOutput.MINIMUM_LENGTH);
613 po.setActionsLength(actionsLength);
614 po.setLengthU(OFPacketOut.MINIMUM_LENGTH + actionsLength
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200615 + arpRequest.length);
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200616
617 List<OFMessage> msgList = new ArrayList<OFMessage>();
618 msgList.add(po);
619
620 try {
621 sw.write(msgList, null);
622 sw.flush();
623 } catch (IOException e) {
624 log.error("Failure writing packet out to switch", e);
625 }
626 }
627 }
628
Jonathan Hartf9bd98d2013-12-13 11:40:55 -0800629 private void broadcastArpRequestOutMyEdge(byte[] arpRequest,
630 long inSwitch, short inPort) {
Jonathan Hartba9ced92013-11-24 16:52:13 -0800631 List<SwitchPort> switchPorts = new ArrayList<SwitchPort>();
632
Jonathan Hart9a21e0d2013-11-14 15:09:09 -0800633 for (IOFSwitch sw : floodlightProvider.getSwitches().values()) {
634
635 OFPacketOut po = new OFPacketOut();
636 po.setInPort(OFPort.OFPP_NONE)
637 .setBufferId(-1)
638 .setPacketData(arpRequest);
639
640 List<OFAction> actions = new ArrayList<OFAction>();
641
642 Iterable<IPortObject> ports
643 = topoSwitchService.getPortsOnSwitch(sw.getStringId());
644 if (ports == null) {
645 continue;
646 }
647
648 for (IPortObject portObject : ports) {
649 if (!portObject.getLinkedPorts().iterator().hasNext()) {
Jonathan Hartf9bd98d2013-12-13 11:40:55 -0800650 short portNumber = portObject.getNumber();
651
652 if (sw.getId() == inSwitch && portNumber == inPort) {
653 // This is the port that the ARP message came in,
654 // so don't broadcast out this port
655 continue;
656 }
657
Jonathan Hartba9ced92013-11-24 16:52:13 -0800658 switchPorts.add(new SwitchPort(new Dpid(sw.getId()),
Jonathan Hartf9bd98d2013-12-13 11:40:55 -0800659 new Port(portNumber)));
660 actions.add(new OFActionOutput(portNumber));
Jonathan Hart9a21e0d2013-11-14 15:09:09 -0800661 }
662 }
663
664 po.setActions(actions);
665 short actionsLength = (short)
666 (actions.size() * OFActionOutput.MINIMUM_LENGTH);
667 po.setActionsLength(actionsLength);
668 po.setLengthU(OFPacketOut.MINIMUM_LENGTH + actionsLength
669 + arpRequest.length);
670
671 try {
672 sw.write(po, null);
673 sw.flush();
674 } catch (IOException e) {
675 log.error("Failure writing packet out to switch", e);
676 }
677 }
Jonathan Hartba9ced92013-11-24 16:52:13 -0800678
pingping-lin017a8922013-12-11 11:15:33 +0800679 log.debug("Broadcast ARP request to: {}", switchPorts);
Jonathan Hart9a21e0d2013-11-14 15:09:09 -0800680 }
681
Jonathan Hart2f790d22013-08-15 14:01:24 +1200682 private void sendArpRequestOutPort(byte[] arpRequest, long dpid, short port) {
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200683 if (log.isTraceEnabled()) {
684 log.trace("Sending ARP request out {}/{}",
685 HexString.toHexString(dpid), port);
686 }
Jonathan Hart2f790d22013-08-15 14:01:24 +1200687
688 OFPacketOut po = new OFPacketOut();
689 po.setInPort(OFPort.OFPP_NONE)
690 .setBufferId(-1)
691 .setPacketData(arpRequest);
692
693 List<OFAction> actions = new ArrayList<OFAction>();
694 actions.add(new OFActionOutput(port));
695 po.setActions(actions);
696 short actionsLength = (short) (actions.size() * OFActionOutput.MINIMUM_LENGTH);
697 po.setActionsLength(actionsLength);
698 po.setLengthU(OFPacketOut.MINIMUM_LENGTH + actionsLength
699 + arpRequest.length);
700
701 IOFSwitch sw = floodlightProvider.getSwitches().get(dpid);
702
703 if (sw == null) {
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200704 log.warn("Switch not found when sending ARP request");
Jonathan Hart2f790d22013-08-15 14:01:24 +1200705 return;
706 }
707
708 try {
709 sw.write(po, null);
710 sw.flush();
711 } catch (IOException e) {
712 log.error("Failure writing packet out to switch", e);
713 }
714 }
715
Jonathan Hartda4d0e12013-09-30 21:00:20 +1300716 private void sendArpReply(ARP arpRequest, long dpid, short port, MACAddress targetMac) {
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200717 if (log.isTraceEnabled()) {
718 log.trace("Sending reply {} => {} to {}", new Object[] {
719 inetAddressToString(arpRequest.getTargetProtocolAddress()),
Jonathan Hartabad6a52013-09-30 18:17:21 +1300720 targetMac,
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200721 inetAddressToString(arpRequest.getSenderProtocolAddress())});
722 }
Jonathan Hart1633a402013-08-24 11:38:56 +1200723
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200724 ARP arpReply = new ARP();
725 arpReply.setHardwareType(ARP.HW_TYPE_ETHERNET)
726 .setProtocolType(ARP.PROTO_TYPE_IP)
727 .setHardwareAddressLength((byte)Ethernet.DATALAYER_ADDRESS_LENGTH)
Jonathan Hart08ee8522013-09-22 17:34:43 +1200728 .setProtocolAddressLength((byte)IPv4.ADDRESS_LENGTH)
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200729 .setOpCode(ARP.OP_REPLY)
Jonathan Hartabad6a52013-09-30 18:17:21 +1300730 .setSenderHardwareAddress(targetMac.toBytes())
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200731 .setSenderProtocolAddress(arpRequest.getTargetProtocolAddress())
732 .setTargetHardwareAddress(arpRequest.getSenderHardwareAddress())
733 .setTargetProtocolAddress(arpRequest.getSenderProtocolAddress());
734
Jonathan Hart1cf9de02013-10-21 17:42:29 -0700735
736
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200737 Ethernet eth = new Ethernet();
738 eth.setDestinationMACAddress(arpRequest.getSenderHardwareAddress())
Jonathan Hartabad6a52013-09-30 18:17:21 +1300739 .setSourceMACAddress(targetMac.toBytes())
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200740 .setEtherType(Ethernet.TYPE_ARP)
741 .setPayload(arpReply);
742
Jonathan Hart1cf9de02013-10-21 17:42:29 -0700743 if (vlan != NO_VLAN) {
744 eth.setVlanID(vlan)
745 .setPriorityCode((byte)0);
746 }
747
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200748 List<OFAction> actions = new ArrayList<OFAction>();
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200749 actions.add(new OFActionOutput(port));
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200750
751 OFPacketOut po = new OFPacketOut();
752 po.setInPort(OFPort.OFPP_NONE)
753 .setBufferId(-1)
Jonathan Hart8ec133c2013-06-26 15:25:18 +1200754 .setPacketData(eth.serialize())
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200755 .setActions(actions)
756 .setActionsLength((short)OFActionOutput.MINIMUM_LENGTH)
757 .setLengthU(OFPacketOut.MINIMUM_LENGTH + OFActionOutput.MINIMUM_LENGTH
758 + po.getPacketData().length);
759
760 List<OFMessage> msgList = new ArrayList<OFMessage>();
761 msgList.add(po);
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200762
763 IOFSwitch sw = floodlightProvider.getSwitches().get(dpid);
764
765 if (sw == null) {
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200766 log.warn("Switch {} not found when sending ARP reply",
Jonathan Hart1633a402013-08-24 11:38:56 +1200767 HexString.toHexString(dpid));
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200768 return;
769 }
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200770
771 try {
772 sw.write(msgList, null);
773 sw.flush();
774 } catch (IOException e) {
Jonathan Hart5b803bc2013-09-23 14:46:11 +1200775 log.error("Failure writing packet out to switch", e);
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200776 }
777 }
Jonathan Hartda4d0e12013-09-30 21:00:20 +1300778
779 private String inetAddressToString(byte[] bytes) {
780 try {
781 return InetAddress.getByAddress(bytes).getHostAddress();
782 } catch (UnknownHostException e) {
783 log.debug("Invalid IP address", e);
784 return "";
785 }
786 }
787
788 /*
789 * IProxyArpService methods
790 */
Jonathan Hartc824ad02013-07-03 15:58:45 +1200791
Jonathan Hart4dfc3652013-08-02 20:22:36 +1200792 @Override
Jonathan Hartabad6a52013-09-30 18:17:21 +1300793 public MACAddress getMacAddress(InetAddress ipAddress) {
794 return arpCache.lookup(ipAddress);
Jonathan Hart6261dcd2013-07-22 17:58:35 +1200795 }
Jonathan Hart4dfc3652013-08-02 20:22:36 +1200796
797 @Override
798 public void sendArpRequest(InetAddress ipAddress, IArpRequester requester,
799 boolean retry) {
Jonathan Hartdf6ec332013-08-04 01:37:14 +1200800 arpRequests.put(ipAddress, new ArpRequest(requester, retry));
Jonathan Hartf0c0dcb2013-07-24 15:28:42 +1200801
Jonathan Hart6e618212013-08-21 22:28:43 +1200802 //Sanity check to make sure we don't send a request for our own address
Jonathan Harta8887642013-10-28 13:46:54 -0700803 if (!configService.isInterfaceAddress(ipAddress)) {
Jonathan Hart6e618212013-08-21 22:28:43 +1200804 sendArpRequestForAddress(ipAddress);
805 }
806 }
Jonathan Hart5afde492013-10-01 12:30:53 +1300807
808 @Override
809 public List<String> getMappings() {
810 return arpCache.getMappings();
811 }
Jonathan Hart18ad55c2013-11-11 22:49:55 -0800812
813 /*
814 * IArpEventHandler methods
815 */
816
817 @Override
Jonathan Hartd3003252013-11-15 09:44:46 -0800818 public void arpRequestNotification(ArpMessage arpMessage) {
pingping-lin017a8922013-12-11 11:15:33 +0800819 log.debug("Received ARP notification from other instances");
pingping-linb8757bf2013-12-13 01:48:58 +0800820
Jonathan Hartd3003252013-11-15 09:44:46 -0800821 switch (arpMessage.getType()){
822 case REQUEST:
pingping-linb8757bf2013-12-13 01:48:58 +0800823 if(arpMessage.getOutSwitch() == -1 || arpMessage.getOutPort() == -1){
Jonathan Hartf9bd98d2013-12-13 11:40:55 -0800824 broadcastArpRequestOutMyEdge(arpMessage.getPacket(),
825 arpMessage.getInSwitch(), arpMessage.getInPort());
pingping-linb8757bf2013-12-13 01:48:58 +0800826 }else{
827 sendArpRequestOutPort(arpMessage.getPacket(),arpMessage.getOutSwitch(),arpMessage.getOutPort());
828 log.debug("OutSwitch in ARP request message is: {}; OutPort in ARP request message is: {}",arpMessage.getOutSwitch(),arpMessage.getOutPort());
829 }
Jonathan Hartd3003252013-11-15 09:44:46 -0800830 break;
831 case REPLY:
Jonathan Hartba9ced92013-11-24 16:52:13 -0800832 log.debug("Received ARP reply notification for {}",
833 arpMessage.getAddress());
pingping-lin017a8922013-12-11 11:15:33 +0800834 sendArpReplyToWaitingRequesters(arpMessage.getAddress(),arpMessage.getMAC());
Jonathan Hartd3003252013-11-15 09:44:46 -0800835 break;
836 }
837 }
838
pingping-lin017a8922013-12-11 11:15:33 +0800839 private void sendArpReplyToWaitingRequesters(InetAddress address, MACAddress mac) {
Jonathan Hartd3003252013-11-15 09:44:46 -0800840 log.debug("Sending ARP reply for {} to requesters",
841 address.getHostAddress());
842
843 //See if anyone's waiting for this ARP reply
844 Set<ArpRequest> requests = arpRequests.get(address);
845
846 //Synchronize on the Multimap while using an iterator for one of the sets
847 List<ArpRequest> requestsToSend = new ArrayList<ArpRequest>(requests.size());
848 synchronized (arpRequests) {
849 Iterator<ArpRequest> it = requests.iterator();
850 while (it.hasNext()) {
851 ArpRequest request = it.next();
852 it.remove();
853 requestsToSend.add(request);
854 }
855 }
856
pingping-lin017a8922013-12-11 11:15:33 +0800857 /*IDeviceObject deviceObject = deviceStorage.getDeviceByIP(
Jonathan Hartd3003252013-11-15 09:44:46 -0800858 InetAddresses.coerceToInteger(address));
859
860 MACAddress mac = MACAddress.valueOf(deviceObject.getMACAddress());
861
862 log.debug("Found {} at {} in network map",
pingping-lin017a8922013-12-11 11:15:33 +0800863 address.getHostAddress(), mac);*/
Jonathan Hartd3003252013-11-15 09:44:46 -0800864
865 //Don't hold an ARP lock while dispatching requests
866 for (ArpRequest request : requestsToSend) {
867 request.dispatchReply(address, mac);
868 }
Jonathan Hart18ad55c2013-11-11 22:49:55 -0800869 }
Jonathan Hartc7ca35d2013-06-25 20:54:25 +1200870}