Source code for ironic.conf.json_rpc

#
# 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.

from oslo_config import cfg

from ironic.common.i18n import _
from ironic.common import keystone
from ironic.conf.api import Octal


CONF = cfg.CONF


opts = [
    cfg.StrOpt('auth_strategy',
               choices=[('noauth', _('no authentication')),
                        ('keystone', _('use the Identity service for '
                                       'authentication')),
                        ('http_basic', _('HTTP basic authentication'))],
               help=_('Authentication strategy used by JSON RPC. Defaults to '
                      'the global auth_strategy setting.')),
    cfg.StrOpt('http_basic_auth_user_file',
               default='/etc/ironic/htpasswd-json-rpc',
               help=_('Path to Apache format user authentication file used '
                      'when auth_strategy=http_basic')),
    cfg.HostAddressOpt('host_ip',
                       default='::',
                       help=_('The IP address or hostname on which JSON RPC '
                              'will listen.')),
    cfg.PortOpt('port',
                default=8089,
                help=_('The port to use for JSON RPC')),
    cfg.BoolOpt('use_ssl',
                default=False,
                help=_('Whether to use TLS for JSON RPC')),
    cfg.StrOpt('cert_file',
               help=_("Certificate file the JSON-RPC listener will present "
                      "to clients when [json_rpc]use_ssl=True.")),
    cfg.StrOpt('key_file',
               help=_("Private key file matching cert_file.")),
    cfg.StrOpt(
        'tls_minimum_version',
        default='1.2',
        choices=[
            ('1.2',
             _('Require TLS 1.2 as the minimum version.')),
            ('1.3',
             _('Require TLS 1.3 as the minimum version. '
               'Recommended for Post-Quantum Cryptography '
               'readiness as PQC key exchange is only '
               'available in TLS 1.3.')),
        ],
        help=_("Set the minimum TLS protocol version for "
               "the JSON-RPC server when "
               "[json_rpc]use_ssl is True. Defaults to "
               "TLS 1.2 since TLS 1.0 and 1.1 are "
               "deprecated (RFC 8996).")),
    cfg.StrOpt(
        'tls_ciphers',
        help=_("Set the list of available ciphers for the "
               "JSON-RPC server. The value should be a "
               "string in the OpenSSL cipher list format. "
               "Has no effect when [json_rpc]use_ssl is "
               "False.")),
    cfg.BoolOpt('client_use_ssl',
                default=False,
                help=_('Set to True to force TLS connections in the client '
                       'even if use_ssl is set to False. Only makes sense '
                       'if server-side TLS is provided outside of Ironic '
                       '(e.g. with httpd acting as a reverse proxy).')),
    cfg.ListOpt('allowed_roles',
                default=['admin'],
                help=_("List of roles allowed to use JSON RPC")),
    cfg.StrOpt('unix_socket',
               help=_('Unix socket to listen on. Disables host_ip and port.')),
    cfg.Opt('unix_socket_mode', type=Octal(),
            help=_('File mode (an octal number) of the unix socket to '
                   'listen on. Ignored if unix_socket is not set.')),
    cfg.BoolOpt('debug_log_request_id_only',
                mutable=True,
                default=True,
                help=_('When debug logging is enabled, log only the request '
                       'ID instead of the full request and response for JSON '
                       'RPC calls. This reduces log verbosity while still '
                       'providing some traceability for performance '
                       'analysis.')),
]


[docs] def register_opts(conf, group='json_rpc'): """Register JSON-RPC options. :param conf: The global oslo.config object. :param group: Configuration group name to register options under. Defaults to 'json_rpc'. Allows reusing the same option set for different JSON-RPC clients (e.g., networking). """ conf.register_opts(opts, group=group) keystone.register_auth_opts(conf, group) conf.set_default('timeout', 120, group=group)
[docs] def list_opts(): """Return options for sample configuration generation.""" return keystone.add_auth_opts(opts)
[docs] def auth_strategy(group='json_rpc'): """Return effective auth strategy for a given group. :param group: Configuration group name. Defaults to 'json_rpc'. :returns: Authentication strategy string. """ return getattr(CONF, group).auth_strategy or CONF.auth_strategy