All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.transport.netty4.NetUtils Maven / Gradle / Ivy

The newest version!
/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the "Elastic License
 * 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side
 * Public License v 1"; you may not use this file except in compliance with, at
 * your election, the "Elastic License 2.0", the "GNU Affero General Public
 * License v3.0 only", or the "Server Side Public License, v 1".
 */

package org.elasticsearch.transport.netty4;

import jdk.net.ExtendedSocketOptions;

import org.elasticsearch.core.SuppressForbidden;

import java.io.IOException;
import java.net.SocketOption;
import java.net.StandardSocketOptions;
import java.nio.channels.NetworkChannel;
import java.util.Objects;

/**
 * Utilities for network-related methods.
 */
public class NetUtils {

    private NetUtils() {}

    // Accessors to the extended socket options reduce the proliferation of the non-portable
    // ExtendedSocketOptions type.

    /**
     * Returns the extended TCP_KEEPIDLE socket option.
     */
    @SuppressForbidden(reason = "access to non-portable socket option required")
    public static SocketOption getTcpKeepIdleSocketOption() {
        return ExtendedSocketOptions.TCP_KEEPIDLE;
    }

    /**
     * Returns the extended TCP_KEEPINTERVAL socket option.
     */
    @SuppressForbidden(reason = "access to non-portable socket option required")
    public static SocketOption getTcpKeepIntervalSocketOption() {
        return ExtendedSocketOptions.TCP_KEEPINTERVAL;
    }

    /**
     * Returns the extended TCP_KEEPCOUNT socket option.
     */
    @SuppressForbidden(reason = "access to non-portable socket option required")
    public static SocketOption getTcpKeepCountSocketOption() {
        return ExtendedSocketOptions.TCP_KEEPCOUNT;
    }

    /**
     * If SO_KEEPALIVE is enabled (default), this method ensures sane default values for the extended socket options
     * TCP_KEEPIDLE and TCP_KEEPINTERVAL. The default value for TCP_KEEPIDLE is system dependent, but is typically 2 hours.
     * Such a high value can result in firewalls eagerly closing these connections. To tell any intermediate devices that
     * the connection remains alive, we explicitly set these options to 5 minutes if the defaults are higher than that.
     */
    public static void tryEnsureReasonableKeepAliveConfig(NetworkChannel socketChannel) {
        assert socketChannel != null;
        try {
            if (socketChannel.supportedOptions().contains(StandardSocketOptions.SO_KEEPALIVE)) {
                final Boolean keepalive = socketChannel.getOption(StandardSocketOptions.SO_KEEPALIVE);
                assert keepalive != null;
                if (keepalive) {
                    setMinValueForSocketOption(socketChannel, getTcpKeepIdleSocketOption(), 300);
                    setMinValueForSocketOption(socketChannel, getTcpKeepIntervalSocketOption(), 300);
                }
            }
        } catch (Exception e) {
            // Getting an exception here should be ok when concurrently closing the channel
            // An UnsupportedOperationException or IllegalArgumentException, however, should not happen
            assert e instanceof IOException : e;
        }
    }

    private static void setMinValueForSocketOption(NetworkChannel socketChannel, SocketOption option, int minValue) {
        Objects.requireNonNull(option);
        if (socketChannel.supportedOptions().contains(option)) {
            try {
                final Integer currentIdleVal = socketChannel.getOption(option);
                assert currentIdleVal != null;
                if (currentIdleVal.intValue() > minValue) {
                    socketChannel.setOption(option, minValue);
                }
            } catch (Exception e) {
                // Getting an exception here should be ok when concurrently closing the channel
                // An UnsupportedOperationException or IllegalArgumentException, however, should not happen
                assert e instanceof IOException : e;
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy