2 * Copyright 2015 Open Networking Laboratory
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.onosproject.store.proxyarp.impl;
18 import com.google.common.collect.Maps;
19 import org.apache.felix.scr.annotations.Activate;
20 import org.apache.felix.scr.annotations.Component;
21 import org.apache.felix.scr.annotations.Deactivate;
22 import org.apache.felix.scr.annotations.Reference;
23 import org.apache.felix.scr.annotations.ReferenceCardinality;
24 import org.apache.felix.scr.annotations.Service;
25 import org.onlab.util.KryoNamespace;
26 import org.onosproject.cluster.ClusterService;
27 import org.onosproject.cluster.NodeId;
28 import org.onosproject.mastership.MastershipService;
29 import org.onosproject.net.ConnectPoint;
30 import org.onosproject.net.Host;
31 import org.onosproject.net.HostId;
32 import org.onosproject.net.host.HostEvent;
33 import org.onosproject.net.host.HostListener;
34 import org.onosproject.net.host.HostService;
35 import org.onosproject.net.proxyarp.ProxyArpStore;
36 import org.onosproject.net.proxyarp.ProxyArpStoreDelegate;
37 import org.onosproject.store.cluster.messaging.ClusterCommunicationService;
38 import org.onosproject.store.cluster.messaging.MessageSubject;
39 import org.onosproject.store.serializers.KryoNamespaces;
40 import org.onosproject.store.serializers.KryoSerializer;
41 import org.slf4j.Logger;
42 import org.slf4j.LoggerFactory;
44 import java.nio.ByteBuffer;
46 import java.util.concurrent.ExecutorService;
48 import static org.onlab.util.BoundedThreadPool.newFixedThreadPool;
49 import static org.onlab.util.Tools.groupedThreads;
52 * Implementation of proxy ARP distribution mechanism.
54 @Component(immediate = true)
56 public class DistributedProxyArpStore implements ProxyArpStore {
58 private Logger log = LoggerFactory.getLogger(getClass());
60 private static final MessageSubject ARP_RESPONSE_MESSAGE =
61 new MessageSubject("onos-arp-response");
63 protected final KryoSerializer serializer = new KryoSerializer() {
65 protected void setupKryoPool() {
66 serializerPool = KryoNamespace.newBuilder()
67 .register(KryoNamespaces.API)
68 .register(ArpResponseMessage.class)
69 .register(ByteBuffer.class)
74 private ProxyArpStoreDelegate delegate;
76 private Map<HostId, ArpResponseMessage> pendingMessages = Maps.newConcurrentMap();
78 private ExecutorService executor =
79 newFixedThreadPool(4, groupedThreads("onos/arp", "sender-%d"));
81 private NodeId localNodeId;
83 private HostListener hostListener = new InternalHostListener();
85 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
86 protected MastershipService mastershipService;
88 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
89 protected ClusterService clusterService;
91 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
92 protected ClusterCommunicationService commService;
94 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
95 protected HostService hostService;
99 protected void activate() {
100 localNodeId = clusterService.getLocalNode().id();
101 hostService.addListener(hostListener);
102 commService.addSubscriber(ARP_RESPONSE_MESSAGE, serializer::decode,
103 this::processArpResponse, executor);
108 protected void deactivate() {
109 commService.removeSubscriber(ARP_RESPONSE_MESSAGE);
110 hostService.removeListener(hostListener);
115 public void forward(ConnectPoint outPort, Host subject, ByteBuffer packet) {
116 NodeId nodeId = mastershipService.getMasterFor(outPort.deviceId());
117 if (nodeId.equals(localNodeId)) {
118 if (delegate != null) {
119 delegate.emitResponse(outPort, packet);
122 log.info("Forwarding ARP response from {} to {}", subject.id(), outPort);
123 commService.unicast(new ArpResponseMessage(outPort, subject, packet.array()),
124 ARP_RESPONSE_MESSAGE, serializer::encode, nodeId);
129 public void setDelegate(ProxyArpStoreDelegate delegate) {
130 this.delegate = delegate;
133 // Processes the incoming ARP response message.
134 private void processArpResponse(ArpResponseMessage msg) {
135 pendingMessages.put(msg.subject.id(), msg);
136 if (hostService.getHost(msg.subject.id()) != null) {
137 checkPendingArps(msg.subject.id());
139 // FIXME: figure out pruning so stuff does not build up
142 // Checks for pending ARP response message for the specified host.
143 // If one exists, emit response via delegate.
144 private void checkPendingArps(HostId id) {
145 ArpResponseMessage msg = pendingMessages.remove(id);
146 if (msg != null && delegate != null) {
147 log.info("Emitting ARP response from {} to {}", id, msg.outPort);
148 delegate.emitResponse(msg.outPort, ByteBuffer.wrap(msg.packet));
152 // Message carrying an ARP response.
153 private static class ArpResponseMessage {
154 private ConnectPoint outPort;
155 private Host subject;
156 private byte[] packet;
158 public ArpResponseMessage(ConnectPoint outPort, Host subject, byte[] packet) {
159 this.outPort = outPort;
160 this.subject = subject;
161 this.packet = packet;
164 private ArpResponseMessage() {
168 private class InternalHostListener implements HostListener {
170 public void event(HostEvent event) {
171 checkPendingArps(event.subject().id());