Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Changed to in development

To be Reviewed By: DRAFT3/20/2020

Authors: Dan Smith, Ernie Burghardt

Status: Draft  Draft | Discussion | Active | Dropped | Superseded

Superseded by: N/A

Related: GEODE-7852 [DROPPED] Client side configuration for a SNI proxy

Problem

Users would like to be able to put Geode servers behind a proxy. This would allow users to avoid having to allocate public IP addresses for all of the servers, as well as being able to control and monitor access to the servers.

Currently, this is not very well supported. Geode clients discover servers using locators. It is possible to set the hostname-for-clients on all servers to point to the proxy server, but this is not ideal. Geode clients rely on being able to connect to specific  servers for features like PR single hop and client server queues. This means that the clients need a protocol that will allow them to tell the proxy which server they connect to.

Anti-Goals

  • It is an anti-goal to deal with configuring the proxy itself.
  • It is an anti-goal to support all different kinds of proxies. In the future we may consider supporting other types of proxies, but this proposal is to support one specific type - a SNI proxy.
  • We're not recommending any specific SNI proxy
  • This proposal does not include supporting a proxy for WAN or P2P connectivity. In the future we may add support for that as well.

Solution

We will add a way for the user to set a SNI proxy for the client to connect to the servers through. When this option is set, all connections from the client to the locator or the servers will use this SNI proxy. When configuring a Pool, the names of the locators or the names of the servers provided in the pool configuration will be passed as the Server Name Indicator field when the client connects to the proxy. The proxy must be able to resolve these names and connect to the correct locator or server.

This setting ideally should be at a pool level, because different pools may need to use different proxies.

To make it as easy as possible for users to extend our proxy implementation logic or implement their own, we will introduce a more general pool setting which ; a custom SocketFactory.  This will allow the users to override the creation of client-server sockets with a custom SocketFactory. We will provide an implementation of this SocketFactory that will connect their client to an a SNI proxy.

The way to configure the SNI proxy will therefore look something like this:

poolFactory.setSocketFactory(

Proxies

ProxySocketFactories.sni("proxyHostname", 443));


In order for this proxy to work, the SNI hostname field in the TLS handshake must be set to the name of the locator or server we are trying to connect to. With a slightly larger SocketFactory interface, we could potentially only send this SNI hostname when an SNI proxy is configured. However, we propose that the Geode client will always send the SNI hostname field as part of the handshake. We feel adding the SNI hostname will only be helpful to users, who may decide to use to to present different SSL certificates for different hostnames, or other use cases for this hostname.


Below are the details on the new methods and interfaces added to the API to support this

Modified classes:

PoolFactory {  

 


  
/**
   
 * Set the socket factory used by this pool to create connections to both locators (if
   
 * configured using {@link #addLocator(String, int)}) and servers.
   
 *
   * Sockets returned by this factory will have the rest of the configuration options
   * specified on this pool and on the {@link ClientCache} applied to them. In particular,
   * sockets returned by this factory will be wrapped with SSLSockets if ssl is enabled
   * for this client cache.
   *
   * This factory can be used for configuring a proxy, or overriding various socket settings.
   * For modifying SSL settings, see {@link SSLParameterExtension}
   *
   * See {@link Proxies}
   *
   * @param socketFactory The {@link SocketFactory} to use
   * @return a reference to <code> this </code>
   * @since Geode 1.13
   */
  PoolFactory setSocketFactory(SocketFactory
 * see {@link SocketFactory}
* See {@link ProxySocketFactories}
*
* @param socketFactory The {@link SocketFactory} to use
* @return a reference to <code> this </code>
* @since Geode 1.13
*/
PoolFactory setSocketFactory(SocketFactory socketFactory);
}
 
ClientCacheFactory {
  /**
   * (see description of PoolFactory above)
   */
  setPoolSocketFactory(SocketFactory socketFactory)
}


New classes

package org.apache.geode.cache.client;

/**
* A socket factory used to create sockets from a client to locators or servers.
*
*
* Sockets returned by this factory will have the rest of the configuration options
* specified on the {@link Pool} and on the {@link ClientCache} applied to them. In particular,
* sockets returned by this factory will be wrapped with SSLSockets if ssl is enabled
* for this client cache based on {@link ConfigurationProperties#SSL_ENABLED_COMPONENTS}.
* Sockets return by this factory should not be SSLSockets. For modifying SSL settings,
* see {@link SSLParameterExtension}
*
* Sockets returned by this factory should be in an unconnected state, similar to
* {@link Socket#Socket()}
*
* This factory can be used for configuring a proxy, or overriding various socket settings.
*
* @see PoolFactory#setSocketFactory(SocketFactory)
*/
public interface SocketFactory {
  
/**
   
 * Create
a (unconnected) tcp socket for establishing a client.
   */
Socket createSocket() throws
 an unconnected tcp socket for establishing a client.
*
* @return an unconnected socket
*/
 Socket createSocket() throws IOException;
}


Code Block
package org.apache.geode.cache.client.proxy;

...



public class SniSocketFactory implements SocketFactory

...

 {
  public SniSocketFactory(String hostname, int port) {
  ...

...


}
 
public class ProxySocketFactories {
   public static SocketFactory sni(String hostname, int

...

 port)  
}


XML Support


We will also add support for the new SocketFactory option in XML. The SocketFactory can be added using the standard mechanism for declaring classes in Geode's XML - implementing declarable and passing in a provided set of properties

Code Block
<pool>  
  <socket-factory>
    <class-name>com.company.app.CustomSocketFactory</class-name>
     <parameter name="proxyHost">
       <string>proxy.company.com</string>
     </parameter>  
  </socket-factory>
</pool>


Performance Impact

Connecting through a proxy may impact the performance of client/server messaging, but it is up to the user to decide if they want to use this feature or not. SNI proxies do require the use of TLS, which also adds overhead.

Backwards Compatibility and Upgrade Path

This is a client side setting , so there should be no backwards compatibility or upgrade concerns with the setting. We are sending a new piece of information as part of the TLS handshake, but this is a TLS extension and it will be ignored by servers and locators.

One concern with this SocketFactory approach is that is including the use of blocking, Java 1.0 sockets in the API. If , in the future we try to upgrade the internals of the client to use SocketChannel or netty or rsocket, we will have a difficult time continuing to support this SocketFactory API and may break users' custom SocketFactory implementations.

Prior Art

Alternative ways to introduce a proxy would be:

...

Geode also added support to set the SNI field hostname in the client hello as part of GEODE-7414. With those changes , a user can provide a SSLParameterExtension callback that can modify any of the SSLParameters , including the SNI server namehostname. If a proxy of type SNI is set and the SSLParameterExtension is also set, the SSLParameterExtension will run after geode has set the SNI namehostname, and can potential modify it.

FAQ

Is this platform specific?

...

  • This is an implementation detail that will be left to the users discretion.


Errata

What are minor adjustments that had to be made to the proposal since it was approved?


References

...

[1] Description of URL syntax from Wikipedia article on URLs https://en.wikipedia.org/wiki/URL#Syntax

...