blob: 0359bae97427611d71aeba42fef4aad4da2aac36 [file] [log] [blame]
Thomas Vachuska58de4162015-09-10 16:15:33 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Thomas Vachuska58de4162015-09-10 16:15:33 -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 */
Madan Jampaniafeebbd2015-05-19 15:26:01 -070016package org.onosproject.store.cluster.messaging.impl;
17
Aaron Kruglikov1b727382016-02-09 16:17:47 -080018import javax.net.ssl.KeyManagerFactory;
19import javax.net.ssl.SSLContext;
20import javax.net.ssl.SSLEngine;
21import javax.net.ssl.TrustManagerFactory;
Brian O'Connor740e98c2017-06-29 17:07:17 -070022import java.io.File;
Aaron Kruglikov1b727382016-02-09 16:17:47 -080023import java.io.FileInputStream;
Brian O'Connor740e98c2017-06-29 17:07:17 -070024import java.io.FileNotFoundException;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -070025import java.net.ConnectException;
Brian O'Connor740e98c2017-06-29 17:07:17 -070026import java.security.Key;
Aaron Kruglikov1b727382016-02-09 16:17:47 -080027import java.security.KeyStore;
Brian O'Connor740e98c2017-06-29 17:07:17 -070028import java.security.MessageDigest;
29import java.security.cert.Certificate;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -070030import java.time.Duration;
Jordan Halterman66e6e3b2017-07-10 11:26:34 -070031import java.util.ArrayList;
Brian O'Connor740e98c2017-06-29 17:07:17 -070032import java.util.Enumeration;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -070033import java.util.Iterator;
Jordan Halterman66e6e3b2017-07-10 11:26:34 -070034import java.util.List;
Aaron Kruglikov1b727382016-02-09 16:17:47 -080035import java.util.Map;
Madan Jampania9e70a62016-03-02 16:28:18 -080036import java.util.Optional;
Brian O'Connor740e98c2017-06-29 17:07:17 -070037import java.util.StringJoiner;
Aaron Kruglikov1b727382016-02-09 16:17:47 -080038import java.util.concurrent.CompletableFuture;
39import java.util.concurrent.ConcurrentHashMap;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -070040import java.util.concurrent.ExecutionException;
Aaron Kruglikov1b727382016-02-09 16:17:47 -080041import java.util.concurrent.Executor;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -070042import java.util.concurrent.Executors;
Aaron Kruglikov1b727382016-02-09 16:17:47 -080043import java.util.concurrent.RejectedExecutionException;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -070044import java.util.concurrent.ScheduledExecutorService;
45import java.util.concurrent.ScheduledFuture;
Aaron Kruglikov1b727382016-02-09 16:17:47 -080046import java.util.concurrent.TimeUnit;
47import java.util.concurrent.TimeoutException;
48import java.util.concurrent.atomic.AtomicBoolean;
49import java.util.concurrent.atomic.AtomicLong;
50import java.util.function.BiConsumer;
51import java.util.function.BiFunction;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -070052import java.util.function.Function;
Aaron Kruglikov1b727382016-02-09 16:17:47 -080053
Jordan Halterman66e6e3b2017-07-10 11:26:34 -070054import com.google.common.cache.Cache;
55import com.google.common.cache.CacheBuilder;
56import com.google.common.collect.Lists;
57import com.google.common.collect.Maps;
58import com.google.common.util.concurrent.MoreExecutors;
59import io.netty.bootstrap.Bootstrap;
60import io.netty.bootstrap.ServerBootstrap;
61import io.netty.buffer.PooledByteBufAllocator;
62import io.netty.channel.Channel;
63import io.netty.channel.ChannelFuture;
64import io.netty.channel.ChannelHandler;
65import io.netty.channel.ChannelHandlerContext;
66import io.netty.channel.ChannelInitializer;
67import io.netty.channel.ChannelOption;
68import io.netty.channel.EventLoopGroup;
69import io.netty.channel.ServerChannel;
70import io.netty.channel.SimpleChannelInboundHandler;
71import io.netty.channel.WriteBufferWaterMark;
72import io.netty.channel.epoll.EpollEventLoopGroup;
73import io.netty.channel.epoll.EpollServerSocketChannel;
74import io.netty.channel.epoll.EpollSocketChannel;
75import io.netty.channel.nio.NioEventLoopGroup;
76import io.netty.channel.socket.SocketChannel;
77import io.netty.channel.socket.nio.NioServerSocketChannel;
78import io.netty.channel.socket.nio.NioSocketChannel;
79import org.apache.commons.math3.stat.descriptive.DescriptiveStatistics;
80import org.apache.commons.math3.stat.descriptive.SynchronizedDescriptiveStatistics;
81import org.apache.felix.scr.annotations.Activate;
82import org.apache.felix.scr.annotations.Component;
83import org.apache.felix.scr.annotations.Deactivate;
84import org.apache.felix.scr.annotations.Reference;
85import org.apache.felix.scr.annotations.ReferenceCardinality;
86import org.apache.felix.scr.annotations.Service;
87import org.onosproject.cluster.ClusterMetadataService;
88import org.onosproject.cluster.ControllerNode;
89import org.onosproject.core.HybridLogicalClockService;
90import org.onosproject.store.cluster.messaging.Endpoint;
91import org.onosproject.store.cluster.messaging.MessagingException;
92import org.onosproject.store.cluster.messaging.MessagingService;
Jordan Halterman66e6e3b2017-07-10 11:26:34 -070093import org.slf4j.Logger;
94import org.slf4j.LoggerFactory;
95
Yuta HIGUCHI90a16892016-07-20 20:36:08 -070096import static org.onlab.util.Tools.groupedThreads;
Heedo Kang4a47a302016-02-29 17:40:23 +090097import static org.onosproject.security.AppGuard.checkPermission;
98import static org.onosproject.security.AppPermission.Type.CLUSTER_WRITE;
99
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700100/**
101 * Netty based MessagingService.
102 */
Sho SHIMIZU5c396e32016-08-12 15:19:12 -0700103@Component(immediate = true)
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700104@Service
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800105public class NettyMessagingManager implements MessagingService {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700106 private static final long DEFAULT_TIMEOUT_MILLIS = 500;
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700107 private static final long HISTORY_EXPIRE_MILLIS = Duration.ofMinutes(1).toMillis();
Jordan Halterman5a5ed592017-09-12 15:09:03 -0700108 private static final long MIN_TIMEOUT_MILLIS = 250;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700109 private static final long MAX_TIMEOUT_MILLIS = 5000;
110 private static final long TIMEOUT_INTERVAL = 50;
111 private static final int WINDOW_SIZE = 100;
112 private static final double TIMEOUT_MULTIPLIER = 2.5;
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700113 private static final int CHANNEL_POOL_SIZE = 8;
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700114
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700115 private static final byte[] EMPTY_PAYLOAD = new byte[0];
116
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700117 private final Logger log = LoggerFactory.getLogger(getClass());
118
Jordan Haltermanfe2f93d2017-12-08 23:52:54 -0800119 private final LocalClientConnection localClientConnection = new LocalClientConnection();
120 private final LocalServerConnection localServerConnection = new LocalServerConnection(null);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800121
Brian O'Connor740e98c2017-06-29 17:07:17 -0700122 //TODO CONFIG_DIR is duplicated from ConfigFileBasedClusterMetadataProvider
123 private static final String CONFIG_DIR = "../config";
124 private static final String KS_FILE_NAME = "onos.jks";
125 private static final File DEFAULT_KS_FILE = new File(CONFIG_DIR, KS_FILE_NAME);
126 private static final String DEFAULT_KS_PASSWORD = "changeit";
127
Madan Jampani05833872016-07-12 23:01:39 -0700128 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
129 protected HybridLogicalClockService clockService;
130
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700131 private Endpoint localEndpoint;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800132 private int preamble;
133 private final AtomicBoolean started = new AtomicBoolean(false);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700134 private final Map<String, BiConsumer<InternalRequest, ServerConnection>> handlers = new ConcurrentHashMap<>();
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700135 private final Map<Channel, RemoteClientConnection> clientConnections = Maps.newConcurrentMap();
136 private final Map<Channel, RemoteServerConnection> serverConnections = Maps.newConcurrentMap();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800137 private final AtomicLong messageIdGenerator = new AtomicLong(0);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800138
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700139 private ScheduledFuture<?> timeoutFuture;
140
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700141 private final Map<Endpoint, List<CompletableFuture<Channel>>> channels = Maps.newConcurrentMap();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800142
143 private EventLoopGroup serverGroup;
144 private EventLoopGroup clientGroup;
145 private Class<? extends ServerChannel> serverChannelClass;
146 private Class<? extends Channel> clientChannelClass;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700147 private ScheduledExecutorService timeoutExecutor;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800148
Brian O'Connor740e98c2017-06-29 17:07:17 -0700149 protected static final boolean TLS_ENABLED = true;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800150 protected static final boolean TLS_DISABLED = false;
Brian O'Connor740e98c2017-06-29 17:07:17 -0700151 protected boolean enableNettyTls = TLS_ENABLED;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800152
Brian O'Connor740e98c2017-06-29 17:07:17 -0700153 protected TrustManagerFactory trustManager;
154 protected KeyManagerFactory keyManager;
JunHuy Lam39eb4292015-06-26 17:24:23 +0900155
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700156 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Madan Jampaniec1df022015-10-13 21:23:03 -0700157 protected ClusterMetadataService clusterMetadataService;
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700158
159 @Activate
160 public void activate() throws Exception {
Madan Jampaniec1df022015-10-13 21:23:03 -0700161 ControllerNode localNode = clusterMetadataService.getLocalNode();
Jonathan Hartd9df7bd2015-11-10 17:10:25 -0800162 getTlsParameters();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800163
164 if (started.get()) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700165 log.warn("Already running at local endpoint: {}", localEndpoint);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800166 return;
167 }
168 this.preamble = clusterMetadataService.getClusterMetadata().getName().hashCode();
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700169 this.localEndpoint = new Endpoint(localNode.ip(), localNode.tcpPort());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800170 initEventLoopGroup();
171 startAcceptingConnections();
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700172 timeoutExecutor = Executors.newSingleThreadScheduledExecutor(
173 groupedThreads("NettyMessagingEvt", "timeout", log));
174 timeoutFuture = timeoutExecutor.scheduleAtFixedRate(
175 this::timeoutAllCallbacks, TIMEOUT_INTERVAL, TIMEOUT_INTERVAL, TimeUnit.MILLISECONDS);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800176 started.set(true);
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700177 log.info("Started");
178 }
179
180 @Deactivate
181 public void deactivate() throws Exception {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800182 if (started.get()) {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800183 serverGroup.shutdownGracefully();
184 clientGroup.shutdownGracefully();
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700185 timeoutFuture.cancel(false);
186 timeoutExecutor.shutdown();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800187 started.set(false);
188 }
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700189 log.info("Stopped");
190 }
JunHuy Lam39eb4292015-06-26 17:24:23 +0900191
Jonathan Hartd9df7bd2015-11-10 17:10:25 -0800192 private void getTlsParameters() {
Brian O'Connor740e98c2017-06-29 17:07:17 -0700193 // default is TLS enabled unless key stores cannot be loaded
194 enableNettyTls = Boolean.parseBoolean(System.getProperty("enableNettyTLS", Boolean.toString(TLS_ENABLED)));
195
Jonathan Hartd9df7bd2015-11-10 17:10:25 -0800196 if (enableNettyTls) {
Brian O'Connor740e98c2017-06-29 17:07:17 -0700197 enableNettyTls = loadKeyStores();
198 }
199 }
200
201 private boolean loadKeyStores() {
202 // Maintain a local copy of the trust and key managers in case anything goes wrong
203 TrustManagerFactory tmf;
204 KeyManagerFactory kmf;
205 try {
206 String ksLocation = System.getProperty("javax.net.ssl.keyStore", DEFAULT_KS_FILE.toString());
207 String tsLocation = System.getProperty("javax.net.ssl.trustStore", DEFAULT_KS_FILE.toString());
208 char[] ksPwd = System.getProperty("javax.net.ssl.keyStorePassword", DEFAULT_KS_PASSWORD).toCharArray();
209 char[] tsPwd = System.getProperty("javax.net.ssl.trustStorePassword", DEFAULT_KS_PASSWORD).toCharArray();
210
211 tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
212 KeyStore ts = KeyStore.getInstance("JKS");
213 ts.load(new FileInputStream(tsLocation), tsPwd);
214 tmf.init(ts);
215
216 kmf = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());
217 KeyStore ks = KeyStore.getInstance("JKS");
218 ks.load(new FileInputStream(ksLocation), ksPwd);
219 kmf.init(ks, ksPwd);
220 if (log.isInfoEnabled()) {
221 logKeyStore(ks, ksLocation, ksPwd);
JunHuy Lam39eb4292015-06-26 17:24:23 +0900222 }
Brian O'Connor740e98c2017-06-29 17:07:17 -0700223 } catch (FileNotFoundException e) {
224 log.warn("Disabling TLS for intra-cluster messaging; Could not load cluster key store: {}", e.getMessage());
225 return TLS_DISABLED;
226 } catch (Exception e) {
227 //TODO we might want to catch exceptions more specifically
228 log.error("Error loading key store; disabling TLS for intra-cluster messaging", e);
229 return TLS_DISABLED;
230 }
231 this.trustManager = tmf;
232 this.keyManager = kmf;
233 return TLS_ENABLED;
234 }
235
236 private void logKeyStore(KeyStore ks, String ksLocation, char[] ksPwd) {
237 if (log.isInfoEnabled()) {
238 log.info("Loaded cluster key store from: {}", ksLocation);
239 try {
240 for (Enumeration<String> e = ks.aliases(); e.hasMoreElements();) {
241 String alias = e.nextElement();
242 Key key = ks.getKey(alias, ksPwd);
243 Certificate[] certs = ks.getCertificateChain(alias);
244 log.debug("{} -> {}", alias, certs);
245 final byte[] encodedKey;
246 if (certs != null && certs.length > 0) {
247 encodedKey = certs[0].getEncoded();
248 } else {
249 log.info("Could not find cert chain for {}, using fingerprint of key instead...", alias);
250 encodedKey = key.getEncoded();
251 }
252 // Compute the certificate's fingerprint (use the key if certificate cannot be found)
253 MessageDigest digest = MessageDigest.getInstance("SHA1");
254 digest.update(encodedKey);
255 StringJoiner fingerprint = new StringJoiner(":");
256 for (byte b : digest.digest()) {
257 fingerprint.add(String.format("%02X", b));
258 }
259 log.info("{} -> {}", alias, fingerprint);
260 }
261 } catch (Exception e) {
262 log.warn("Unable to print contents of key store: {}", ksLocation, e);
JunHuy Lam39eb4292015-06-26 17:24:23 +0900263 }
264 }
265 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700266
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800267 private void initEventLoopGroup() {
268 // try Epoll first and if that does work, use nio.
269 try {
Yuta HIGUCHI90a16892016-07-20 20:36:08 -0700270 clientGroup = new EpollEventLoopGroup(0, groupedThreads("NettyMessagingEvt", "epollC-%d", log));
271 serverGroup = new EpollEventLoopGroup(0, groupedThreads("NettyMessagingEvt", "epollS-%d", log));
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800272 serverChannelClass = EpollServerSocketChannel.class;
273 clientChannelClass = EpollSocketChannel.class;
274 return;
275 } catch (Throwable e) {
276 log.debug("Failed to initialize native (epoll) transport. "
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700277 + "Reason: {}. Proceeding with nio.", e.getMessage());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800278 }
Yuta HIGUCHI90a16892016-07-20 20:36:08 -0700279 clientGroup = new NioEventLoopGroup(0, groupedThreads("NettyMessagingEvt", "nioC-%d", log));
280 serverGroup = new NioEventLoopGroup(0, groupedThreads("NettyMessagingEvt", "nioS-%d", log));
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800281 serverChannelClass = NioServerSocketChannel.class;
282 clientChannelClass = NioSocketChannel.class;
283 }
284
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700285 /**
286 * Times out response callbacks.
287 */
288 private void timeoutAllCallbacks() {
289 // Iterate through all connections and time out callbacks.
Jordan Haltermanfe2f93d2017-12-08 23:52:54 -0800290 localClientConnection.timeoutCallbacks();
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700291 for (RemoteClientConnection connection : clientConnections.values()) {
292 connection.timeoutCallbacks();
293 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700294 }
295
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800296 @Override
297 public CompletableFuture<Void> sendAsync(Endpoint ep, String type, byte[] payload) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900298 checkPermission(CLUSTER_WRITE);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700299 InternalRequest message = new InternalRequest(preamble,
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700300 clockService.timeNow(),
301 messageIdGenerator.incrementAndGet(),
302 localEndpoint,
303 type,
304 payload);
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700305 return executeOnPooledConnection(ep, type, c -> c.sendAsync(message), MoreExecutors.directExecutor());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800306 }
307
308 @Override
309 public CompletableFuture<byte[]> sendAndReceive(Endpoint ep, String type, byte[] payload) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900310 checkPermission(CLUSTER_WRITE);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800311 return sendAndReceive(ep, type, payload, MoreExecutors.directExecutor());
312 }
313
314 @Override
315 public CompletableFuture<byte[]> sendAndReceive(Endpoint ep, String type, byte[] payload, Executor executor) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900316 checkPermission(CLUSTER_WRITE);
Jordan Haltermanb34d30b2017-08-28 15:35:03 -0700317 long messageId = messageIdGenerator.incrementAndGet();
Jordan Haltermane3813a92017-07-29 14:10:31 -0700318 InternalRequest message = new InternalRequest(preamble,
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700319 clockService.timeNow(),
320 messageId,
321 localEndpoint,
322 type,
323 payload);
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700324 return executeOnPooledConnection(ep, type, c -> c.sendAndReceive(message), executor);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700325 }
Jordan Halterman041534b2017-03-21 10:37:33 -0700326
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700327 private List<CompletableFuture<Channel>> getChannelPool(Endpoint endpoint) {
328 return channels.computeIfAbsent(endpoint, e -> {
329 List<CompletableFuture<Channel>> defaultList = new ArrayList<>(CHANNEL_POOL_SIZE);
330 for (int i = 0; i < CHANNEL_POOL_SIZE; i++) {
331 defaultList.add(null);
332 }
333 return Lists.newCopyOnWriteArrayList(defaultList);
334 });
335 }
336
337 private int getChannelOffset(String messageType) {
338 return Math.abs(messageType.hashCode() % CHANNEL_POOL_SIZE);
339 }
340
Ray Milkey8df1f442018-01-23 23:32:20 +0000341 private CompletableFuture<Channel> getChannel(Endpoint endpoint, String messageType) {
Jordan Haltermancd25bd72018-01-13 14:10:56 -0800342 List<CompletableFuture<Channel>> channelPool = getChannelPool(endpoint);
Ray Milkey8df1f442018-01-23 23:32:20 +0000343 int offset = getChannelOffset(messageType);
Jordan Haltermancd25bd72018-01-13 14:10:56 -0800344
Jordan Haltermancd25bd72018-01-13 14:10:56 -0800345 CompletableFuture<Channel> channelFuture = channelPool.get(offset);
346 if (channelFuture == null || channelFuture.isCompletedExceptionally()) {
347 synchronized (channelPool) {
348 channelFuture = channelPool.get(offset);
349 if (channelFuture == null || channelFuture.isCompletedExceptionally()) {
350 channelFuture = openChannel(endpoint);
351 channelPool.set(offset, channelFuture);
352 }
353 }
354 }
355
Ray Milkey8df1f442018-01-23 23:32:20 +0000356 CompletableFuture<Channel> future = new CompletableFuture<>();
Jordan Haltermancd25bd72018-01-13 14:10:56 -0800357 final CompletableFuture<Channel> finalFuture = channelFuture;
358 finalFuture.whenComplete((channel, error) -> {
359 if (error == null) {
360 if (!channel.isActive()) {
361 synchronized (channelPool) {
362 CompletableFuture<Channel> currentFuture = channelPool.get(offset);
363 if (currentFuture == finalFuture) {
364 channelPool.set(offset, null);
Ray Milkey8df1f442018-01-23 23:32:20 +0000365 getChannel(endpoint, messageType).whenComplete((recursiveResult, recursiveError) -> {
366 if (recursiveError == null) {
367 future.complete(recursiveResult);
368 } else {
369 future.completeExceptionally(recursiveError);
370 }
371 });
Jordan Haltermancd25bd72018-01-13 14:10:56 -0800372 } else {
373 currentFuture.whenComplete((recursiveResult, recursiveError) -> {
374 if (recursiveError == null) {
Ray Milkey8df1f442018-01-23 23:32:20 +0000375 future.complete(recursiveResult);
Jordan Haltermancd25bd72018-01-13 14:10:56 -0800376 } else {
377 future.completeExceptionally(recursiveError);
378 }
379 });
380 }
381 }
382 } else {
Ray Milkey8df1f442018-01-23 23:32:20 +0000383 future.complete(channel);
Jordan Haltermancd25bd72018-01-13 14:10:56 -0800384 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700385 } else {
Jordan Haltermancd25bd72018-01-13 14:10:56 -0800386 future.completeExceptionally(error);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800387 }
Jordan Halterman041534b2017-03-21 10:37:33 -0700388 });
Ray Milkey8df1f442018-01-23 23:32:20 +0000389 return future;
390 }
391
392 private <T> CompletableFuture<T> executeOnPooledConnection(
393 Endpoint endpoint,
394 String type,
395 Function<ClientConnection, CompletableFuture<T>> callback,
396 Executor executor) {
397 CompletableFuture<T> future = new CompletableFuture<T>();
398 executeOnPooledConnection(endpoint, type, callback, executor, future);
399 return future;
400 }
401
402 private <T> void executeOnPooledConnection(
403 Endpoint endpoint,
404 String type,
405 Function<ClientConnection, CompletableFuture<T>> callback,
406 Executor executor,
407 CompletableFuture<T> future) {
408 if (endpoint.equals(localEndpoint)) {
409 callback.apply(localClientConnection).whenComplete((result, error) -> {
410 if (error == null) {
411 executor.execute(() -> future.complete(result));
412 } else {
413 executor.execute(() -> future.completeExceptionally(error));
414 }
415 });
416 return;
417 }
418
419 getChannel(endpoint, type).whenComplete((channel, channelError) -> {
420 if (channelError == null) {
421 ClientConnection connection = clientConnections.computeIfAbsent(channel, RemoteClientConnection::new);
422 callback.apply(connection).whenComplete((result, sendError) -> {
423 if (sendError == null) {
424 executor.execute(() -> future.complete(result));
425 } else {
426 executor.execute(() -> future.completeExceptionally(sendError));
427 }
428 });
429 } else {
430 executor.execute(() -> future.completeExceptionally(channelError));
431 }
432 });
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800433 }
434
435 @Override
436 public void registerHandler(String type, BiConsumer<Endpoint, byte[]> handler, Executor executor) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900437 checkPermission(CLUSTER_WRITE);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700438 handlers.put(type, (message, connection) -> executor.execute(() ->
439 handler.accept(message.sender(), message.payload())));
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800440 }
441
442 @Override
443 public void registerHandler(String type, BiFunction<Endpoint, byte[], byte[]> handler, Executor executor) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900444 checkPermission(CLUSTER_WRITE);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700445 handlers.put(type, (message, connection) -> executor.execute(() -> {
Madan Jampania9e70a62016-03-02 16:28:18 -0800446 byte[] responsePayload = null;
Jordan Haltermane3813a92017-07-29 14:10:31 -0700447 InternalReply.Status status = InternalReply.Status.OK;
Madan Jampania9e70a62016-03-02 16:28:18 -0800448 try {
449 responsePayload = handler.apply(message.sender(), message.payload());
450 } catch (Exception e) {
Jordan Haltermanb6ee9e92017-06-21 15:26:28 -0700451 log.debug("An error occurred in a message handler: {}", e);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700452 status = InternalReply.Status.ERROR_HANDLER_EXCEPTION;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800453 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700454 connection.reply(message, status, Optional.ofNullable(responsePayload));
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800455 }));
456 }
457
458 @Override
459 public void registerHandler(String type, BiFunction<Endpoint, byte[], CompletableFuture<byte[]>> handler) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900460 checkPermission(CLUSTER_WRITE);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700461 handlers.put(type, (message, connection) -> {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800462 handler.apply(message.sender(), message.payload()).whenComplete((result, error) -> {
Jordan Haltermane3813a92017-07-29 14:10:31 -0700463 InternalReply.Status status;
Jordan Haltermanb6ee9e92017-06-21 15:26:28 -0700464 if (error == null) {
Jordan Haltermane3813a92017-07-29 14:10:31 -0700465 status = InternalReply.Status.OK;
Jordan Haltermanb6ee9e92017-06-21 15:26:28 -0700466 } else {
467 log.debug("An error occurred in a message handler: {}", error);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700468 status = InternalReply.Status.ERROR_HANDLER_EXCEPTION;
Jordan Haltermanb6ee9e92017-06-21 15:26:28 -0700469 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700470 connection.reply(message, status, Optional.ofNullable(result));
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800471 });
472 });
473 }
474
475 @Override
476 public void unregisterHandler(String type) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900477 checkPermission(CLUSTER_WRITE);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800478 handlers.remove(type);
479 }
480
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700481 private Bootstrap bootstrapClient(Endpoint endpoint) {
482 Bootstrap bootstrap = new Bootstrap();
483 bootstrap.option(ChannelOption.ALLOCATOR, PooledByteBufAllocator.DEFAULT);
484 bootstrap.option(ChannelOption.WRITE_BUFFER_WATER_MARK,
485 new WriteBufferWaterMark(10 * 32 * 1024, 10 * 64 * 1024));
486 bootstrap.option(ChannelOption.SO_SNDBUF, 1048576);
487 bootstrap.option(ChannelOption.CONNECT_TIMEOUT_MILLIS, 1000);
488 bootstrap.group(clientGroup);
489 // TODO: Make this faster:
490 // http://normanmaurer.me/presentations/2014-facebook-eng-netty/slides.html#37.0
491 bootstrap.channel(clientChannelClass);
492 bootstrap.option(ChannelOption.SO_KEEPALIVE, true);
493 bootstrap.remoteAddress(endpoint.host().toInetAddress(), endpoint.port());
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700494 if (enableNettyTls) {
495 bootstrap.handler(new SslClientCommunicationChannelInitializer());
496 } else {
497 bootstrap.handler(new BasicChannelInitializer());
498 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700499 return bootstrap;
500 }
501
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800502 private void startAcceptingConnections() throws InterruptedException {
503 ServerBootstrap b = new ServerBootstrap();
Jon Hall9a44d6a2017-03-02 18:14:37 -0800504 b.childOption(ChannelOption.WRITE_BUFFER_WATER_MARK,
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700505 new WriteBufferWaterMark(8 * 1024, 32 * 1024));
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800506 b.option(ChannelOption.SO_RCVBUF, 1048576);
507 b.option(ChannelOption.TCP_NODELAY, true);
Yuta HIGUCHIb47c9532016-08-22 09:41:23 -0700508 b.childOption(ChannelOption.ALLOCATOR, PooledByteBufAllocator.DEFAULT);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800509 b.group(serverGroup, clientGroup);
510 b.channel(serverChannelClass);
511 if (enableNettyTls) {
512 b.childHandler(new SslServerCommunicationChannelInitializer());
513 } else {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700514 b.childHandler(new BasicChannelInitializer());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800515 }
516 b.option(ChannelOption.SO_BACKLOG, 128);
517 b.childOption(ChannelOption.SO_KEEPALIVE, true);
518
519 // Bind and start to accept incoming connections.
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700520 b.bind(localEndpoint.port()).sync().addListener(future -> {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800521 if (future.isSuccess()) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700522 log.info("{} accepting incoming connections on port {}",
523 localEndpoint.host(), localEndpoint.port());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800524 } else {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700525 log.warn("{} failed to bind to port {} due to {}",
526 localEndpoint.host(), localEndpoint.port(), future.cause());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800527 }
528 });
529 }
530
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700531 private CompletableFuture<Channel> openChannel(Endpoint ep) {
532 Bootstrap bootstrap = bootstrapClient(ep);
533 CompletableFuture<Channel> retFuture = new CompletableFuture<>();
534 ChannelFuture f = bootstrap.connect();
535
536 f.addListener(future -> {
537 if (future.isSuccess()) {
538 retFuture.complete(f.channel());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800539 } else {
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700540 retFuture.completeExceptionally(future.cause());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800541 }
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700542 });
543 log.debug("Established a new connection to {}", ep);
544 return retFuture;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800545 }
546
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700547 /**
548 * Channel initializer for TLS servers.
549 */
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800550 private class SslServerCommunicationChannelInitializer extends ChannelInitializer<SocketChannel> {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800551 private final ChannelHandler dispatcher = new InboundMessageDispatcher();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800552
553 @Override
554 protected void initChannel(SocketChannel channel) throws Exception {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800555 SSLContext serverContext = SSLContext.getInstance("TLS");
Brian O'Connor740e98c2017-06-29 17:07:17 -0700556 serverContext.init(keyManager.getKeyManagers(), trustManager.getTrustManagers(), null);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800557
558 SSLEngine serverSslEngine = serverContext.createSSLEngine();
559
560 serverSslEngine.setNeedClientAuth(true);
561 serverSslEngine.setUseClientMode(false);
562 serverSslEngine.setEnabledProtocols(serverSslEngine.getSupportedProtocols());
563 serverSslEngine.setEnabledCipherSuites(serverSslEngine.getSupportedCipherSuites());
564 serverSslEngine.setEnableSessionCreation(true);
565
566 channel.pipeline().addLast("ssl", new io.netty.handler.ssl.SslHandler(serverSslEngine))
Jordan Haltermane3813a92017-07-29 14:10:31 -0700567 .addLast("encoder", new MessageEncoder(localEndpoint, preamble))
Madan Jampanib825aeb2016-04-01 15:18:25 -0700568 .addLast("decoder", new MessageDecoder())
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800569 .addLast("handler", dispatcher);
570 }
571 }
572
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700573 /**
574 * Channel initializer for TLS clients.
575 */
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800576 private class SslClientCommunicationChannelInitializer extends ChannelInitializer<SocketChannel> {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800577 private final ChannelHandler dispatcher = new InboundMessageDispatcher();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800578
579 @Override
580 protected void initChannel(SocketChannel channel) throws Exception {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800581 SSLContext clientContext = SSLContext.getInstance("TLS");
Brian O'Connor740e98c2017-06-29 17:07:17 -0700582 clientContext.init(keyManager.getKeyManagers(), trustManager.getTrustManagers(), null);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800583
584 SSLEngine clientSslEngine = clientContext.createSSLEngine();
585
586 clientSslEngine.setUseClientMode(true);
587 clientSslEngine.setEnabledProtocols(clientSslEngine.getSupportedProtocols());
588 clientSslEngine.setEnabledCipherSuites(clientSslEngine.getSupportedCipherSuites());
589 clientSslEngine.setEnableSessionCreation(true);
590
591 channel.pipeline().addLast("ssl", new io.netty.handler.ssl.SslHandler(clientSslEngine))
Jordan Haltermane3813a92017-07-29 14:10:31 -0700592 .addLast("encoder", new MessageEncoder(localEndpoint, preamble))
Madan Jampanib825aeb2016-04-01 15:18:25 -0700593 .addLast("decoder", new MessageDecoder())
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800594 .addLast("handler", dispatcher);
595 }
596 }
597
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700598 /**
599 * Channel initializer for basic connections.
600 */
601 private class BasicChannelInitializer extends ChannelInitializer<SocketChannel> {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800602 private final ChannelHandler dispatcher = new InboundMessageDispatcher();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800603
604 @Override
605 protected void initChannel(SocketChannel channel) throws Exception {
606 channel.pipeline()
Jordan Haltermane3813a92017-07-29 14:10:31 -0700607 .addLast("encoder", new MessageEncoder(localEndpoint, preamble))
Madan Jampanib825aeb2016-04-01 15:18:25 -0700608 .addLast("decoder", new MessageDecoder())
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800609 .addLast("handler", dispatcher);
610 }
611 }
612
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700613 /**
614 * Channel inbound handler that dispatches messages to the appropriate handler.
615 */
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800616 @ChannelHandler.Sharable
Yuta HIGUCHIc012dda2016-08-17 00:43:46 -0700617 private class InboundMessageDispatcher extends SimpleChannelInboundHandler<Object> {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700618 // Effectively SimpleChannelInboundHandler<InternalMessage>,
619 // had to specify <Object> to avoid Class Loader not being able to find some classes.
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800620
621 @Override
Yuta HIGUCHIc012dda2016-08-17 00:43:46 -0700622 protected void channelRead0(ChannelHandlerContext ctx, Object rawMessage) throws Exception {
623 InternalMessage message = (InternalMessage) rawMessage;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800624 try {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700625 if (message.isRequest()) {
626 RemoteServerConnection connection =
627 serverConnections.computeIfAbsent(ctx.channel(), RemoteServerConnection::new);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700628 connection.dispatch((InternalRequest) message);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700629 } else {
630 RemoteClientConnection connection =
631 clientConnections.computeIfAbsent(ctx.channel(), RemoteClientConnection::new);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700632 connection.dispatch((InternalReply) message);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700633 }
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800634 } catch (RejectedExecutionException e) {
635 log.warn("Unable to dispatch message due to {}", e.getMessage());
636 }
637 }
638
639 @Override
640 public void exceptionCaught(ChannelHandlerContext context, Throwable cause) {
641 log.error("Exception inside channel handling pipeline.", cause);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700642
643 RemoteClientConnection clientConnection = clientConnections.remove(context.channel());
644 if (clientConnection != null) {
645 clientConnection.close();
646 }
647
648 RemoteServerConnection serverConnection = serverConnections.remove(context.channel());
649 if (serverConnection != null) {
650 serverConnection.close();
651 }
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800652 context.close();
653 }
Yuta HIGUCHIc012dda2016-08-17 00:43:46 -0700654
655 /**
656 * Returns true if the given message should be handled.
657 *
658 * @param msg inbound message
659 * @return true if {@code msg} is {@link InternalMessage} instance.
Yuta HIGUCHIc012dda2016-08-17 00:43:46 -0700660 * @see SimpleChannelInboundHandler#acceptInboundMessage(Object)
661 */
662 @Override
663 public final boolean acceptInboundMessage(Object msg) {
664 return msg instanceof InternalMessage;
665 }
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800666 }
Yuta HIGUCHIc012dda2016-08-17 00:43:46 -0700667
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700668 /**
669 * Wraps a {@link CompletableFuture} and tracks its type and creation time.
670 */
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800671 private final class Callback {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700672 private final String type;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800673 private final CompletableFuture<byte[]> future;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700674 private final long time = System.currentTimeMillis();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800675
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700676 Callback(String type, CompletableFuture<byte[]> future) {
677 this.type = type;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800678 this.future = future;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800679 }
680
681 public void complete(byte[] value) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700682 future.complete(value);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800683 }
684
685 public void completeExceptionally(Throwable error) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700686 future.completeExceptionally(error);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800687 }
688 }
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800689
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700690 /**
691 * Represents the client side of a connection to a local or remote server.
692 */
693 private interface ClientConnection {
694
695 /**
696 * Sends a message to the other side of the connection.
697 *
698 * @param message the message to send
699 * @return a completable future to be completed once the message has been sent
700 */
Jordan Haltermane3813a92017-07-29 14:10:31 -0700701 CompletableFuture<Void> sendAsync(InternalRequest message);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700702
703 /**
704 * Sends a message to the other side of the connection, awaiting a reply.
705 *
706 * @param message the message to send
707 * @return a completable future to be completed once a reply is received or the request times out
708 */
Jordan Haltermane3813a92017-07-29 14:10:31 -0700709 CompletableFuture<byte[]> sendAndReceive(InternalRequest message);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700710
711 /**
712 * Closes the connection.
713 */
714 default void close() {
715 }
716 }
717
718 /**
719 * Represents the server side of a connection.
720 */
721 private interface ServerConnection {
722
723 /**
724 * Sends a reply to the other side of the connection.
725 *
726 * @param message the message to which to reply
Jordan Haltermanfe2f93d2017-12-08 23:52:54 -0800727 * @param status the reply status
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700728 * @param payload the response payload
729 */
Jordan Haltermane3813a92017-07-29 14:10:31 -0700730 void reply(InternalRequest message, InternalReply.Status status, Optional<byte[]> payload);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700731
732 /**
733 * Closes the connection.
734 */
735 default void close() {
736 }
737 }
738
739 /**
Jordan Haltermanfe2f93d2017-12-08 23:52:54 -0800740 * Remote connection implementation.
741 */
742 private abstract class AbstractClientConnection implements ClientConnection {
743 private final Map<Long, Callback> futures = Maps.newConcurrentMap();
744 private final AtomicBoolean closed = new AtomicBoolean(false);
745 private final Cache<String, TimeoutHistory> timeoutHistories = CacheBuilder.newBuilder()
746 .expireAfterAccess(HISTORY_EXPIRE_MILLIS, TimeUnit.MILLISECONDS)
747 .build();
748
749 /**
750 * Times out callbacks for this connection.
751 */
752 protected void timeoutCallbacks() {
753 // Store the current time.
754 long currentTime = System.currentTimeMillis();
755
756 // Iterate through future callbacks and time out callbacks that have been alive
757 // longer than the current timeout according to the message type.
758 Iterator<Map.Entry<Long, Callback>> iterator = futures.entrySet().iterator();
759 while (iterator.hasNext()) {
760 Callback callback = iterator.next().getValue();
761 try {
762 TimeoutHistory timeoutHistory = timeoutHistories.get(callback.type, TimeoutHistory::new);
763 long currentTimeout = timeoutHistory.currentTimeout;
764 if (currentTime - callback.time > currentTimeout) {
765 iterator.remove();
766 long elapsedTime = currentTime - callback.time;
767 timeoutHistory.addReplyTime(elapsedTime);
768 callback.completeExceptionally(
769 new TimeoutException("Request timed out in " + elapsedTime + " milliseconds"));
770 }
771 } catch (ExecutionException e) {
772 throw new AssertionError();
773 }
774 }
775
776 // Iterate through all timeout histories and recompute the timeout.
777 for (TimeoutHistory timeoutHistory : timeoutHistories.asMap().values()) {
778 timeoutHistory.recomputeTimeoutMillis();
779 }
780 }
781
782 protected void registerCallback(long id, String subject, CompletableFuture<byte[]> future) {
783 futures.put(id, new Callback(subject, future));
784 }
785
786 protected Callback completeCallback(long id) {
787 Callback callback = futures.remove(id);
788 if (callback != null) {
789 try {
790 TimeoutHistory timeoutHistory = timeoutHistories.get(callback.type, TimeoutHistory::new);
791 timeoutHistory.addReplyTime(System.currentTimeMillis() - callback.time);
792 } catch (ExecutionException e) {
793 throw new AssertionError();
794 }
795 }
796 return callback;
797 }
798
799 protected Callback failCallback(long id) {
800 return futures.remove(id);
801 }
802
803 @Override
804 public void close() {
805 if (closed.compareAndSet(false, true)) {
806 timeoutFuture.cancel(false);
807 for (Callback callback : futures.values()) {
808 callback.completeExceptionally(new ConnectException());
809 }
810 }
811 }
812 }
813
814 /**
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700815 * Local connection implementation.
816 */
Jordan Haltermanfe2f93d2017-12-08 23:52:54 -0800817 private final class LocalClientConnection extends AbstractClientConnection {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700818 @Override
Jordan Haltermane3813a92017-07-29 14:10:31 -0700819 public CompletableFuture<Void> sendAsync(InternalRequest message) {
820 BiConsumer<InternalRequest, ServerConnection> handler = handlers.get(message.subject());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700821 if (handler != null) {
822 handler.accept(message, localServerConnection);
823 } else {
824 log.debug("No handler for message type {} from {}", message.type(), message.sender());
825 }
826 return CompletableFuture.completedFuture(null);
827 }
828
829 @Override
Jordan Haltermane3813a92017-07-29 14:10:31 -0700830 public CompletableFuture<byte[]> sendAndReceive(InternalRequest message) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700831 CompletableFuture<byte[]> future = new CompletableFuture<>();
Jordan Haltermanfe2f93d2017-12-08 23:52:54 -0800832 future.whenComplete((r, e) -> completeCallback(message.id()));
833 registerCallback(message.id(), message.subject(), future);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700834 BiConsumer<InternalRequest, ServerConnection> handler = handlers.get(message.subject());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700835 if (handler != null) {
836 handler.accept(message, new LocalServerConnection(future));
837 } else {
838 log.debug("No handler for message type {} from {}", message.type(), message.sender());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700839 new LocalServerConnection(future)
840 .reply(message, InternalReply.Status.ERROR_NO_HANDLER, Optional.empty());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700841 }
842 return future;
843 }
844 }
845
846 /**
847 * Local server connection.
848 */
849 private final class LocalServerConnection implements ServerConnection {
850 private final CompletableFuture<byte[]> future;
851
852 LocalServerConnection(CompletableFuture<byte[]> future) {
853 this.future = future;
854 }
855
856 @Override
Jordan Haltermane3813a92017-07-29 14:10:31 -0700857 public void reply(InternalRequest message, InternalReply.Status status, Optional<byte[]> payload) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700858 if (future != null) {
Jordan Haltermane3813a92017-07-29 14:10:31 -0700859 if (status == InternalReply.Status.OK) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700860 future.complete(payload.orElse(EMPTY_PAYLOAD));
Jordan Haltermane3813a92017-07-29 14:10:31 -0700861 } else if (status == InternalReply.Status.ERROR_NO_HANDLER) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700862 future.completeExceptionally(new MessagingException.NoRemoteHandler());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700863 } else if (status == InternalReply.Status.ERROR_HANDLER_EXCEPTION) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700864 future.completeExceptionally(new MessagingException.RemoteHandlerFailure());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700865 } else if (status == InternalReply.Status.PROTOCOL_EXCEPTION) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700866 future.completeExceptionally(new MessagingException.ProtocolException());
867 }
868 }
869 }
870 }
871
872 /**
873 * Remote connection implementation.
874 */
Jordan Haltermanfe2f93d2017-12-08 23:52:54 -0800875 private final class RemoteClientConnection extends AbstractClientConnection {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700876 private final Channel channel;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700877
878 RemoteClientConnection(Channel channel) {
879 this.channel = channel;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800880 }
881
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700882 @Override
Jordan Haltermane3813a92017-07-29 14:10:31 -0700883 public CompletableFuture<Void> sendAsync(InternalRequest message) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700884 CompletableFuture<Void> future = new CompletableFuture<>();
885 channel.writeAndFlush(message).addListener(channelFuture -> {
886 if (!channelFuture.isSuccess()) {
887 future.completeExceptionally(channelFuture.cause());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800888 } else {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700889 future.complete(null);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800890 }
891 });
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700892 return future;
893 }
894
895 @Override
Jordan Haltermane3813a92017-07-29 14:10:31 -0700896 public CompletableFuture<byte[]> sendAndReceive(InternalRequest message) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700897 CompletableFuture<byte[]> future = new CompletableFuture<>();
Jordan Haltermanfe2f93d2017-12-08 23:52:54 -0800898 registerCallback(message.id(), message.subject(), future);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700899 channel.writeAndFlush(message).addListener(channelFuture -> {
900 if (!channelFuture.isSuccess()) {
Jordan Haltermanfe2f93d2017-12-08 23:52:54 -0800901 Callback callback = failCallback(message.id());
902 if (callback != null) {
903 callback.completeExceptionally(channelFuture.cause());
904 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700905 }
906 });
907 return future;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800908 }
909
910 /**
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700911 * Dispatches a message to a local handler.
912 *
913 * @param message the message to dispatch
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800914 */
Jordan Haltermane3813a92017-07-29 14:10:31 -0700915 private void dispatch(InternalReply message) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700916 if (message.preamble() != preamble) {
Jordan Haltermane3813a92017-07-29 14:10:31 -0700917 log.debug("Received {} with invalid preamble", message.type());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700918 return;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800919 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700920
921 clockService.recordEventTime(message.time());
922
Jordan Haltermanfe2f93d2017-12-08 23:52:54 -0800923 Callback callback = completeCallback(message.id());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700924 if (callback != null) {
Jordan Haltermane3813a92017-07-29 14:10:31 -0700925 if (message.status() == InternalReply.Status.OK) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700926 callback.complete(message.payload());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700927 } else if (message.status() == InternalReply.Status.ERROR_NO_HANDLER) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700928 callback.completeExceptionally(new MessagingException.NoRemoteHandler());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700929 } else if (message.status() == InternalReply.Status.ERROR_HANDLER_EXCEPTION) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700930 callback.completeExceptionally(new MessagingException.RemoteHandlerFailure());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700931 } else if (message.status() == InternalReply.Status.PROTOCOL_EXCEPTION) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700932 callback.completeExceptionally(new MessagingException.ProtocolException());
933 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700934 } else {
Jordan Haltermane3813a92017-07-29 14:10:31 -0700935 log.debug("Received a reply for message id:[{}] "
936 + "but was unable to locate the"
937 + " request handle", message.id());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700938 }
939 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700940 }
941
942 /**
943 * Remote server connection.
944 */
945 private final class RemoteServerConnection implements ServerConnection {
946 private final Channel channel;
947
948 RemoteServerConnection(Channel channel) {
949 this.channel = channel;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800950 }
951
952 /**
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700953 * Dispatches a message to a local handler.
954 *
955 * @param message the message to dispatch
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800956 */
Jordan Haltermane3813a92017-07-29 14:10:31 -0700957 private void dispatch(InternalRequest message) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700958 if (message.preamble() != preamble) {
959 log.debug("Received {} with invalid preamble from {}", message.type(), message.sender());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700960 reply(message, InternalReply.Status.PROTOCOL_EXCEPTION, Optional.empty());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700961 return;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800962 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700963
964 clockService.recordEventTime(message.time());
965
Jordan Haltermane3813a92017-07-29 14:10:31 -0700966 BiConsumer<InternalRequest, ServerConnection> handler = handlers.get(message.subject());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700967 if (handler != null) {
968 handler.accept(message, this);
969 } else {
970 log.debug("No handler for message type {} from {}", message.type(), message.sender());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700971 reply(message, InternalReply.Status.ERROR_NO_HANDLER, Optional.empty());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700972 }
973 }
974
975 @Override
Jordan Haltermane3813a92017-07-29 14:10:31 -0700976 public void reply(InternalRequest message, InternalReply.Status status, Optional<byte[]> payload) {
977 InternalReply response = new InternalReply(preamble,
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700978 clockService.timeNow(),
979 message.id(),
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700980 payload.orElse(EMPTY_PAYLOAD),
981 status);
982 channel.writeAndFlush(response);
983 }
984 }
985
986 /**
987 * Request-reply timeout history tracker.
988 */
989 private static final class TimeoutHistory {
990 private final DescriptiveStatistics timeoutHistory = new SynchronizedDescriptiveStatistics(WINDOW_SIZE);
991 private final AtomicLong maxReplyTime = new AtomicLong();
992 private volatile long currentTimeout = DEFAULT_TIMEOUT_MILLIS;
993
994 /**
995 * Adds a reply time to the history.
996 *
997 * @param replyTime the reply time to add to the history
998 */
999 void addReplyTime(long replyTime) {
1000 maxReplyTime.getAndAccumulate(replyTime, Math::max);
1001 }
1002
1003 /**
1004 * Computes the current timeout.
1005 */
1006 private void recomputeTimeoutMillis() {
1007 double nextTimeout = maxReplyTime.getAndSet(0) * TIMEOUT_MULTIPLIER;
1008 timeoutHistory.addValue(
1009 Math.min(Math.max(nextTimeout, MIN_TIMEOUT_MILLIS), MAX_TIMEOUT_MILLIS));
1010 if (timeoutHistory.getN() == WINDOW_SIZE) {
1011 this.currentTimeout = (long) timeoutHistory.getMax();
1012 }
Aaron Kruglikov1b727382016-02-09 16:17:47 -08001013 }
1014 }
JunHuy Lam39eb4292015-06-26 17:24:23 +09001015}