com.mongodb.async.client.internal.KeyManagementService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongodb-driver-async Show documentation
Show all versions of mongodb-driver-async Show documentation
The MongoDB Asynchronous Driver
/*
* Copyright 2008-present MongoDB, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mongodb.async.client.internal;
import com.mongodb.MongoSocketException;
import com.mongodb.MongoSocketOpenException;
import com.mongodb.MongoSocketReadException;
import com.mongodb.MongoSocketReadTimeoutException;
import com.mongodb.MongoSocketWriteException;
import com.mongodb.ServerAddress;
import com.mongodb.async.SingleResultCallback;
import com.mongodb.connection.AsyncCompletionHandler;
import com.mongodb.connection.SocketSettings;
import com.mongodb.connection.SslSettings;
import com.mongodb.connection.Stream;
import com.mongodb.connection.StreamFactory;
import com.mongodb.connection.TlsChannelStreamFactoryFactory;
import com.mongodb.crypt.capi.MongoKeyDecryptor;
import com.mongodb.internal.connection.AsynchronousChannelStream;
import org.bson.ByteBuf;
import org.bson.ByteBufNIO;
import javax.net.ssl.SSLContext;
import java.nio.channels.CompletionHandler;
import java.nio.channels.InterruptedByTimeoutException;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.TimeUnit;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
class KeyManagementService {
private final int port;
private final StreamFactory streamFactory;
KeyManagementService(final SSLContext sslContext, final int port, final int timeoutMillis) {
this.port = port;
this.streamFactory = new TlsChannelStreamFactoryFactory().create(SocketSettings.builder()
.connectTimeout(timeoutMillis, TimeUnit.MILLISECONDS)
.readTimeout(timeoutMillis, TimeUnit.MILLISECONDS)
.build(),
SslSettings.builder().enabled(true).context(sslContext).build());
}
void decryptKey(final MongoKeyDecryptor keyDecryptor, final SingleResultCallback callback) {
streamOpen(keyDecryptor, callback);
}
private void streamOpen(final MongoKeyDecryptor keyDecryptor, final SingleResultCallback callback) {
final Stream stream = streamFactory.create(new ServerAddress(keyDecryptor.getHostName(), port));
stream.openAsync(new AsyncCompletionHandler() {
@Override
public void completed(final Void aVoid) {
streamWrite(stream, keyDecryptor, callback);
}
@Override
public void failed(final Throwable t) {
stream.close();
callback.onResult(null, new MongoSocketOpenException("Exception opening connection to Key Management Service",
getServerAddress(keyDecryptor), t));
}
});
}
private void streamWrite(final Stream stream, final MongoKeyDecryptor keyDecryptor, final SingleResultCallback callback) {
List byteBufs = Collections.singletonList(new ByteBufNIO(keyDecryptor.getMessage()));
stream.writeAsync(byteBufs, new AsyncCompletionHandler() {
@Override
public void completed(final Void aVoid) {
streamRead(stream, keyDecryptor, callback);
}
@Override
public void failed(final Throwable t) {
stream.close();
callback.onResult(null, new MongoSocketWriteException("Exception sending message to Key Management Service",
getServerAddress(keyDecryptor), t));
}
});
}
private void streamRead(final Stream stream, final MongoKeyDecryptor keyDecryptor, final SingleResultCallback callback) {
int bytesNeeded = keyDecryptor.bytesNeeded();
if (bytesNeeded > 0) {
AsynchronousChannelStream asyncStream = (AsynchronousChannelStream) stream;
final ByteBuf buffer = asyncStream.getBuffer(bytesNeeded);
asyncStream.getChannel().read(buffer.asNIO(), asyncStream.getSettings().getReadTimeout(MILLISECONDS), MILLISECONDS, null,
new CompletionHandler() {
@Override
public void completed(final Integer integer, final Void aVoid) {
buffer.flip();
keyDecryptor.feed(buffer.asNIO());
buffer.release();
streamRead(stream, keyDecryptor, callback);
}
@Override
public void failed(final Throwable t, final Void aVoid) {
buffer.release();
stream.close();
MongoSocketException exception;
if (t instanceof InterruptedByTimeoutException) {
exception = new MongoSocketReadTimeoutException("Timeout while receiving message from Key Management "
+ "Service", getServerAddress(keyDecryptor), t);
} else {
exception = new MongoSocketReadException("Exception receiving message from Key Management Service",
getServerAddress(keyDecryptor), t);
}
callback.onResult(null, exception);
}
});
} else {
stream.close();
callback.onResult(null, null);
}
}
private ServerAddress getServerAddress(final MongoKeyDecryptor keyDecryptor) {
return new ServerAddress(keyDecryptor.getHostName(), port);
}
}