/src/java/org/apache/cassandra/net/InboundConnectionSettings.java

https://github.com/apache/cassandra · Java · 213 lines · 160 code · 34 blank · 19 comment · 24 complexity · 67b25eba8877ebfda6d4d98d0596666e MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. package org.apache.cassandra.net;
  19. import java.net.InetAddress;
  20. import java.util.function.Function;
  21. import com.google.common.base.Preconditions;
  22. import org.apache.cassandra.auth.IInternodeAuthenticator;
  23. import org.apache.cassandra.config.DatabaseDescriptor;
  24. import org.apache.cassandra.config.EncryptionOptions.ServerEncryptionOptions;
  25. import org.apache.cassandra.exceptions.ConfigurationException;
  26. import org.apache.cassandra.locator.InetAddressAndPort;
  27. import org.apache.cassandra.utils.FBUtilities;
  28. import static java.lang.String.format;
  29. import static org.apache.cassandra.net.MessagingService.*;
  30. public class InboundConnectionSettings
  31. {
  32. public final IInternodeAuthenticator authenticator;
  33. public final InetAddressAndPort bindAddress;
  34. public final ServerEncryptionOptions encryption;
  35. public final Integer socketReceiveBufferSizeInBytes;
  36. public final Integer applicationReceiveQueueCapacityInBytes;
  37. public final AcceptVersions acceptMessaging;
  38. public final AcceptVersions acceptStreaming;
  39. public final SocketFactory socketFactory;
  40. public final Function<InetAddressAndPort, InboundMessageHandlers> handlers;
  41. private InboundConnectionSettings(IInternodeAuthenticator authenticator,
  42. InetAddressAndPort bindAddress,
  43. ServerEncryptionOptions encryption,
  44. Integer socketReceiveBufferSizeInBytes,
  45. Integer applicationReceiveQueueCapacityInBytes,
  46. AcceptVersions acceptMessaging,
  47. AcceptVersions acceptStreaming,
  48. SocketFactory socketFactory,
  49. Function<InetAddressAndPort, InboundMessageHandlers> handlers)
  50. {
  51. this.authenticator = authenticator;
  52. this.bindAddress = bindAddress;
  53. this.encryption = encryption;
  54. this.socketReceiveBufferSizeInBytes = socketReceiveBufferSizeInBytes;
  55. this.applicationReceiveQueueCapacityInBytes = applicationReceiveQueueCapacityInBytes;
  56. this.acceptMessaging = acceptMessaging;
  57. this.acceptStreaming = acceptStreaming;
  58. this.socketFactory = socketFactory;
  59. this.handlers = handlers;
  60. }
  61. public InboundConnectionSettings()
  62. {
  63. this(null, null, null, null, null, null, null, null, null);
  64. }
  65. public boolean authenticate(InetAddressAndPort endpoint)
  66. {
  67. return authenticator.authenticate(endpoint.getAddress(), endpoint.getPort());
  68. }
  69. public boolean authenticate(InetAddress address, int port)
  70. {
  71. return authenticator.authenticate(address, port);
  72. }
  73. public String toString()
  74. {
  75. return format("address: (%s), nic: %s, encryption: %s",
  76. bindAddress, FBUtilities.getNetworkInterface(bindAddress.getAddress()), SocketFactory.encryptionOptionsSummary(encryption));
  77. }
  78. public InboundConnectionSettings withAuthenticator(IInternodeAuthenticator authenticator)
  79. {
  80. return new InboundConnectionSettings(authenticator, bindAddress, encryption,
  81. socketReceiveBufferSizeInBytes, applicationReceiveQueueCapacityInBytes,
  82. acceptMessaging, acceptStreaming, socketFactory, handlers);
  83. }
  84. @SuppressWarnings("unused")
  85. public InboundConnectionSettings withBindAddress(InetAddressAndPort bindAddress)
  86. {
  87. return new InboundConnectionSettings(authenticator, bindAddress, encryption,
  88. socketReceiveBufferSizeInBytes, applicationReceiveQueueCapacityInBytes,
  89. acceptMessaging, acceptStreaming, socketFactory, handlers);
  90. }
  91. public InboundConnectionSettings withEncryption(ServerEncryptionOptions encryption)
  92. {
  93. return new InboundConnectionSettings(authenticator, bindAddress, encryption,
  94. socketReceiveBufferSizeInBytes, applicationReceiveQueueCapacityInBytes,
  95. acceptMessaging, acceptStreaming, socketFactory, handlers);
  96. }
  97. public InboundConnectionSettings withSocketReceiveBufferSizeInBytes(int socketReceiveBufferSizeInBytes)
  98. {
  99. return new InboundConnectionSettings(authenticator, bindAddress, encryption,
  100. socketReceiveBufferSizeInBytes, applicationReceiveQueueCapacityInBytes,
  101. acceptMessaging, acceptStreaming, socketFactory, handlers);
  102. }
  103. @SuppressWarnings("unused")
  104. public InboundConnectionSettings withApplicationReceiveQueueCapacityInBytes(int applicationReceiveQueueCapacityInBytes)
  105. {
  106. return new InboundConnectionSettings(authenticator, bindAddress, encryption,
  107. socketReceiveBufferSizeInBytes, applicationReceiveQueueCapacityInBytes,
  108. acceptMessaging, acceptStreaming, socketFactory, handlers);
  109. }
  110. public InboundConnectionSettings withAcceptMessaging(AcceptVersions acceptMessaging)
  111. {
  112. return new InboundConnectionSettings(authenticator, bindAddress, encryption,
  113. socketReceiveBufferSizeInBytes, applicationReceiveQueueCapacityInBytes,
  114. acceptMessaging, acceptStreaming, socketFactory, handlers);
  115. }
  116. public InboundConnectionSettings withAcceptStreaming(AcceptVersions acceptMessaging)
  117. {
  118. return new InboundConnectionSettings(authenticator, bindAddress, encryption,
  119. socketReceiveBufferSizeInBytes, applicationReceiveQueueCapacityInBytes,
  120. acceptMessaging, acceptStreaming, socketFactory, handlers);
  121. }
  122. public InboundConnectionSettings withSocketFactory(SocketFactory socketFactory)
  123. {
  124. return new InboundConnectionSettings(authenticator, bindAddress, encryption,
  125. socketReceiveBufferSizeInBytes, applicationReceiveQueueCapacityInBytes,
  126. acceptMessaging, acceptStreaming, socketFactory, handlers);
  127. }
  128. public InboundConnectionSettings withHandlers(Function<InetAddressAndPort, InboundMessageHandlers> handlers)
  129. {
  130. return new InboundConnectionSettings(authenticator, bindAddress, encryption,
  131. socketReceiveBufferSizeInBytes, applicationReceiveQueueCapacityInBytes,
  132. acceptMessaging, acceptStreaming, socketFactory, handlers);
  133. }
  134. public InboundConnectionSettings withLegacySslStoragePortDefaults()
  135. {
  136. ServerEncryptionOptions encryption = this.encryption;
  137. if (encryption == null)
  138. encryption = DatabaseDescriptor.getInternodeMessagingEncyptionOptions();
  139. encryption = encryption.withOptional(false).withInternodeEncryption(ServerEncryptionOptions.InternodeEncryption.all);
  140. return this.withBindAddress(bindAddress.withPort(DatabaseDescriptor.getSSLStoragePort()))
  141. .withEncryption(encryption)
  142. .withDefaults();
  143. }
  144. // note that connectTo is updated even if specified, in the case of pre40 messaging and using encryption (to update port)
  145. public InboundConnectionSettings withDefaults()
  146. {
  147. // this is for the socket that can be plain, only ssl, or optional plain/ssl
  148. if (bindAddress.getPort() != DatabaseDescriptor.getStoragePort() && bindAddress.getPort() != DatabaseDescriptor.getSSLStoragePort())
  149. throw new ConfigurationException(format("Local endpoint port %d doesn't match YAML configured port %d or legacy SSL port %d",
  150. bindAddress.getPort(), DatabaseDescriptor.getStoragePort(), DatabaseDescriptor.getSSLStoragePort()));
  151. IInternodeAuthenticator authenticator = this.authenticator;
  152. ServerEncryptionOptions encryption = this.encryption;
  153. Integer socketReceiveBufferSizeInBytes = this.socketReceiveBufferSizeInBytes;
  154. Integer applicationReceiveQueueCapacityInBytes = this.applicationReceiveQueueCapacityInBytes;
  155. AcceptVersions acceptMessaging = this.acceptMessaging;
  156. AcceptVersions acceptStreaming = this.acceptStreaming;
  157. SocketFactory socketFactory = this.socketFactory;
  158. Function<InetAddressAndPort, InboundMessageHandlers> handlersFactory = this.handlers;
  159. if (authenticator == null)
  160. authenticator = DatabaseDescriptor.getInternodeAuthenticator();
  161. if (encryption == null)
  162. encryption = DatabaseDescriptor.getInternodeMessagingEncyptionOptions();
  163. if (socketReceiveBufferSizeInBytes == null)
  164. socketReceiveBufferSizeInBytes = DatabaseDescriptor.getInternodeSocketReceiveBufferSizeInBytes();
  165. if (applicationReceiveQueueCapacityInBytes == null)
  166. applicationReceiveQueueCapacityInBytes = DatabaseDescriptor.getInternodeApplicationReceiveQueueCapacityInBytes();
  167. if (acceptMessaging == null)
  168. acceptMessaging = accept_messaging;
  169. if (acceptStreaming == null)
  170. acceptStreaming = accept_streaming;
  171. if (socketFactory == null)
  172. socketFactory = instance().socketFactory;
  173. if (handlersFactory == null)
  174. handlersFactory = instance()::getInbound;
  175. Preconditions.checkArgument(socketReceiveBufferSizeInBytes == 0 || socketReceiveBufferSizeInBytes >= 1 << 10, "illegal socket send buffer size: " + socketReceiveBufferSizeInBytes);
  176. Preconditions.checkArgument(applicationReceiveQueueCapacityInBytes >= 1 << 10, "illegal application receive queue capacity: " + applicationReceiveQueueCapacityInBytes);
  177. return new InboundConnectionSettings(authenticator, bindAddress, encryption, socketReceiveBufferSizeInBytes, applicationReceiveQueueCapacityInBytes, acceptMessaging, acceptStreaming, socketFactory, handlersFactory);
  178. }
  179. }