blob: b035d61a63198bf354a873fa73c4d1276449d72b [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 Halterman23e73c52018-01-13 14:10:56 -080054import com.google.common.base.Throwables;
Jordan Halterman66e6e3b2017-07-10 11:26:34 -070055import com.google.common.cache.Cache;
56import com.google.common.cache.CacheBuilder;
57import com.google.common.collect.Lists;
58import com.google.common.collect.Maps;
59import com.google.common.util.concurrent.MoreExecutors;
60import io.netty.bootstrap.Bootstrap;
61import io.netty.bootstrap.ServerBootstrap;
62import io.netty.buffer.PooledByteBufAllocator;
63import io.netty.channel.Channel;
64import io.netty.channel.ChannelFuture;
65import io.netty.channel.ChannelHandler;
66import io.netty.channel.ChannelHandlerContext;
67import io.netty.channel.ChannelInitializer;
68import io.netty.channel.ChannelOption;
69import io.netty.channel.EventLoopGroup;
70import io.netty.channel.ServerChannel;
71import io.netty.channel.SimpleChannelInboundHandler;
72import io.netty.channel.WriteBufferWaterMark;
73import io.netty.channel.epoll.EpollEventLoopGroup;
74import io.netty.channel.epoll.EpollServerSocketChannel;
75import io.netty.channel.epoll.EpollSocketChannel;
76import io.netty.channel.nio.NioEventLoopGroup;
77import io.netty.channel.socket.SocketChannel;
78import io.netty.channel.socket.nio.NioServerSocketChannel;
79import io.netty.channel.socket.nio.NioSocketChannel;
80import org.apache.commons.math3.stat.descriptive.DescriptiveStatistics;
81import org.apache.commons.math3.stat.descriptive.SynchronizedDescriptiveStatistics;
82import org.apache.felix.scr.annotations.Activate;
83import org.apache.felix.scr.annotations.Component;
84import org.apache.felix.scr.annotations.Deactivate;
85import org.apache.felix.scr.annotations.Reference;
86import org.apache.felix.scr.annotations.ReferenceCardinality;
87import org.apache.felix.scr.annotations.Service;
88import org.onosproject.cluster.ClusterMetadataService;
89import org.onosproject.cluster.ControllerNode;
90import org.onosproject.core.HybridLogicalClockService;
91import org.onosproject.store.cluster.messaging.Endpoint;
92import org.onosproject.store.cluster.messaging.MessagingException;
93import org.onosproject.store.cluster.messaging.MessagingService;
Jordan Halterman66e6e3b2017-07-10 11:26:34 -070094import org.slf4j.Logger;
95import org.slf4j.LoggerFactory;
96
Yuta HIGUCHI90a16892016-07-20 20:36:08 -070097import static org.onlab.util.Tools.groupedThreads;
Heedo Kang4a47a302016-02-29 17:40:23 +090098import static org.onosproject.security.AppGuard.checkPermission;
99import static org.onosproject.security.AppPermission.Type.CLUSTER_WRITE;
100
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700101/**
102 * Netty based MessagingService.
103 */
Sho SHIMIZU5c396e32016-08-12 15:19:12 -0700104@Component(immediate = true)
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700105@Service
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800106public class NettyMessagingManager implements MessagingService {
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700107 private static final long HISTORY_EXPIRE_MILLIS = Duration.ofMinutes(1).toMillis();
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700108 private static final long TIMEOUT_INTERVAL = 50;
109 private static final int WINDOW_SIZE = 100;
Jordan Haltermanef92f192017-12-21 11:59:38 -0800110 private static final int MIN_SAMPLES = 25;
111 private static final double PHI_FACTOR = 1.0 / Math.log(10.0);
112 private static final int PHI_FAILURE_THRESHOLD = 5;
Jordan Halterman111aab72018-01-12 16:28:57 -0800113 private static final long MIN_TIMEOUT_MILLIS = 100;
Jordan Haltermanef92f192017-12-21 11:59:38 -0800114 private static final long MAX_TIMEOUT_MILLIS = 15000;
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700115 private static final int CHANNEL_POOL_SIZE = 8;
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700116
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700117 private static final byte[] EMPTY_PAYLOAD = new byte[0];
118
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700119 private final Logger log = LoggerFactory.getLogger(getClass());
120
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800121 private final LocalClientConnection localClientConnection = new LocalClientConnection();
122 private final LocalServerConnection localServerConnection = new LocalServerConnection(null);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800123
Brian O'Connor740e98c2017-06-29 17:07:17 -0700124 //TODO CONFIG_DIR is duplicated from ConfigFileBasedClusterMetadataProvider
125 private static final String CONFIG_DIR = "../config";
126 private static final String KS_FILE_NAME = "onos.jks";
127 private static final File DEFAULT_KS_FILE = new File(CONFIG_DIR, KS_FILE_NAME);
128 private static final String DEFAULT_KS_PASSWORD = "changeit";
129
Madan Jampani05833872016-07-12 23:01:39 -0700130 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
131 protected HybridLogicalClockService clockService;
132
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700133 private Endpoint localEndpoint;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800134 private int preamble;
135 private final AtomicBoolean started = new AtomicBoolean(false);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700136 private final Map<String, BiConsumer<InternalRequest, ServerConnection>> handlers = new ConcurrentHashMap<>();
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700137 private final Map<Channel, RemoteClientConnection> clientConnections = Maps.newConcurrentMap();
138 private final Map<Channel, RemoteServerConnection> serverConnections = Maps.newConcurrentMap();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800139 private final AtomicLong messageIdGenerator = new AtomicLong(0);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800140
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700141 private ScheduledFuture<?> timeoutFuture;
142
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700143 private final Map<Endpoint, List<CompletableFuture<Channel>>> channels = Maps.newConcurrentMap();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800144
145 private EventLoopGroup serverGroup;
146 private EventLoopGroup clientGroup;
147 private Class<? extends ServerChannel> serverChannelClass;
148 private Class<? extends Channel> clientChannelClass;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700149 private ScheduledExecutorService timeoutExecutor;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800150
Brian O'Connor740e98c2017-06-29 17:07:17 -0700151 protected static final boolean TLS_ENABLED = true;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800152 protected static final boolean TLS_DISABLED = false;
Brian O'Connor740e98c2017-06-29 17:07:17 -0700153 protected boolean enableNettyTls = TLS_ENABLED;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800154
Brian O'Connor740e98c2017-06-29 17:07:17 -0700155 protected TrustManagerFactory trustManager;
156 protected KeyManagerFactory keyManager;
JunHuy Lam39eb4292015-06-26 17:24:23 +0900157
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700158 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Madan Jampaniec1df022015-10-13 21:23:03 -0700159 protected ClusterMetadataService clusterMetadataService;
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700160
161 @Activate
Ray Milkey986a47a2018-01-25 11:38:51 -0800162 public void activate() throws InterruptedException {
Madan Jampaniec1df022015-10-13 21:23:03 -0700163 ControllerNode localNode = clusterMetadataService.getLocalNode();
Jonathan Hartd9df7bd2015-11-10 17:10:25 -0800164 getTlsParameters();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800165
166 if (started.get()) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700167 log.warn("Already running at local endpoint: {}", localEndpoint);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800168 return;
169 }
170 this.preamble = clusterMetadataService.getClusterMetadata().getName().hashCode();
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700171 this.localEndpoint = new Endpoint(localNode.ip(), localNode.tcpPort());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800172 initEventLoopGroup();
173 startAcceptingConnections();
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700174 timeoutExecutor = Executors.newSingleThreadScheduledExecutor(
175 groupedThreads("NettyMessagingEvt", "timeout", log));
176 timeoutFuture = timeoutExecutor.scheduleAtFixedRate(
177 this::timeoutAllCallbacks, TIMEOUT_INTERVAL, TIMEOUT_INTERVAL, TimeUnit.MILLISECONDS);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800178 started.set(true);
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700179 log.info("Started");
180 }
181
182 @Deactivate
Ray Milkey986a47a2018-01-25 11:38:51 -0800183 public void deactivate() {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800184 if (started.get()) {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800185 serverGroup.shutdownGracefully();
186 clientGroup.shutdownGracefully();
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700187 timeoutFuture.cancel(false);
188 timeoutExecutor.shutdown();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800189 started.set(false);
190 }
Madan Jampaniafeebbd2015-05-19 15:26:01 -0700191 log.info("Stopped");
192 }
JunHuy Lam39eb4292015-06-26 17:24:23 +0900193
Jonathan Hartd9df7bd2015-11-10 17:10:25 -0800194 private void getTlsParameters() {
Brian O'Connor740e98c2017-06-29 17:07:17 -0700195 // default is TLS enabled unless key stores cannot be loaded
196 enableNettyTls = Boolean.parseBoolean(System.getProperty("enableNettyTLS", Boolean.toString(TLS_ENABLED)));
197
Jonathan Hartd9df7bd2015-11-10 17:10:25 -0800198 if (enableNettyTls) {
Brian O'Connor740e98c2017-06-29 17:07:17 -0700199 enableNettyTls = loadKeyStores();
200 }
201 }
202
203 private boolean loadKeyStores() {
204 // Maintain a local copy of the trust and key managers in case anything goes wrong
205 TrustManagerFactory tmf;
206 KeyManagerFactory kmf;
207 try {
208 String ksLocation = System.getProperty("javax.net.ssl.keyStore", DEFAULT_KS_FILE.toString());
209 String tsLocation = System.getProperty("javax.net.ssl.trustStore", DEFAULT_KS_FILE.toString());
210 char[] ksPwd = System.getProperty("javax.net.ssl.keyStorePassword", DEFAULT_KS_PASSWORD).toCharArray();
211 char[] tsPwd = System.getProperty("javax.net.ssl.trustStorePassword", DEFAULT_KS_PASSWORD).toCharArray();
212
213 tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
214 KeyStore ts = KeyStore.getInstance("JKS");
215 ts.load(new FileInputStream(tsLocation), tsPwd);
216 tmf.init(ts);
217
218 kmf = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());
219 KeyStore ks = KeyStore.getInstance("JKS");
220 ks.load(new FileInputStream(ksLocation), ksPwd);
221 kmf.init(ks, ksPwd);
222 if (log.isInfoEnabled()) {
223 logKeyStore(ks, ksLocation, ksPwd);
JunHuy Lam39eb4292015-06-26 17:24:23 +0900224 }
Brian O'Connor740e98c2017-06-29 17:07:17 -0700225 } catch (FileNotFoundException e) {
226 log.warn("Disabling TLS for intra-cluster messaging; Could not load cluster key store: {}", e.getMessage());
227 return TLS_DISABLED;
228 } catch (Exception e) {
229 //TODO we might want to catch exceptions more specifically
230 log.error("Error loading key store; disabling TLS for intra-cluster messaging", e);
231 return TLS_DISABLED;
232 }
233 this.trustManager = tmf;
234 this.keyManager = kmf;
235 return TLS_ENABLED;
236 }
237
238 private void logKeyStore(KeyStore ks, String ksLocation, char[] ksPwd) {
239 if (log.isInfoEnabled()) {
240 log.info("Loaded cluster key store from: {}", ksLocation);
241 try {
242 for (Enumeration<String> e = ks.aliases(); e.hasMoreElements();) {
243 String alias = e.nextElement();
244 Key key = ks.getKey(alias, ksPwd);
245 Certificate[] certs = ks.getCertificateChain(alias);
246 log.debug("{} -> {}", alias, certs);
247 final byte[] encodedKey;
248 if (certs != null && certs.length > 0) {
249 encodedKey = certs[0].getEncoded();
250 } else {
251 log.info("Could not find cert chain for {}, using fingerprint of key instead...", alias);
252 encodedKey = key.getEncoded();
253 }
254 // Compute the certificate's fingerprint (use the key if certificate cannot be found)
255 MessageDigest digest = MessageDigest.getInstance("SHA1");
256 digest.update(encodedKey);
257 StringJoiner fingerprint = new StringJoiner(":");
258 for (byte b : digest.digest()) {
259 fingerprint.add(String.format("%02X", b));
260 }
261 log.info("{} -> {}", alias, fingerprint);
262 }
263 } catch (Exception e) {
264 log.warn("Unable to print contents of key store: {}", ksLocation, e);
JunHuy Lam39eb4292015-06-26 17:24:23 +0900265 }
266 }
267 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700268
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800269 private void initEventLoopGroup() {
270 // try Epoll first and if that does work, use nio.
271 try {
Yuta HIGUCHI90a16892016-07-20 20:36:08 -0700272 clientGroup = new EpollEventLoopGroup(0, groupedThreads("NettyMessagingEvt", "epollC-%d", log));
273 serverGroup = new EpollEventLoopGroup(0, groupedThreads("NettyMessagingEvt", "epollS-%d", log));
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800274 serverChannelClass = EpollServerSocketChannel.class;
275 clientChannelClass = EpollSocketChannel.class;
276 return;
277 } catch (Throwable e) {
278 log.debug("Failed to initialize native (epoll) transport. "
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700279 + "Reason: {}. Proceeding with nio.", e.getMessage());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800280 }
Yuta HIGUCHI90a16892016-07-20 20:36:08 -0700281 clientGroup = new NioEventLoopGroup(0, groupedThreads("NettyMessagingEvt", "nioC-%d", log));
282 serverGroup = new NioEventLoopGroup(0, groupedThreads("NettyMessagingEvt", "nioS-%d", log));
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800283 serverChannelClass = NioServerSocketChannel.class;
284 clientChannelClass = NioSocketChannel.class;
285 }
286
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700287 /**
288 * Times out response callbacks.
289 */
290 private void timeoutAllCallbacks() {
291 // Iterate through all connections and time out callbacks.
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800292 localClientConnection.timeoutCallbacks();
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700293 for (RemoteClientConnection connection : clientConnections.values()) {
294 connection.timeoutCallbacks();
295 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700296 }
297
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800298 @Override
299 public CompletableFuture<Void> sendAsync(Endpoint ep, String type, byte[] payload) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900300 checkPermission(CLUSTER_WRITE);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700301 InternalRequest message = new InternalRequest(preamble,
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700302 clockService.timeNow(),
303 messageIdGenerator.incrementAndGet(),
304 localEndpoint,
305 type,
306 payload);
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700307 return executeOnPooledConnection(ep, type, c -> c.sendAsync(message), MoreExecutors.directExecutor());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800308 }
309
310 @Override
311 public CompletableFuture<byte[]> sendAndReceive(Endpoint ep, String type, byte[] payload) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900312 checkPermission(CLUSTER_WRITE);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800313 return sendAndReceive(ep, type, payload, MoreExecutors.directExecutor());
314 }
315
316 @Override
317 public CompletableFuture<byte[]> sendAndReceive(Endpoint ep, String type, byte[] payload, Executor executor) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900318 checkPermission(CLUSTER_WRITE);
Jordan Halterman5ceb3892017-08-28 15:35:03 -0700319 long messageId = messageIdGenerator.incrementAndGet();
Jordan Haltermane3813a92017-07-29 14:10:31 -0700320 InternalRequest message = new InternalRequest(preamble,
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700321 clockService.timeNow(),
322 messageId,
323 localEndpoint,
324 type,
325 payload);
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700326 return executeOnPooledConnection(ep, type, c -> c.sendAndReceive(message), executor);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700327 }
Jordan Halterman041534b2017-03-21 10:37:33 -0700328
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700329 private List<CompletableFuture<Channel>> getChannelPool(Endpoint endpoint) {
330 return channels.computeIfAbsent(endpoint, e -> {
331 List<CompletableFuture<Channel>> defaultList = new ArrayList<>(CHANNEL_POOL_SIZE);
332 for (int i = 0; i < CHANNEL_POOL_SIZE; i++) {
333 defaultList.add(null);
334 }
335 return Lists.newCopyOnWriteArrayList(defaultList);
336 });
337 }
338
339 private int getChannelOffset(String messageType) {
340 return Math.abs(messageType.hashCode() % CHANNEL_POOL_SIZE);
341 }
342
Jordan Halterman94db1912018-02-08 14:45:20 -0800343 private CompletableFuture<Channel> getChannel(Endpoint endpoint, String messageType) {
Jordan Halterman23e73c52018-01-13 14:10:56 -0800344 List<CompletableFuture<Channel>> channelPool = getChannelPool(endpoint);
Jordan Halterman94db1912018-02-08 14:45:20 -0800345 int offset = getChannelOffset(messageType);
Jordan Halterman23e73c52018-01-13 14:10:56 -0800346
Jordan Halterman23e73c52018-01-13 14:10:56 -0800347 CompletableFuture<Channel> channelFuture = channelPool.get(offset);
348 if (channelFuture == null || channelFuture.isCompletedExceptionally()) {
349 synchronized (channelPool) {
350 channelFuture = channelPool.get(offset);
351 if (channelFuture == null || channelFuture.isCompletedExceptionally()) {
352 channelFuture = openChannel(endpoint);
353 channelPool.set(offset, channelFuture);
354 }
355 }
356 }
357
Jordan Halterman94db1912018-02-08 14:45:20 -0800358 CompletableFuture<Channel> future = new CompletableFuture<>();
Jordan Halterman23e73c52018-01-13 14:10:56 -0800359 final CompletableFuture<Channel> finalFuture = channelFuture;
360 finalFuture.whenComplete((channel, error) -> {
361 if (error == null) {
362 if (!channel.isActive()) {
Jordan Halterman94db1912018-02-08 14:45:20 -0800363 CompletableFuture<Channel> currentFuture;
Jordan Halterman23e73c52018-01-13 14:10:56 -0800364 synchronized (channelPool) {
365 currentFuture = channelPool.get(offset);
366 if (currentFuture == finalFuture) {
367 channelPool.set(offset, null);
368 }
369 }
Jordan Halterman94db1912018-02-08 14:45:20 -0800370
371 ClientConnection connection = clientConnections.remove(channel);
372 if (connection != null) {
373 connection.close();
374 }
375
Jordan Halterman23e73c52018-01-13 14:10:56 -0800376 if (currentFuture == finalFuture) {
Jordan Halterman94db1912018-02-08 14:45:20 -0800377 getChannel(endpoint, messageType).whenComplete((recursiveResult, recursiveError) -> {
378 if (recursiveError == null) {
379 future.complete(recursiveResult);
380 } else {
381 future.completeExceptionally(recursiveError);
382 }
383 });
Jordan Halterman23e73c52018-01-13 14:10:56 -0800384 } else {
385 currentFuture.whenComplete((recursiveResult, recursiveError) -> {
386 if (recursiveError == null) {
Jordan Halterman94db1912018-02-08 14:45:20 -0800387 future.complete(recursiveResult);
Jordan Halterman23e73c52018-01-13 14:10:56 -0800388 } else {
389 future.completeExceptionally(recursiveError);
390 }
391 });
392 }
393 } else {
Jordan Halterman94db1912018-02-08 14:45:20 -0800394 future.complete(channel);
Jordan Halterman23e73c52018-01-13 14:10:56 -0800395 }
Ray Milkey4f350762018-01-23 23:32:03 +0000396 } else {
Jordan Halterman23e73c52018-01-13 14:10:56 -0800397 future.completeExceptionally(error);
Ray Milkey4f350762018-01-23 23:32:03 +0000398 }
399 });
Jordan Halterman94db1912018-02-08 14:45:20 -0800400 return future;
401 }
402
403 private <T> CompletableFuture<T> executeOnPooledConnection(
404 Endpoint endpoint,
405 String type,
406 Function<ClientConnection, CompletableFuture<T>> callback,
407 Executor executor) {
408 CompletableFuture<T> future = new CompletableFuture<T>();
409 executeOnPooledConnection(endpoint, type, callback, executor, future);
410 return future;
411 }
412
413 private <T> void executeOnPooledConnection(
414 Endpoint endpoint,
415 String type,
416 Function<ClientConnection, CompletableFuture<T>> callback,
417 Executor executor,
418 CompletableFuture<T> future) {
419 if (endpoint.equals(localEndpoint)) {
420 callback.apply(localClientConnection).whenComplete((result, error) -> {
421 if (error == null) {
422 executor.execute(() -> future.complete(result));
423 } else {
424 executor.execute(() -> future.completeExceptionally(error));
425 }
426 });
427 return;
428 }
429
430 getChannel(endpoint, type).whenComplete((channel, channelError) -> {
431 if (channelError == null) {
432 ClientConnection connection = clientConnections.computeIfAbsent(channel, RemoteClientConnection::new);
433 callback.apply(connection).whenComplete((result, sendError) -> {
434 if (sendError == null) {
435 executor.execute(() -> future.complete(result));
436 } else {
437 Throwable cause = Throwables.getRootCause(sendError);
438 if (!(cause instanceof TimeoutException) && !(cause instanceof MessagingException)) {
439 channel.close().addListener(f -> {
440 connection.close();
441 clientConnections.remove(channel);
442 });
443 }
444 executor.execute(() -> future.completeExceptionally(sendError));
445 }
446 });
447 } else {
448 executor.execute(() -> future.completeExceptionally(channelError));
449 }
450 });
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800451 }
452
453 @Override
454 public void registerHandler(String type, BiConsumer<Endpoint, byte[]> handler, Executor executor) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900455 checkPermission(CLUSTER_WRITE);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700456 handlers.put(type, (message, connection) -> executor.execute(() ->
457 handler.accept(message.sender(), message.payload())));
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800458 }
459
460 @Override
461 public void registerHandler(String type, BiFunction<Endpoint, byte[], byte[]> handler, Executor executor) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900462 checkPermission(CLUSTER_WRITE);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700463 handlers.put(type, (message, connection) -> executor.execute(() -> {
Madan Jampania9e70a62016-03-02 16:28:18 -0800464 byte[] responsePayload = null;
Jordan Haltermane3813a92017-07-29 14:10:31 -0700465 InternalReply.Status status = InternalReply.Status.OK;
Madan Jampania9e70a62016-03-02 16:28:18 -0800466 try {
467 responsePayload = handler.apply(message.sender(), message.payload());
468 } catch (Exception e) {
Jordan Haltermanb6ee9e92017-06-21 15:26:28 -0700469 log.debug("An error occurred in a message handler: {}", e);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700470 status = InternalReply.Status.ERROR_HANDLER_EXCEPTION;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800471 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700472 connection.reply(message, status, Optional.ofNullable(responsePayload));
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800473 }));
474 }
475
476 @Override
477 public void registerHandler(String type, BiFunction<Endpoint, byte[], CompletableFuture<byte[]>> handler) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900478 checkPermission(CLUSTER_WRITE);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700479 handlers.put(type, (message, connection) -> {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800480 handler.apply(message.sender(), message.payload()).whenComplete((result, error) -> {
Jordan Haltermane3813a92017-07-29 14:10:31 -0700481 InternalReply.Status status;
Jordan Haltermanb6ee9e92017-06-21 15:26:28 -0700482 if (error == null) {
Jordan Haltermane3813a92017-07-29 14:10:31 -0700483 status = InternalReply.Status.OK;
Jordan Haltermanb6ee9e92017-06-21 15:26:28 -0700484 } else {
485 log.debug("An error occurred in a message handler: {}", error);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700486 status = InternalReply.Status.ERROR_HANDLER_EXCEPTION;
Jordan Haltermanb6ee9e92017-06-21 15:26:28 -0700487 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700488 connection.reply(message, status, Optional.ofNullable(result));
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800489 });
490 });
491 }
492
493 @Override
494 public void unregisterHandler(String type) {
Heedo Kang4a47a302016-02-29 17:40:23 +0900495 checkPermission(CLUSTER_WRITE);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800496 handlers.remove(type);
497 }
498
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700499 private Bootstrap bootstrapClient(Endpoint endpoint) {
500 Bootstrap bootstrap = new Bootstrap();
501 bootstrap.option(ChannelOption.ALLOCATOR, PooledByteBufAllocator.DEFAULT);
502 bootstrap.option(ChannelOption.WRITE_BUFFER_WATER_MARK,
503 new WriteBufferWaterMark(10 * 32 * 1024, 10 * 64 * 1024));
504 bootstrap.option(ChannelOption.SO_SNDBUF, 1048576);
505 bootstrap.option(ChannelOption.CONNECT_TIMEOUT_MILLIS, 1000);
506 bootstrap.group(clientGroup);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700507 bootstrap.channel(clientChannelClass);
508 bootstrap.option(ChannelOption.SO_KEEPALIVE, true);
509 bootstrap.remoteAddress(endpoint.host().toInetAddress(), endpoint.port());
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700510 if (enableNettyTls) {
511 bootstrap.handler(new SslClientCommunicationChannelInitializer());
512 } else {
513 bootstrap.handler(new BasicChannelInitializer());
514 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700515 return bootstrap;
516 }
517
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800518 private void startAcceptingConnections() throws InterruptedException {
519 ServerBootstrap b = new ServerBootstrap();
Jon Hall9a44d6a2017-03-02 18:14:37 -0800520 b.childOption(ChannelOption.WRITE_BUFFER_WATER_MARK,
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700521 new WriteBufferWaterMark(8 * 1024, 32 * 1024));
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800522 b.option(ChannelOption.SO_RCVBUF, 1048576);
Jordan Halterman153dbd52017-12-21 11:08:19 -0800523 b.childOption(ChannelOption.SO_KEEPALIVE, true);
524 b.childOption(ChannelOption.TCP_NODELAY, true);
Yuta HIGUCHIb47c9532016-08-22 09:41:23 -0700525 b.childOption(ChannelOption.ALLOCATOR, PooledByteBufAllocator.DEFAULT);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800526 b.group(serverGroup, clientGroup);
527 b.channel(serverChannelClass);
528 if (enableNettyTls) {
529 b.childHandler(new SslServerCommunicationChannelInitializer());
530 } else {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700531 b.childHandler(new BasicChannelInitializer());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800532 }
533 b.option(ChannelOption.SO_BACKLOG, 128);
534 b.childOption(ChannelOption.SO_KEEPALIVE, true);
535
536 // Bind and start to accept incoming connections.
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700537 b.bind(localEndpoint.port()).sync().addListener(future -> {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800538 if (future.isSuccess()) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700539 log.info("{} accepting incoming connections on port {}",
540 localEndpoint.host(), localEndpoint.port());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800541 } else {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700542 log.warn("{} failed to bind to port {} due to {}",
543 localEndpoint.host(), localEndpoint.port(), future.cause());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800544 }
545 });
546 }
547
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700548 private CompletableFuture<Channel> openChannel(Endpoint ep) {
549 Bootstrap bootstrap = bootstrapClient(ep);
550 CompletableFuture<Channel> retFuture = new CompletableFuture<>();
551 ChannelFuture f = bootstrap.connect();
552
553 f.addListener(future -> {
554 if (future.isSuccess()) {
555 retFuture.complete(f.channel());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800556 } else {
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700557 retFuture.completeExceptionally(future.cause());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800558 }
Jordan Halterman66e6e3b2017-07-10 11:26:34 -0700559 });
560 log.debug("Established a new connection to {}", ep);
561 return retFuture;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800562 }
563
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700564 /**
565 * Channel initializer for TLS servers.
566 */
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800567 private class SslServerCommunicationChannelInitializer extends ChannelInitializer<SocketChannel> {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800568 private final ChannelHandler dispatcher = new InboundMessageDispatcher();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800569
570 @Override
571 protected void initChannel(SocketChannel channel) throws Exception {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800572 SSLContext serverContext = SSLContext.getInstance("TLS");
Brian O'Connor740e98c2017-06-29 17:07:17 -0700573 serverContext.init(keyManager.getKeyManagers(), trustManager.getTrustManagers(), null);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800574
575 SSLEngine serverSslEngine = serverContext.createSSLEngine();
576
577 serverSslEngine.setNeedClientAuth(true);
578 serverSslEngine.setUseClientMode(false);
579 serverSslEngine.setEnabledProtocols(serverSslEngine.getSupportedProtocols());
580 serverSslEngine.setEnabledCipherSuites(serverSslEngine.getSupportedCipherSuites());
581 serverSslEngine.setEnableSessionCreation(true);
582
583 channel.pipeline().addLast("ssl", new io.netty.handler.ssl.SslHandler(serverSslEngine))
Jordan Haltermane3813a92017-07-29 14:10:31 -0700584 .addLast("encoder", new MessageEncoder(localEndpoint, preamble))
Madan Jampanib825aeb2016-04-01 15:18:25 -0700585 .addLast("decoder", new MessageDecoder())
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800586 .addLast("handler", dispatcher);
587 }
588 }
589
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700590 /**
591 * Channel initializer for TLS clients.
592 */
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800593 private class SslClientCommunicationChannelInitializer extends ChannelInitializer<SocketChannel> {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800594 private final ChannelHandler dispatcher = new InboundMessageDispatcher();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800595
596 @Override
597 protected void initChannel(SocketChannel channel) throws Exception {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800598 SSLContext clientContext = SSLContext.getInstance("TLS");
Brian O'Connor740e98c2017-06-29 17:07:17 -0700599 clientContext.init(keyManager.getKeyManagers(), trustManager.getTrustManagers(), null);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800600
601 SSLEngine clientSslEngine = clientContext.createSSLEngine();
602
603 clientSslEngine.setUseClientMode(true);
604 clientSslEngine.setEnabledProtocols(clientSslEngine.getSupportedProtocols());
605 clientSslEngine.setEnabledCipherSuites(clientSslEngine.getSupportedCipherSuites());
606 clientSslEngine.setEnableSessionCreation(true);
607
608 channel.pipeline().addLast("ssl", new io.netty.handler.ssl.SslHandler(clientSslEngine))
Jordan Haltermane3813a92017-07-29 14:10:31 -0700609 .addLast("encoder", new MessageEncoder(localEndpoint, preamble))
Madan Jampanib825aeb2016-04-01 15:18:25 -0700610 .addLast("decoder", new MessageDecoder())
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800611 .addLast("handler", dispatcher);
612 }
613 }
614
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700615 /**
616 * Channel initializer for basic connections.
617 */
618 private class BasicChannelInitializer extends ChannelInitializer<SocketChannel> {
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800619 private final ChannelHandler dispatcher = new InboundMessageDispatcher();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800620
621 @Override
622 protected void initChannel(SocketChannel channel) throws Exception {
623 channel.pipeline()
Jordan Haltermane3813a92017-07-29 14:10:31 -0700624 .addLast("encoder", new MessageEncoder(localEndpoint, preamble))
Madan Jampanib825aeb2016-04-01 15:18:25 -0700625 .addLast("decoder", new MessageDecoder())
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800626 .addLast("handler", dispatcher);
627 }
628 }
629
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700630 /**
631 * Channel inbound handler that dispatches messages to the appropriate handler.
632 */
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800633 @ChannelHandler.Sharable
Yuta HIGUCHIc012dda2016-08-17 00:43:46 -0700634 private class InboundMessageDispatcher extends SimpleChannelInboundHandler<Object> {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700635 // Effectively SimpleChannelInboundHandler<InternalMessage>,
636 // had to specify <Object> to avoid Class Loader not being able to find some classes.
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800637
638 @Override
Yuta HIGUCHIc012dda2016-08-17 00:43:46 -0700639 protected void channelRead0(ChannelHandlerContext ctx, Object rawMessage) throws Exception {
640 InternalMessage message = (InternalMessage) rawMessage;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800641 try {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700642 if (message.isRequest()) {
643 RemoteServerConnection connection =
644 serverConnections.computeIfAbsent(ctx.channel(), RemoteServerConnection::new);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700645 connection.dispatch((InternalRequest) message);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700646 } else {
647 RemoteClientConnection connection =
648 clientConnections.computeIfAbsent(ctx.channel(), RemoteClientConnection::new);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700649 connection.dispatch((InternalReply) message);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700650 }
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800651 } catch (RejectedExecutionException e) {
652 log.warn("Unable to dispatch message due to {}", e.getMessage());
653 }
654 }
655
656 @Override
657 public void exceptionCaught(ChannelHandlerContext context, Throwable cause) {
658 log.error("Exception inside channel handling pipeline.", cause);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700659
660 RemoteClientConnection clientConnection = clientConnections.remove(context.channel());
661 if (clientConnection != null) {
662 clientConnection.close();
663 }
664
665 RemoteServerConnection serverConnection = serverConnections.remove(context.channel());
666 if (serverConnection != null) {
667 serverConnection.close();
668 }
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800669 context.close();
670 }
Yuta HIGUCHIc012dda2016-08-17 00:43:46 -0700671
Jordan Halterman23e73c52018-01-13 14:10:56 -0800672 @Override
673 public void channelInactive(ChannelHandlerContext context) throws Exception {
674 RemoteClientConnection clientConnection = clientConnections.remove(context.channel());
675 if (clientConnection != null) {
676 clientConnection.close();
677 }
678
679 RemoteServerConnection serverConnection = serverConnections.remove(context.channel());
680 if (serverConnection != null) {
681 serverConnection.close();
682 }
683 context.close();
684 }
685
Yuta HIGUCHIc012dda2016-08-17 00:43:46 -0700686 /**
687 * Returns true if the given message should be handled.
688 *
689 * @param msg inbound message
690 * @return true if {@code msg} is {@link InternalMessage} instance.
Yuta HIGUCHIc012dda2016-08-17 00:43:46 -0700691 * @see SimpleChannelInboundHandler#acceptInboundMessage(Object)
692 */
693 @Override
694 public final boolean acceptInboundMessage(Object msg) {
695 return msg instanceof InternalMessage;
696 }
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800697 }
Yuta HIGUCHIc012dda2016-08-17 00:43:46 -0700698
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700699 /**
700 * Wraps a {@link CompletableFuture} and tracks its type and creation time.
701 */
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800702 private final class Callback {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700703 private final String type;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800704 private final CompletableFuture<byte[]> future;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700705 private final long time = System.currentTimeMillis();
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800706
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700707 Callback(String type, CompletableFuture<byte[]> future) {
708 this.type = type;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800709 this.future = future;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800710 }
711
712 public void complete(byte[] value) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700713 future.complete(value);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800714 }
715
716 public void completeExceptionally(Throwable error) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700717 future.completeExceptionally(error);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800718 }
719 }
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800720
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700721 /**
722 * Represents the client side of a connection to a local or remote server.
723 */
724 private interface ClientConnection {
725
726 /**
727 * Sends a message to the other side of the connection.
728 *
729 * @param message the message to send
730 * @return a completable future to be completed once the message has been sent
731 */
Jordan Haltermane3813a92017-07-29 14:10:31 -0700732 CompletableFuture<Void> sendAsync(InternalRequest message);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700733
734 /**
735 * Sends a message to the other side of the connection, awaiting a reply.
736 *
737 * @param message the message to send
738 * @return a completable future to be completed once a reply is received or the request times out
739 */
Jordan Haltermane3813a92017-07-29 14:10:31 -0700740 CompletableFuture<byte[]> sendAndReceive(InternalRequest message);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700741
742 /**
743 * Closes the connection.
744 */
745 default void close() {
746 }
747 }
748
749 /**
750 * Represents the server side of a connection.
751 */
752 private interface ServerConnection {
753
754 /**
755 * Sends a reply to the other side of the connection.
756 *
757 * @param message the message to which to reply
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800758 * @param status the reply status
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700759 * @param payload the response payload
760 */
Jordan Haltermane3813a92017-07-29 14:10:31 -0700761 void reply(InternalRequest message, InternalReply.Status status, Optional<byte[]> payload);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700762
763 /**
764 * Closes the connection.
765 */
766 default void close() {
767 }
768 }
769
770 /**
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800771 * Remote connection implementation.
772 */
773 private abstract class AbstractClientConnection implements ClientConnection {
774 private final Map<Long, Callback> futures = Maps.newConcurrentMap();
775 private final AtomicBoolean closed = new AtomicBoolean(false);
Jordan Haltermanef92f192017-12-21 11:59:38 -0800776 private final Cache<String, RequestMonitor> requestMonitors = CacheBuilder.newBuilder()
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800777 .expireAfterAccess(HISTORY_EXPIRE_MILLIS, TimeUnit.MILLISECONDS)
778 .build();
779
780 /**
781 * Times out callbacks for this connection.
782 */
Jordan Haltermanef92f192017-12-21 11:59:38 -0800783 void timeoutCallbacks() {
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800784 // Store the current time.
785 long currentTime = System.currentTimeMillis();
786
787 // Iterate through future callbacks and time out callbacks that have been alive
788 // longer than the current timeout according to the message type.
789 Iterator<Map.Entry<Long, Callback>> iterator = futures.entrySet().iterator();
790 while (iterator.hasNext()) {
791 Callback callback = iterator.next().getValue();
792 try {
Jordan Haltermanef92f192017-12-21 11:59:38 -0800793 RequestMonitor requestMonitor = requestMonitors.get(callback.type, RequestMonitor::new);
794 long elapsedTime = currentTime - callback.time;
Jordan Halterman111aab72018-01-12 16:28:57 -0800795 if (elapsedTime > MAX_TIMEOUT_MILLIS ||
796 (elapsedTime > MIN_TIMEOUT_MILLIS && requestMonitor.isTimedOut(elapsedTime))) {
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800797 iterator.remove();
Jordan Haltermanef92f192017-12-21 11:59:38 -0800798 requestMonitor.addReplyTime(elapsedTime);
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800799 callback.completeExceptionally(
800 new TimeoutException("Request timed out in " + elapsedTime + " milliseconds"));
801 }
802 } catch (ExecutionException e) {
803 throw new AssertionError();
804 }
805 }
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800806 }
807
808 protected void registerCallback(long id, String subject, CompletableFuture<byte[]> future) {
809 futures.put(id, new Callback(subject, future));
810 }
811
812 protected Callback completeCallback(long id) {
813 Callback callback = futures.remove(id);
814 if (callback != null) {
815 try {
Jordan Haltermanef92f192017-12-21 11:59:38 -0800816 RequestMonitor requestMonitor = requestMonitors.get(callback.type, RequestMonitor::new);
817 requestMonitor.addReplyTime(System.currentTimeMillis() - callback.time);
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800818 } catch (ExecutionException e) {
819 throw new AssertionError();
820 }
821 }
822 return callback;
823 }
824
825 protected Callback failCallback(long id) {
826 return futures.remove(id);
827 }
828
829 @Override
830 public void close() {
831 if (closed.compareAndSet(false, true)) {
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800832 for (Callback callback : futures.values()) {
833 callback.completeExceptionally(new ConnectException());
834 }
835 }
836 }
837 }
838
839 /**
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700840 * Local connection implementation.
841 */
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800842 private final class LocalClientConnection extends AbstractClientConnection {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700843 @Override
Jordan Haltermane3813a92017-07-29 14:10:31 -0700844 public CompletableFuture<Void> sendAsync(InternalRequest message) {
845 BiConsumer<InternalRequest, ServerConnection> handler = handlers.get(message.subject());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700846 if (handler != null) {
847 handler.accept(message, localServerConnection);
848 } else {
849 log.debug("No handler for message type {} from {}", message.type(), message.sender());
850 }
851 return CompletableFuture.completedFuture(null);
852 }
853
854 @Override
Jordan Haltermane3813a92017-07-29 14:10:31 -0700855 public CompletableFuture<byte[]> sendAndReceive(InternalRequest message) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700856 CompletableFuture<byte[]> future = new CompletableFuture<>();
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800857 future.whenComplete((r, e) -> completeCallback(message.id()));
858 registerCallback(message.id(), message.subject(), future);
Jordan Haltermane3813a92017-07-29 14:10:31 -0700859 BiConsumer<InternalRequest, ServerConnection> handler = handlers.get(message.subject());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700860 if (handler != null) {
861 handler.accept(message, new LocalServerConnection(future));
862 } else {
863 log.debug("No handler for message type {} from {}", message.type(), message.sender());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700864 new LocalServerConnection(future)
865 .reply(message, InternalReply.Status.ERROR_NO_HANDLER, Optional.empty());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700866 }
867 return future;
868 }
869 }
870
871 /**
872 * Local server connection.
873 */
874 private final class LocalServerConnection implements ServerConnection {
875 private final CompletableFuture<byte[]> future;
876
877 LocalServerConnection(CompletableFuture<byte[]> future) {
878 this.future = future;
879 }
880
881 @Override
Jordan Haltermane3813a92017-07-29 14:10:31 -0700882 public void reply(InternalRequest message, InternalReply.Status status, Optional<byte[]> payload) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700883 if (future != null) {
Jordan Haltermane3813a92017-07-29 14:10:31 -0700884 if (status == InternalReply.Status.OK) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700885 future.complete(payload.orElse(EMPTY_PAYLOAD));
Jordan Haltermane3813a92017-07-29 14:10:31 -0700886 } else if (status == InternalReply.Status.ERROR_NO_HANDLER) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700887 future.completeExceptionally(new MessagingException.NoRemoteHandler());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700888 } else if (status == InternalReply.Status.ERROR_HANDLER_EXCEPTION) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700889 future.completeExceptionally(new MessagingException.RemoteHandlerFailure());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700890 } else if (status == InternalReply.Status.PROTOCOL_EXCEPTION) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700891 future.completeExceptionally(new MessagingException.ProtocolException());
892 }
893 }
894 }
895 }
896
897 /**
898 * Remote connection implementation.
899 */
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800900 private final class RemoteClientConnection extends AbstractClientConnection {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700901 private final Channel channel;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700902
903 RemoteClientConnection(Channel channel) {
904 this.channel = channel;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800905 }
906
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700907 @Override
Jordan Haltermane3813a92017-07-29 14:10:31 -0700908 public CompletableFuture<Void> sendAsync(InternalRequest message) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700909 CompletableFuture<Void> future = new CompletableFuture<>();
910 channel.writeAndFlush(message).addListener(channelFuture -> {
911 if (!channelFuture.isSuccess()) {
912 future.completeExceptionally(channelFuture.cause());
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800913 } else {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700914 future.complete(null);
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800915 }
916 });
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700917 return future;
918 }
919
920 @Override
Jordan Haltermane3813a92017-07-29 14:10:31 -0700921 public CompletableFuture<byte[]> sendAndReceive(InternalRequest message) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700922 CompletableFuture<byte[]> future = new CompletableFuture<>();
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800923 registerCallback(message.id(), message.subject(), future);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700924 channel.writeAndFlush(message).addListener(channelFuture -> {
925 if (!channelFuture.isSuccess()) {
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800926 Callback callback = failCallback(message.id());
927 if (callback != null) {
928 callback.completeExceptionally(channelFuture.cause());
929 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700930 }
931 });
932 return future;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800933 }
934
935 /**
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700936 * Dispatches a message to a local handler.
937 *
938 * @param message the message to dispatch
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800939 */
Jordan Haltermane3813a92017-07-29 14:10:31 -0700940 private void dispatch(InternalReply message) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700941 if (message.preamble() != preamble) {
Jordan Haltermane3813a92017-07-29 14:10:31 -0700942 log.debug("Received {} with invalid preamble", message.type());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700943 return;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800944 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700945
946 clockService.recordEventTime(message.time());
947
Jordan Halterman1cf233c2017-12-08 23:52:54 -0800948 Callback callback = completeCallback(message.id());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700949 if (callback != null) {
Jordan Haltermane3813a92017-07-29 14:10:31 -0700950 if (message.status() == InternalReply.Status.OK) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700951 callback.complete(message.payload());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700952 } else if (message.status() == InternalReply.Status.ERROR_NO_HANDLER) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700953 callback.completeExceptionally(new MessagingException.NoRemoteHandler());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700954 } else if (message.status() == InternalReply.Status.ERROR_HANDLER_EXCEPTION) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700955 callback.completeExceptionally(new MessagingException.RemoteHandlerFailure());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700956 } else if (message.status() == InternalReply.Status.PROTOCOL_EXCEPTION) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700957 callback.completeExceptionally(new MessagingException.ProtocolException());
958 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700959 } else {
Jordan Haltermane3813a92017-07-29 14:10:31 -0700960 log.debug("Received a reply for message id:[{}] "
961 + "but was unable to locate the"
962 + " request handle", message.id());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700963 }
964 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700965 }
966
967 /**
968 * Remote server connection.
969 */
970 private final class RemoteServerConnection implements ServerConnection {
971 private final Channel channel;
972
973 RemoteServerConnection(Channel channel) {
974 this.channel = channel;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800975 }
976
977 /**
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700978 * Dispatches a message to a local handler.
979 *
980 * @param message the message to dispatch
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800981 */
Jordan Haltermane3813a92017-07-29 14:10:31 -0700982 private void dispatch(InternalRequest message) {
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700983 if (message.preamble() != preamble) {
984 log.debug("Received {} with invalid preamble from {}", message.type(), message.sender());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700985 reply(message, InternalReply.Status.PROTOCOL_EXCEPTION, Optional.empty());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700986 return;
Aaron Kruglikov1b727382016-02-09 16:17:47 -0800987 }
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700988
989 clockService.recordEventTime(message.time());
990
Jordan Haltermane3813a92017-07-29 14:10:31 -0700991 BiConsumer<InternalRequest, ServerConnection> handler = handlers.get(message.subject());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700992 if (handler != null) {
993 handler.accept(message, this);
994 } else {
995 log.debug("No handler for message type {} from {}", message.type(), message.sender());
Jordan Haltermane3813a92017-07-29 14:10:31 -0700996 reply(message, InternalReply.Status.ERROR_NO_HANDLER, Optional.empty());
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -0700997 }
998 }
999
1000 @Override
Jordan Haltermane3813a92017-07-29 14:10:31 -07001001 public void reply(InternalRequest message, InternalReply.Status status, Optional<byte[]> payload) {
1002 InternalReply response = new InternalReply(preamble,
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -07001003 clockService.timeNow(),
1004 message.id(),
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -07001005 payload.orElse(EMPTY_PAYLOAD),
1006 status);
1007 channel.writeAndFlush(response);
1008 }
1009 }
1010
1011 /**
1012 * Request-reply timeout history tracker.
1013 */
Jordan Haltermanef92f192017-12-21 11:59:38 -08001014 private static final class RequestMonitor {
1015 private final DescriptiveStatistics samples = new SynchronizedDescriptiveStatistics(WINDOW_SIZE);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -07001016
1017 /**
1018 * Adds a reply time to the history.
1019 *
1020 * @param replyTime the reply time to add to the history
1021 */
1022 void addReplyTime(long replyTime) {
Jordan Haltermanef92f192017-12-21 11:59:38 -08001023 samples.addValue(replyTime);
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -07001024 }
1025
1026 /**
Jordan Haltermanef92f192017-12-21 11:59:38 -08001027 * Returns a boolean indicating whether the given request should be timed out according to the elapsed time.
1028 *
1029 * @param elapsedTime the elapsed request time
1030 * @return indicates whether the request should be timed out
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -07001031 */
Jordan Haltermanef92f192017-12-21 11:59:38 -08001032 boolean isTimedOut(long elapsedTime) {
1033 return phi(elapsedTime) >= PHI_FAILURE_THRESHOLD;
1034 }
1035
1036 /**
1037 * Compute phi for the specified node id.
1038 *
1039 * @param elapsedTime the duration since the request was sent
1040 * @return phi value
1041 */
1042 private double phi(long elapsedTime) {
1043 if (samples.getN() < MIN_SAMPLES) {
1044 return 0.0;
Jordan Haltermanf7c7f6f2017-05-05 03:02:34 -07001045 }
Jordan Haltermanef92f192017-12-21 11:59:38 -08001046 return computePhi(samples, elapsedTime);
1047 }
1048
1049 /**
1050 * Computes the phi value from the given samples.
1051 *
1052 * @param samples the samples from which to compute phi
1053 * @param elapsedTime the duration since the request was sent
1054 * @return phi
1055 */
1056 private double computePhi(DescriptiveStatistics samples, long elapsedTime) {
1057 return samples.getN() > 0 ? PHI_FACTOR * elapsedTime / samples.getMean() : 100;
Aaron Kruglikov1b727382016-02-09 16:17:47 -08001058 }
1059 }
JunHuy Lam39eb4292015-06-26 17:24:23 +09001060}