blob: 851185b50d8c89dedb8bf3bb02d4aae7ee220d5d [file] [log] [blame]
Thomas Vachuskab2c47a72015-08-05 14:22:54 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
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.
15 */
16package org.onosproject.store.proxyarp.impl;
17
18import com.google.common.collect.Maps;
19import org.apache.felix.scr.annotations.Activate;
20import org.apache.felix.scr.annotations.Component;
21import org.apache.felix.scr.annotations.Deactivate;
22import org.apache.felix.scr.annotations.Reference;
23import org.apache.felix.scr.annotations.ReferenceCardinality;
24import org.apache.felix.scr.annotations.Service;
25import org.onlab.util.KryoNamespace;
26import org.onosproject.cluster.ClusterService;
27import org.onosproject.cluster.NodeId;
28import org.onosproject.mastership.MastershipService;
29import org.onosproject.net.ConnectPoint;
30import org.onosproject.net.Host;
31import org.onosproject.net.HostId;
32import org.onosproject.net.host.HostEvent;
33import org.onosproject.net.host.HostListener;
34import org.onosproject.net.host.HostService;
35import org.onosproject.net.proxyarp.ProxyArpStore;
36import org.onosproject.net.proxyarp.ProxyArpStoreDelegate;
37import org.onosproject.store.cluster.messaging.ClusterCommunicationService;
38import org.onosproject.store.cluster.messaging.MessageSubject;
39import org.onosproject.store.serializers.KryoNamespaces;
40import org.onosproject.store.serializers.KryoSerializer;
41import org.slf4j.Logger;
42import org.slf4j.LoggerFactory;
43
44import java.nio.ByteBuffer;
45import java.util.Map;
46import java.util.concurrent.ExecutorService;
47
48import static org.onlab.util.BoundedThreadPool.newFixedThreadPool;
49import static org.onlab.util.Tools.groupedThreads;
50
51/**
52 * Implementation of proxy ARP distribution mechanism.
53 */
54@Component(immediate = true)
55@Service
56public class DistributedProxyArpStore implements ProxyArpStore {
57
58 private Logger log = LoggerFactory.getLogger(getClass());
59
60 private static final MessageSubject ARP_RESPONSE_MESSAGE =
61 new MessageSubject("onos-arp-response");
62
63 protected final KryoSerializer serializer = new KryoSerializer() {
64 @Override
65 protected void setupKryoPool() {
66 serializerPool = KryoNamespace.newBuilder()
67 .register(KryoNamespaces.API)
68 .register(ArpResponseMessage.class)
69 .register(ByteBuffer.class)
70 .build();
71 }
72 };
73
74 private ProxyArpStoreDelegate delegate;
75
76 private Map<HostId, ArpResponseMessage> pendingMessages = Maps.newConcurrentMap();
77
78 private ExecutorService executor =
79 newFixedThreadPool(4, groupedThreads("onos/arp", "sender-%d"));
80
81 private NodeId localNodeId;
82
83 private HostListener hostListener = new InternalHostListener();
84
85 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
86 protected MastershipService mastershipService;
87
88 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
89 protected ClusterService clusterService;
90
91 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
92 protected ClusterCommunicationService commService;
93
94 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
95 protected HostService hostService;
96
97
98 @Activate
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);
104 log.info("Started");
105 }
106
107 @Deactivate
108 protected void deactivate() {
109 commService.removeSubscriber(ARP_RESPONSE_MESSAGE);
110 hostService.removeListener(hostListener);
111 log.info("Stopped");
112 }
113
114 @Override
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);
120 }
121 } else {
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);
125 }
126 }
127
128 @Override
129 public void setDelegate(ProxyArpStoreDelegate delegate) {
130 this.delegate = delegate;
131 }
132
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());
138 }
139 // FIXME: figure out pruning so stuff does not build up
140 }
141
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));
149 }
150 }
151
152 // Message carrying an ARP response.
153 private static class ArpResponseMessage {
154 private ConnectPoint outPort;
155 private Host subject;
156 private byte[] packet;
157
158 public ArpResponseMessage(ConnectPoint outPort, Host subject, byte[] packet) {
159 this.outPort = outPort;
160 this.subject = subject;
161 this.packet = packet;
162 }
163
164 private ArpResponseMessage() {
165 }
166 }
167
168 private class InternalHostListener implements HostListener {
169 @Override
170 public void event(HostEvent event) {
171 checkPendingArps(event.subject().id());
172 }
173 }
174}