blob: f388aa9eb0125291cb2552828041efe706868971 [file] [log] [blame]
Thomas Vachuskab2c47a72015-08-05 14:22:54 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuskab2c47a72015-08-05 14:22:54 -07003 *
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;
HIGUCHI Yutae7290652016-05-18 11:29:01 -070040import org.onosproject.store.serializers.StoreSerializer;
Thomas Vachuskab2c47a72015-08-05 14:22:54 -070041import 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
HIGUCHI Yutae7290652016-05-18 11:29:01 -070063 protected final StoreSerializer serializer = StoreSerializer.using(
64 KryoNamespace.newBuilder()
Thomas Vachuskab2c47a72015-08-05 14:22:54 -070065 .register(KryoNamespaces.API)
HIGUCHI Yutae7290652016-05-18 11:29:01 -070066 .nextId(KryoNamespaces.BEGIN_USER_CUSTOM_ID)
Thomas Vachuskab2c47a72015-08-05 14:22:54 -070067 .register(ArpResponseMessage.class)
68 .register(ByteBuffer.class)
HIGUCHI Yutae7290652016-05-18 11:29:01 -070069 .build("ProxyArpStore"));
Thomas Vachuskab2c47a72015-08-05 14:22:54 -070070
71 private ProxyArpStoreDelegate delegate;
72
73 private Map<HostId, ArpResponseMessage> pendingMessages = Maps.newConcurrentMap();
74
75 private ExecutorService executor =
HIGUCHI Yutad9e01052016-04-14 09:31:42 -070076 newFixedThreadPool(4, groupedThreads("onos/arp", "sender-%d", log));
Thomas Vachuskab2c47a72015-08-05 14:22:54 -070077
78 private NodeId localNodeId;
79
80 private HostListener hostListener = new InternalHostListener();
81
82 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
83 protected MastershipService mastershipService;
84
85 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
86 protected ClusterService clusterService;
87
88 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
89 protected ClusterCommunicationService commService;
90
91 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
92 protected HostService hostService;
93
94
95 @Activate
96 protected void activate() {
97 localNodeId = clusterService.getLocalNode().id();
98 hostService.addListener(hostListener);
99 commService.addSubscriber(ARP_RESPONSE_MESSAGE, serializer::decode,
100 this::processArpResponse, executor);
101 log.info("Started");
102 }
103
104 @Deactivate
105 protected void deactivate() {
106 commService.removeSubscriber(ARP_RESPONSE_MESSAGE);
107 hostService.removeListener(hostListener);
108 log.info("Stopped");
109 }
110
111 @Override
112 public void forward(ConnectPoint outPort, Host subject, ByteBuffer packet) {
alshabib8a4a6002015-11-25 14:31:16 -0800113 /*NodeId nodeId = mastershipService.getMasterFor(outPort.deviceId());
Thomas Vachuskab2c47a72015-08-05 14:22:54 -0700114 if (nodeId.equals(localNodeId)) {
115 if (delegate != null) {
116 delegate.emitResponse(outPort, packet);
117 }
118 } else {
119 log.info("Forwarding ARP response from {} to {}", subject.id(), outPort);
120 commService.unicast(new ArpResponseMessage(outPort, subject, packet.array()),
121 ARP_RESPONSE_MESSAGE, serializer::encode, nodeId);
alshabib8a4a6002015-11-25 14:31:16 -0800122 }*/
123 //FIXME: Code above may be unnecessary and therefore cluster messaging
124 // and pendingMessages could be pruned as well.
125 delegate.emitResponse(outPort, packet);
Thomas Vachuskab2c47a72015-08-05 14:22:54 -0700126 }
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}