Source code for ironic.drivers.modules.ipmitool

# coding=utf-8

# Copyright 2012 Hewlett-Packard Development Company, L.P.
# Copyright (c) 2012 NTT DOCOMO, INC.
# Copyright 2014 International Business Machines Corporation
# All Rights Reserved.
#
#    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.

"""
IPMI power manager driver.

Uses the 'ipmitool' command (http://ipmitool.sourceforge.net/) to remotely
manage hardware.  This includes setting the boot device, getting a
serial-over-LAN console, and controlling the power state of the machine.

NOTE THAT CERTAIN DISTROS MAY INSTALL openipmi BY DEFAULT, INSTEAD OF ipmitool,
WHICH PROVIDES DIFFERENT COMMAND-LINE OPTIONS AND *IS NOT SUPPORTED* BY THIS
DRIVER.
"""

import contextlib
import os
import re
import subprocess
import tempfile
import time

from eventlet.green import subprocess as green_subprocess
from ironic_lib import metrics_utils
from ironic_lib import utils as ironic_utils
from oslo_concurrency import processutils
from oslo_log import log as logging
from oslo_utils import excutils
from oslo_utils import strutils

from ironic.common import boot_devices
from ironic.common import exception
from ironic.common.i18n import _
from ironic.common import states
from ironic.common import utils
from ironic.conductor import task_manager
from ironic.conductor import utils as cond_utils
from ironic.conf import CONF
from ironic.drivers import base
from ironic.drivers.modules import boot_mode_utils
from ironic.drivers.modules import console_utils
from ironic.drivers import utils as driver_utils


LOG = logging.getLogger(__name__)

METRICS = metrics_utils.get_metrics_logger(__name__)

VALID_PRIV_LEVELS = ['ADMINISTRATOR', 'CALLBACK', 'OPERATOR', 'USER']

VALID_PROTO_VERSIONS = ('2.0', '1.5')

REQUIRED_PROPERTIES = {
    'ipmi_address': _("IP address or hostname of the node. Required.")
}
OPTIONAL_PROPERTIES = {
    'ipmi_password': _("password. Optional."),
    'ipmi_hex_kg_key': _('Kg key for IPMIv2 authentication. '
                         'The key is expected in hexadecimal format. '
                         'Optional.'),
    'ipmi_port': _("remote IPMI RMCP port. Optional."),
    'ipmi_priv_level': _("privilege level; default is ADMINISTRATOR. One of "
                         "%s. Optional.") % ', '.join(VALID_PRIV_LEVELS),
    'ipmi_username': _("username; default is NULL user. Optional."),
    'ipmi_bridging': _("bridging_type; default is \"no\". One of \"single\", "
                       "\"dual\", \"no\". Optional."),
    'ipmi_transit_channel': _("transit channel for bridged request. Required "
                              "only if ipmi_bridging is set to \"dual\"."),
    'ipmi_transit_address': _("transit address for bridged request. Required "
                              "only if ipmi_bridging is set to \"dual\"."),
    'ipmi_target_channel': _("destination channel for bridged request. "
                             "Required only if ipmi_bridging is set to "
                             "\"single\" or \"dual\"."),
    'ipmi_target_address': _("destination address for bridged request. "
                             "Required only if ipmi_bridging is set "
                             "to \"single\" or \"dual\"."),
    'ipmi_local_address': _("local IPMB address for bridged requests. "
                            "Used only if ipmi_bridging is set "
                            "to \"single\" or \"dual\". Optional."),
    'ipmi_protocol_version': _('the version of the IPMI protocol; default '
                               'is "2.0". One of "1.5", "2.0". Optional.'),
    'ipmi_force_boot_device': _("Whether Ironic should specify the boot "
                                "device to the BMC each time the server "
                                "is turned on, eg. because the BMC is not "
                                "capable of remembering the selected boot "
                                "device across power cycles; default value "
                                "is False. Optional."),
    'ipmi_disable_boot_timeout': _('By default ironic will send a raw IPMI '
                                   'command to disable the 60 second timeout '
                                   'for booting. Setting this option to '
                                   'False will NOT send that command on '
                                   'this node. The '
                                   '[ipmi]disable_boot_timeout will be '
                                   'used if this option is not set. '
                                   'Optional.'),
    'ipmi_cipher_suite': _('The number of a cipher suite to use. Only 3 '
                           '(AES-128 with SHA1) or 17 (AES-128 with SHA256) '
                           'should ever be used; 17 is preferred. The '
                           'default value depends on the ipmitool version, '
                           'some recent versions have switched from 3 to 17.'),
}
COMMON_PROPERTIES = REQUIRED_PROPERTIES.copy()
COMMON_PROPERTIES.update(OPTIONAL_PROPERTIES)
CONSOLE_PROPERTIES = {
    'ipmi_terminal_port': _("node's UDP port to connect to. Only required for "
                            "console access.")
}
BRIDGING_OPTIONS = [('local_address', '-m'),
                    ('transit_channel', '-B'), ('transit_address', '-T'),
                    ('target_channel', '-b'), ('target_address', '-t')]

LAST_CMD_TIME = {}
TIMING_SUPPORT = None
SINGLE_BRIDGE_SUPPORT = None
DUAL_BRIDGE_SUPPORT = None
TMP_DIR_CHECKED = None

ipmitool_command_options = {
    'timing': ['ipmitool', '-N', '0', '-R', '0', '-h'],
    'single_bridge': ['ipmitool', '-m', '0', '-b', '0', '-t', '0', '-h'],
    'dual_bridge': ['ipmitool', '-m', '0', '-b', '0', '-t', '0',
                    '-B', '0', '-T', '0', '-h']}

# Note(etingof): For more information on IPMI error codes and `ipmitool`
# human interface please refer to:
# https://www.intel.com/content/dam/www/public/us/en/documents/product-briefs/ipmi-second-gen-interface-spec-v2-rev1-1.pdf
# https://github.com/scottjg/ipmitool/blob/master/lib/ipmi_strings.c#L367
#
# Note(TheJulia): The strings below are hardcoded in ipmitool and get
# substituted in return for the error code received from the IPMI controller.
# As of 1.8.15, no internationalization support appears to be in ipmitool
# which means the strings should always be returned in this form regardless
# of locale.
IPMITOOL_RETRYABLE_FAILURES = ['insufficient resources for session',
                               # Generic completion codes considered retryable
                               'Node busy',
                               'Timeout',
                               'Out of space',
                               'BMC initialization in progress']

# NOTE(lucasagomes): A mapping for the boot devices and their hexadecimal
# value. For more information about these values see the "Set System Boot
# Options Command" section 28.13 of the link below (page 392)
# http://www.intel.com/content/www/us/en/servers/ipmi/ipmi-second-gen-interface-spec-v2-rev1-1.html  # noqa
BOOT_DEVICE_HEXA_MAP = {
    boot_devices.PXE: '0x04',
    boot_devices.DISK: '0x08',
    boot_devices.CDROM: '0x14',
    boot_devices.BIOS: '0x18',
    boot_devices.SAFE: '0x0c'
}
# NOTE(TheJulia): Inline notes for ipmi raw boot device commands.
# Per spec (intel 2nd gen ipmi interface, v2, rev1-1)
#  - bit 7 is CMOS clear
#  - bit 6 is Keyboard lock
#  - bit 5-2 is the boot device selector
#    * where 0000b is to do nothing
#    * where 0001b is to force pxe
#    * where 0010b is boot from hard drive
#    * And anything above 1100b is listed reserved
#      which is 0x30 for ipmitool raw commands!
#  - bit 1 is screen blank
#  - bit 0 is lock out reset button
#
# Effectively this results in
# 00000100b == 0x04 for booting from PXE
# 00001000b == 0x08 for booting from the primary hard disk.
# 00100000b == 0x20 is remotely connected virtual media
# 00100100b == 0x24 which is primary remote boot media as set
#                   via the OEM initiator mailbox information.
#                   Like.. iscsi?
#                   However! Supermicro uses this as the UEFI
#                   hard disk. See: https://www.supermicro.com/support/faqs/faq.cfm?faq=25559  # noqa
# 00010000b == 0x30 Enters the reserved territory, and should not
#                   be expected in use.


def _vendor_aware_boot_device_map(task):
    """Returns an altered vendor boot device map based upon vendor."""
    node = task.node
    vendor = node.properties.get('vendor', None)
    boot_dev_map = BOOT_DEVICE_HEXA_MAP.copy()
    boot_mode = boot_mode_utils.get_boot_mode(node)
    if vendor:
        vendor = str(vendor).lower()
        if boot_mode == 'uefi' and vendor == "supermicro":
            # This difference is only known on UEFI mode for supermicro
            # hardware.
            boot_dev_map[boot_devices.DISK] = '0x24'
        # NOTE(TheJulia): Similar differences may exist with Cisco UCS
        # hardware when using IPMI, however at present we don't know
        # what the setting would be.
        # NOTE(TheJulia) I've observed "mc info" manufacter name of a cisco
        # c-series machine to return "Unknown (0x168B)"
    return boot_dev_map


def _check_option_support(options):
    """Checks if the specific ipmitool options are supported on host.

    This method updates the module-level variables indicating whether
    an option is supported so that it is accessible by any driver
    interface class in this module. It is intended to be called from
    the __init__ method of such classes only.

    :param options: list of ipmitool options to be checked
    :raises: OSError
    """
    for opt in options:
        if _is_option_supported(opt) is None:
            try:
                cmd = ipmitool_command_options[opt]
                # NOTE(cinerama): use subprocess.check_call to
                # check options & suppress ipmitool output to
                # avoid alarming people
                with open(os.devnull, 'wb') as nullfile:
                    subprocess.check_call(cmd, stdout=nullfile,
                                          stderr=nullfile)
            except subprocess.CalledProcessError:
                LOG.info("Option %(opt)s is not supported by ipmitool",
                         {'opt': opt})
                _is_option_supported(opt, False)
            else:
                LOG.info("Option %(opt)s is supported by ipmitool",
                         {'opt': opt})
                _is_option_supported(opt, True)


def _is_option_supported(option, is_supported=None):
    """Indicates whether the particular ipmitool option is supported.

    :param option: specific ipmitool option
    :param is_supported: Optional Boolean. when specified, this value
                         is assigned to the module-level variable indicating
                         whether the option is supported. Used only if a value
                         is not already assigned.
    :returns: True, indicates the option is supported
    :returns: False, indicates the option is not supported
    :returns: None, indicates that it is not aware whether the option
              is supported
    """
    global SINGLE_BRIDGE_SUPPORT
    global DUAL_BRIDGE_SUPPORT
    global TIMING_SUPPORT

    if option == 'single_bridge':
        if (SINGLE_BRIDGE_SUPPORT is None) and (is_supported is not None):
            SINGLE_BRIDGE_SUPPORT = is_supported
        return SINGLE_BRIDGE_SUPPORT
    elif option == 'dual_bridge':
        if (DUAL_BRIDGE_SUPPORT is None) and (is_supported is not None):
            DUAL_BRIDGE_SUPPORT = is_supported
        return DUAL_BRIDGE_SUPPORT
    elif option == 'timing':
        if (TIMING_SUPPORT is None) and (is_supported is not None):
            TIMING_SUPPORT = is_supported
        return TIMING_SUPPORT


def _console_pwfile_path(uuid):
    """Return the file path for storing the ipmi password for a console."""
    file_name = "%(uuid)s.pw" % {'uuid': uuid}
    return os.path.join(CONF.tempdir, file_name)


@contextlib.contextmanager
def _make_password_file(password):
    """Makes a temporary file that contains the password.

    :param password: the password
    :returns: the absolute pathname of the temporary file
    :raises: PasswordFileFailedToCreate from creating or writing to the
             temporary file
    """
    f = None
    try:
        f = tempfile.NamedTemporaryFile(mode='w', dir=CONF.tempdir)
        f.write(str(password))
        f.flush()
    except (IOError, OSError) as exc:
        if f is not None:
            f.close()
        raise exception.PasswordFileFailedToCreate(error=exc)
    except Exception:
        with excutils.save_and_reraise_exception():
            if f is not None:
                f.close()

    try:
        # NOTE(jlvillal): This yield can not be in the try/except block above
        # because an exception by the caller of this function would then get
        # changed to a PasswordFileFailedToCreate exception which would mislead
        # about the problem and its cause.
        yield f.name
    finally:
        if f is not None:
            f.close()


[docs] def is_bridging_enabled(node): """Check if IPMI bridging is enabled. This call is used in the inspector lookup. """ return node.driver_info.get("ipmi_bridging", "no") != "no"
def _parse_driver_info(node): """Gets the parameters required for ipmitool to access the node. :param node: the Node of interest. :returns: dictionary of parameters. :raises: InvalidParameterValue when an invalid value is specified :raises: MissingParameterValue when a required ipmi parameter is missing. """ info = node.driver_info or {} internal_info = node.driver_internal_info or {} bridging_types = ['single', 'dual'] missing_info = [key for key in REQUIRED_PROPERTIES if not info.get(key)] if missing_info: raise exception.MissingParameterValue(_( "Missing the following IPMI credentials in node's" " driver_info: %s.") % missing_info) address = info.get('ipmi_address') username = info.get('ipmi_username') password = str(info.get('ipmi_password', '')) hex_kg_key = info.get('ipmi_hex_kg_key') dest_port = info.get('ipmi_port') port = (info.get('ipmi_terminal_port') or internal_info.get('allocated_ipmi_terminal_port')) priv_level = info.get('ipmi_priv_level', 'ADMINISTRATOR') bridging_type = info.get('ipmi_bridging', 'no') local_address = info.get('ipmi_local_address') transit_channel = info.get('ipmi_transit_channel') transit_address = info.get('ipmi_transit_address') target_channel = info.get('ipmi_target_channel') target_address = info.get('ipmi_target_address') protocol_version = str(info.get('ipmi_protocol_version', '2.0')) force_boot_device = info.get('ipmi_force_boot_device', False) cipher_suite = info.get('ipmi_cipher_suite') if not username: LOG.warning('ipmi_username is not defined or empty for node %s: ' 'NULL user will be utilized.', node.uuid) if not password: LOG.warning('ipmi_password is not defined or empty for node %s: ' 'NULL password will be utilized.', node.uuid) if protocol_version not in VALID_PROTO_VERSIONS: valid_versions = ', '.join(VALID_PROTO_VERSIONS) raise exception.InvalidParameterValue(_( "Invalid IPMI protocol version value %(version)s, the valid " "value can be one of %(valid_versions)s") % {'version': protocol_version, 'valid_versions': valid_versions}) if port is not None: port = utils.validate_network_port(port, 'ipmi_terminal_port') if dest_port is not None: dest_port = utils.validate_network_port(dest_port, 'ipmi_port') # check if ipmi_bridging has proper value if bridging_type == 'no': # if bridging is not selected, then set all bridging params to None (local_address, transit_channel, transit_address, target_channel, target_address) = (None,) * 5 elif bridging_type in bridging_types: # check if the particular bridging option is supported on host if not _is_option_supported('%s_bridge' % bridging_type): raise exception.InvalidParameterValue(_( "Value for ipmi_bridging is provided as %s, but IPMI " "bridging is not supported by the IPMI utility installed " "on host. Ensure ipmitool version is > 1.8.11" ) % bridging_type) # ensure that all the required parameters are provided params_undefined = [param for param, value in [ ("ipmi_target_channel", target_channel), ('ipmi_target_address', target_address)] if value is None] if bridging_type == 'dual': params_undefined2 = [param for param, value in [ ("ipmi_transit_channel", transit_channel), ('ipmi_transit_address', transit_address) ] if value is None] params_undefined.extend(params_undefined2) else: # if single bridging was selected, set dual bridge params to None transit_channel = transit_address = None # If the required parameters were not provided, # raise an exception if params_undefined: raise exception.MissingParameterValue(_( "%(param)s not provided") % {'param': params_undefined}) else: raise exception.InvalidParameterValue(_( "Invalid value for ipmi_bridging: %(bridging_type)s," " the valid value can be one of: %(bridging_types)s" ) % {'bridging_type': bridging_type, 'bridging_types': bridging_types + ['no']}) if priv_level not in VALID_PRIV_LEVELS: valid_priv_lvls = ', '.join(VALID_PRIV_LEVELS) raise exception.InvalidParameterValue(_( "Invalid privilege level value:%(priv_level)s, the valid value" " can be one of %(valid_levels)s") % {'priv_level': priv_level, 'valid_levels': valid_priv_lvls}) if hex_kg_key and len(hex_kg_key) % 2 != 0: raise exception.InvalidParameterValue(_( "Number of ipmi_hex_kg_key characters is not even")) if cipher_suite is not None: try: int(cipher_suite) except (TypeError, ValueError): raise exception.InvalidParameterValue(_( "Invalid cipher suite %s, expected a number") % cipher_suite) if protocol_version == '1.5': raise exception.InvalidParameterValue(_( "Cipher suites cannot be used with IPMI 1.5")) return { 'address': address, 'dest_port': dest_port, 'username': username, 'password': password, 'hex_kg_key': hex_kg_key, 'port': port, 'uuid': node.uuid, 'priv_level': priv_level, 'local_address': local_address, 'transit_channel': transit_channel, 'transit_address': transit_address, 'target_channel': target_channel, 'target_address': target_address, 'protocol_version': protocol_version, 'force_boot_device': force_boot_device, 'cipher_suite': cipher_suite, } def _get_ipmitool_args(driver_info, pw_file=None): ipmi_version = ('lanplus' if driver_info['protocol_version'] == '2.0' else 'lan') args = ['ipmitool', '-I', ipmi_version, '-H', driver_info['address'], '-L', driver_info['priv_level'] ] for field, arg in [('dest_port', '-p'), ('username', '-U'), ('hex_kg_key', '-y'), ('cipher_suite', '-C')]: if driver_info[field]: args.append(arg) args.append(driver_info[field]) for name, option in BRIDGING_OPTIONS: if driver_info[name] is not None: args.append(option) args.append(driver_info[name]) if pw_file: args.append('-f') args.append(pw_file) if CONF.ipmi.debug: args.append('-v') # ensure all arguments are strings args = [str(arg) for arg in args] return args def _ipmitool_timing_args(): if not _is_option_supported('timing'): return [] if not CONF.ipmi.use_ipmitool_retries: return [ '-R', '1', '-N', str(CONF.ipmi.min_command_interval) ] timeout = CONF.ipmi.command_retry_timeout interval = CONF.ipmi.min_command_interval num_tries = 0 cmd_duration = 0 while cmd_duration + interval <= timeout: cmd_duration += interval # for each attempt, ipmitool adds one second to the previous # interval value interval += 1 num_tries += 1 return [ '-R', str(num_tries), '-N', str(CONF.ipmi.min_command_interval) ]
[docs] def choose_cipher_suite(actual_cipher_suite): """Gives the possible next available cipher suite version. Based on CONF.ipmi.cipher_suite_versions and the last cipher suite version used that failed. This function is only called if the node doesn't have cipher_suite set. Starts using the last element of the list and decreasing the index. :param actual_cipher_suite: latest cipher suite used in the ipmi call. :returns: the next possible cipher suite or None in case of empty configuration. """ available_cs_versions = CONF.ipmi.cipher_suite_versions if not available_cs_versions: return None if actual_cipher_suite is None: return available_cs_versions[-1] else: try: cs_index = available_cs_versions.index(actual_cipher_suite) except ValueError: return available_cs_versions[-1] return available_cs_versions[max(cs_index - 1, 0)]
[docs] def check_cipher_suite_errors(cmd_stderr): """Checks if the command stderr contains cipher suite errors. :param cmd_stderr: The command stderr. :returns: True if the cmd_stderr contains a cipher suite error, False otherwise. """ cs_errors = ["Unsupported cipher suite ID", "Error in open session response message :" " no matching cipher suite"] for cs_err in cs_errors: if cmd_stderr is not None and cs_err in cmd_stderr: return True return False
[docs] def update_cipher_suite_cmd(actual_cs, args): """Updates variables and the cipher suite cmd. This function updates the values for all parameters so they can be used in the next retry of _exec_ipmitool. :param actual_cs: a string that represents the cipher suite that was used in the command. :param args: a list that contains the ipmitool command that was executed, it will be modified in-place. :returns: the next actual_cs """ actual_cs = choose_cipher_suite(actual_cs) if '-C' in args: cs_index = args.index('-C') + 1 args[cs_index] = actual_cs else: args.append('-C') args.append(actual_cs) return actual_cs
def _exec_ipmitool(driver_info, command, check_exit_code=None, kill_on_timeout=False): """Execute the ipmitool command. :param driver_info: the ipmitool parameters for accessing a node. :param command: the ipmitool command to be executed. :param check_exit_code: Single bool, int, or list of allowed exit codes. :param kill_on_timeout: if `True`, kill unresponsive ipmitool on `min_command_interval` timeout. Default is `False`. Makes no effect on Windows. :returns: (stdout, stderr) from executing the command. :raises: PasswordFileFailedToCreate from creating or writing to the temporary file. :raises: processutils.ProcessExecutionError from executing the command. """ args = _get_ipmitool_args(driver_info) change_cs = (CONF.ipmi.cipher_suite_versions != [] and driver_info.get('cipher_suite') is None) actual_cs = None timeout = CONF.ipmi.command_retry_timeout args.extend(_ipmitool_timing_args()) extra_args = {} if kill_on_timeout: extra_args['timeout'] = timeout if check_exit_code is not None: extra_args['check_exit_code'] = check_exit_code end_time = (time.time() + timeout) num_tries = max((timeout // CONF.ipmi.min_command_interval), 1) while True: num_tries = num_tries - 1 # NOTE(tenbrae): ensure that no communications are sent to a BMC more # often than once every min_command_interval seconds. time_till_next_poll = CONF.ipmi.min_command_interval - ( time.time() - LAST_CMD_TIME.get(driver_info['address'], 0)) if time_till_next_poll > 0: time.sleep(time_till_next_poll) # Resetting the list that will be utilized so the password arguments # from any previous execution are preserved. cmd_args = args[:] # 'ipmitool' command will prompt password if there is no '-f' # option, we set it to '\0' to write a password file to support # empty password with _make_password_file(driver_info['password'] or '\0') as pw_file: cmd_args.append('-f') cmd_args.append(pw_file) cmd_args.extend(command.split(" ")) try: out, err = utils.execute(*cmd_args, **extra_args) return out, err except processutils.ProcessExecutionError as e: if change_cs and check_cipher_suite_errors(e.stderr): actual_cs = update_cipher_suite_cmd(actual_cs, args) else: change_cs = False with excutils.save_and_reraise_exception() as ctxt: err_list = [ x for x in ( IPMITOOL_RETRYABLE_FAILURES + CONF.ipmi.additional_retryable_ipmi_errors) if x in str(e)] # If Ironic is doing retries then retry all errors retry_failures = (err_list or not CONF.ipmi.use_ipmitool_retries) if ((time.time() > end_time) or (num_tries == 0) or not retry_failures): LOG.error('IPMI Error while attempting "%(cmd)s" ' 'for node %(node)s. Error: %(error)s', {'node': driver_info['uuid'], 'cmd': e.cmd, 'error': e}) else: ctxt.reraise = False LOG.warning('IPMI Error encountered, retrying ' '"%(cmd)s" for node %(node)s. ' 'Error: %(error)s', {'node': driver_info['uuid'], 'cmd': e.cmd, 'error': e}) finally: LAST_CMD_TIME[driver_info['address']] = time.time() def _set_and_wait(task, power_action, driver_info, timeout=None): """Helper function for performing an IPMI power action This method assumes the caller knows the current power state and does not check it prior to changing the power state. Most BMCs should be fine, but if a driver is concerned, the state should be checked prior to calling this method. :param power_action: the action Ironic will perform when changing the power state of the node. :param timeout: timeout (in seconds) positive integer (> 0) for any power state. ``None`` indicates to use default timeout. :param driver_info: the ipmitool parameters for accessing a node. :returns: one of ironic.common.states """ if power_action == states.POWER_ON: cmd_name = "on" target_state = states.POWER_ON elif power_action == states.POWER_OFF: cmd_name = "off" target_state = states.POWER_OFF elif power_action == states.SOFT_POWER_OFF: cmd_name = "soft" target_state = states.POWER_OFF timeout = timeout or CONF.conductor.soft_power_off_timeout # NOTE(sambetts): Retries for ipmi power action failure will be handled by # the _exec_ipmitool function, so no need to wrap this call in its own # retries. cmd = "power %s" % cmd_name try: _exec_ipmitool(driver_info, cmd) except (exception.PasswordFileFailedToCreate, processutils.ProcessExecutionError, subprocess.TimeoutExpired, # https://github.com/eventlet/eventlet/issues/624 green_subprocess.TimeoutExpired) as e: LOG.warning("IPMI power action %(cmd)s failed for node %(node_id)s " "with error: %(error)s.", {'node_id': driver_info['uuid'], 'cmd': cmd, 'error': e}) raise exception.IPMIFailure(cmd=cmd) return cond_utils.node_wait_for_power_state(task, target_state, timeout=timeout) def _power_on(task, driver_info, timeout=None): """Turn the power ON for this node. :param driver_info: the ipmitool parameters for accessing a node. :param timeout: the timeout in seconds (> 0) to wait for the power action to be completed. ``None`` indicates default timeout". :returns: one of ironic.common.states POWER_ON or ERROR. :raises: IPMIFailure on an error from ipmitool (from _power_status call). """ return _set_and_wait(task, states.POWER_ON, driver_info, timeout=timeout) def _power_off(task, driver_info, timeout=None): """Turn the power OFF for this node. :param driver_info: the ipmitool parameters for accessing a node. :param timeout: the timeout in seconds (> 0) to wait for the power action to be completed. ``None`` indicates default timeout". :returns: one of ironic.common.states POWER_OFF or ERROR. :raises: IPMIFailure on an error from ipmitool (from _power_status call). """ return _set_and_wait(task, states.POWER_OFF, driver_info, timeout=timeout) def _soft_power_off(task, driver_info, timeout=None): """Turn the power SOFT OFF for this node. :param driver_info: the ipmitool parameters for accessing a node. :param timeout: the timeout in seconds (> 0) to wait for the power action to be completed. ``None`` indicates default timeout". :returns: one of ironic.common.states POWER_OFF or ERROR. :raises: IPMIFailure on an error from ipmitool (from _power_status call). """ return _set_and_wait(task, states.SOFT_POWER_OFF, driver_info, timeout=timeout) def _power_status(driver_info): """Get the power status for a node. :param driver_info: the ipmitool access parameters for a node. :returns: one of ironic.common.states POWER_OFF, POWER_ON or ERROR. :raises: IPMIFailure on an error from ipmitool. """ cmd = "power status" try: out_err = _exec_ipmitool( driver_info, cmd, kill_on_timeout=CONF.ipmi.kill_on_timeout) except (exception.PasswordFileFailedToCreate, processutils.ProcessExecutionError) as e: LOG.warning("IPMI power status failed for node %(node_id)s with " "error: %(error)s.", {'node_id': driver_info['uuid'], 'error': e}) raise exception.IPMIFailure(cmd=cmd) if out_err[0] == "Chassis Power is on\n": return states.POWER_ON elif out_err[0] == "Chassis Power is off\n": return states.POWER_OFF else: return states.ERROR def _process_sensor(sensor_data): sensor_data_fields = sensor_data.split('\n') sensor_data_dict = {} for field in sensor_data_fields: if not field: continue if field.startswith('<<'): # This is debug data, and can be safely ignored for this. continue kv_value = field.split(':') if len(kv_value) != 2: continue sensor_data_dict[kv_value[0].strip()] = kv_value[1].strip() return sensor_data_dict def _get_sensor_type(node, sensor_data_dict): # Have only three sensor type name IDs: 'Sensor Type (Analog)' # 'Sensor Type (Discrete)' and 'Sensor Type (Threshold)' for key in ('Sensor Type (Analog)', 'Sensor Type (Discrete)', 'Sensor Type (Threshold)'): try: return sensor_data_dict[key].split(' ', 1)[0] except KeyError: continue raise exception.FailedToParseSensorData( node=node.uuid, error=(_("parse ipmi sensor data failed, unknown sensor type" " data: %(sensors_data)s"), {'sensors_data': sensor_data_dict})) def _parse_ipmi_sensors_data(node, sensors_data): """Parse the IPMI sensors data and format to the dict grouping by type. We run 'ipmitool' command with 'sdr -v' options, which can return sensor details in human-readable format, we need to format them to JSON string dict-based data for Ceilometer Collector which can be sent it as payload out via notification bus and consumed by Ceilometer Collector. :param sensors_data: the sensor data returned by ipmitool command. :returns: the sensor data with JSON format, grouped by sensor type. :raises: FailedToParseSensorData when error encountered during parsing. """ sensors_data_dict = {} if not sensors_data: return sensors_data_dict sensors_data_array = sensors_data.split('\n\n') for sensor_data in sensors_data_array: sensor_data_dict = _process_sensor(sensor_data) if not sensor_data_dict: continue sensor_type = _get_sensor_type(node, sensor_data_dict) # ignore the sensors which has no current 'Sensor Reading' data if 'Sensor Reading' in sensor_data_dict: sensors_data_dict.setdefault( sensor_type, {})[sensor_data_dict['Sensor ID']] = sensor_data_dict # get nothing, no valid sensor data if not sensors_data_dict: raise exception.FailedToParseSensorData( node=node.uuid, error=(_("parse ipmi sensor data failed, get nothing with input" " data: %(sensors_data)s") % {'sensors_data': sensors_data})) return sensors_data_dict
[docs] @METRICS.timer('send_raw') @task_manager.require_exclusive_lock def send_raw(task, raw_bytes): """Send raw bytes to the BMC. Bytes should be a string of bytes. :param task: a TaskManager instance. :param raw_bytes: a string of raw bytes to send, e.g. '0x00 0x01' :returns: a tuple with stdout and stderr. :raises: IPMIFailure on an error from ipmitool. :raises: MissingParameterValue if a required parameter is missing. :raises: InvalidParameterValue when an invalid value is specified. """ node_uuid = task.node.uuid LOG.debug('Sending node %(node)s raw bytes %(bytes)s', {'bytes': raw_bytes, 'node': node_uuid}) driver_info = _parse_driver_info(task.node) cmd = 'raw %s' % raw_bytes try: out, err = _exec_ipmitool(driver_info, cmd) LOG.debug('send raw bytes returned stdout: %(stdout)s, stderr:' ' %(stderr)s', {'stdout': out, 'stderr': err}) except (exception.PasswordFileFailedToCreate, processutils.ProcessExecutionError) as e: LOG.exception('IPMI "raw bytes" failed for node %(node_id)s ' 'with error: %(error)s.', {'node_id': node_uuid, 'error': e}) raise exception.IPMIFailure(cmd=cmd) return out, err
[docs] @METRICS.timer('dump_sdr') def dump_sdr(task, file_path): """Dump SDR data to a file. :param task: a TaskManager instance. :param file_path: the path to SDR dump file. :raises: IPMIFailure on an error from ipmitool. :raises: MissingParameterValue if a required parameter is missing. :raises: InvalidParameterValue when an invalid value is specified. """ node_uuid = task.node.uuid LOG.debug('Dump SDR data for node %(node)s to file %(name)s', {'name': file_path, 'node': node_uuid}) driver_info = _parse_driver_info(task.node) cmd = 'sdr dump %s' % file_path try: out, err = _exec_ipmitool(driver_info, cmd) LOG.debug('dump SDR returned stdout: %(stdout)s, stderr:' ' %(stderr)s', {'stdout': out, 'stderr': err}) except (exception.PasswordFileFailedToCreate, processutils.ProcessExecutionError) as e: LOG.exception('IPMI "sdr dump" failed for node %(node_id)s ' 'with error: %(error)s.', {'node_id': node_uuid, 'error': e}) raise exception.IPMIFailure(cmd=cmd)
def _check_temp_dir(): """Check for Valid temp directory.""" global TMP_DIR_CHECKED # because a temporary file is used to pass the password to ipmitool, # we should check the directory if TMP_DIR_CHECKED is None: try: utils.check_dir() except (exception.PathNotFound, exception.DirectoryNotWritable, exception.InsufficientDiskSpace) as e: with excutils.save_and_reraise_exception(): TMP_DIR_CHECKED = False err_msg = (_("Ipmitool drivers need to be able to create " "temporary files to pass password to ipmitool. " "Encountered error: %s") % e) e.message = err_msg LOG.error(err_msg) else: TMP_DIR_CHECKED = True def _constructor_checks(driver): """Common checks to be performed when instantiating an ipmitool class.""" try: _check_option_support(['timing', 'single_bridge', 'dual_bridge']) except OSError: raise exception.DriverLoadError( driver=driver, reason=_("Unable to locate usable ipmitool command in " "the system path when checking ipmitool version")) _check_temp_dir() def _allocate_port(task, host=None): node = task.node allocated_port = console_utils.acquire_port(host=host) node.set_driver_internal_info('allocated_ipmi_terminal_port', allocated_port) node.save() return allocated_port def _release_allocated_port(task): node = task.node allocated_port = node.del_driver_internal_info( 'allocated_ipmi_terminal_port') if allocated_port: node.save() console_utils.release_port(allocated_port)
[docs] class IPMIPower(base.PowerInterface): def __init__(self): _constructor_checks(driver=self.__class__.__name__)
[docs] def get_properties(self): return COMMON_PROPERTIES
[docs] @METRICS.timer('IPMIPower.validate') def validate(self, task): """Validate driver_info for ipmitool driver. Check that node['driver_info'] contains IPMI credentials. :param task: a TaskManager instance containing the node to act on. :raises: InvalidParameterValue if required ipmi parameters are missing. :raises: MissingParameterValue if a required parameter is missing. """ _parse_driver_info(task.node)
# NOTE(tenbrae): don't actually touch the BMC in validate because it is # called too often, and BMCs are too fragile. # This is a temporary measure to mitigate problems while # 1314954 and 1314961 are resolved.
[docs] @METRICS.timer('IPMIPower.get_power_state') def get_power_state(self, task): """Get the current power state of the task's node. :param task: a TaskManager instance containing the node to act on. :returns: one of ironic.common.states POWER_OFF, POWER_ON or ERROR. :raises: InvalidParameterValue if required ipmi parameters are missing. :raises: MissingParameterValue if a required parameter is missing. :raises: IPMIFailure on an error from ipmitool (from _power_status call). """ driver_info = _parse_driver_info(task.node) return _power_status(driver_info)
[docs] @METRICS.timer('IPMIPower.set_power_state') @task_manager.require_exclusive_lock def set_power_state(self, task, power_state, timeout=None): """Turn the power on, off, soft reboot, or soft power off. :param task: a TaskManager instance containing the node to act on. :param power_state: desired power state. one of ironic.common.states, POWER_ON, POWER_OFF, SOFT_POWER_OFF, or SOFT_REBOOT. :param timeout: timeout (in seconds) positive integer (> 0) for any power state. The timeout is counted once during power off and once during power on for reboots. ``None`` indicates that the default timeout will be used. :raises: InvalidParameterValue if an invalid power state was specified. :raises: MissingParameterValue if required ipmi parameters are missing :raises: PowerStateFailure if the power couldn't be set to pstate. """ driver_info = _parse_driver_info(task.node) if power_state == states.POWER_ON: driver_utils.ensure_next_boot_device(task, driver_info) _power_on(task, driver_info, timeout=timeout) elif power_state == states.POWER_OFF: _power_off(task, driver_info, timeout=timeout) elif power_state == states.SOFT_POWER_OFF: _soft_power_off(task, driver_info, timeout=timeout) elif power_state == states.SOFT_REBOOT: _soft_power_off(task, driver_info, timeout=timeout) driver_utils.ensure_next_boot_device(task, driver_info) _power_on(task, driver_info, timeout=timeout) else: raise exception.InvalidParameterValue( _("set_power_state called " "with invalid power state %s.") % power_state)
[docs] @METRICS.timer('IPMIPower.reboot') @task_manager.require_exclusive_lock def reboot(self, task, timeout=None): """Cycles the power to the task's node. :param task: a TaskManager instance containing the node to act on. :param timeout: timeout (in seconds) positive integer (> 0) for any power state. The timeout is counted once during power off and once during power on for reboots. ``None`` indicates that the default timeout will be used. :raises: MissingParameterValue if required ipmi parameters are missing. :raises: InvalidParameterValue if an invalid power state was specified. :raises: PowerStateFailure if the final state of the node is not POWER_ON or the intermediate state of the node is not POWER_OFF. """ driver_info = _parse_driver_info(task.node) # NOTE(jlvillal): Some BMCs will error if setting power state to off if # the node is already turned off. current_status = _power_status(driver_info) if current_status != states.POWER_OFF: _power_off(task, driver_info, timeout=timeout) driver_utils.ensure_next_boot_device(task, driver_info) _power_on(task, driver_info, timeout=timeout)
[docs] def get_supported_power_states(self, task): """Get a list of the supported power states. :param task: A TaskManager instance containing the node to act on. currently not used. :returns: A list with the supported power states defined in :mod:`ironic.common.states`. """ return [states.POWER_ON, states.POWER_OFF, states.REBOOT, states.SOFT_REBOOT, states.SOFT_POWER_OFF]
[docs] class IPMIManagement(base.ManagementInterface):
[docs] def get_properties(self): return COMMON_PROPERTIES
def __init__(self): _constructor_checks(driver=self.__class__.__name__)
[docs] @METRICS.timer('IPMIManagement.validate') def validate(self, task): """Check that 'driver_info' contains IPMI credentials. Validates whether the 'driver_info' property of the supplied task's node contains the required credentials information. :param task: a task from TaskManager. :raises: InvalidParameterValue if required IPMI parameters are missing. :raises: MissingParameterValue if a required parameter is missing. """ _parse_driver_info(task.node)
[docs] def get_supported_boot_devices(self, task): """Get a list of the supported boot devices. :param task: a task from TaskManager. :returns: A list with the supported boot devices defined in :mod:`ironic.common.boot_devices`. """ return list(BOOT_DEVICE_HEXA_MAP)
[docs] @METRICS.timer('IPMIManagement.set_boot_device') @task_manager.require_exclusive_lock def set_boot_device(self, task, device, persistent=False): """Set the boot device for the task's node. Set the boot device to use on next reboot of the node. :param task: a task from TaskManager. :param device: the boot device, one of :mod:`ironic.common.boot_devices`. :param persistent: Boolean value. True if the boot device will persist to all future boots, False if not. Default: False. :raises: InvalidParameterValue if an invalid boot device is specified :raises: MissingParameterValue if required ipmi parameters are missing. :raises: IPMIFailure on an error from ipmitool. """ if device not in self.get_supported_boot_devices(task): raise exception.InvalidParameterValue(_( "Invalid boot device %s specified.") % device) # NOTE(tonyb): Some BMCs do not implement Option 0x03, such as OpenBMC # and will error when we try to set this. Resulting in an abort. If # the BMC doesn't support this timeout there isn't a need to disable # it. Let's use a driver option to signify that. # NOTE(kaifeng) [ipmi]disable_boot_timeout provides default value if # driver_info/ipmi_disable_boot_timeout is not set. idt = task.node.driver_info.get('ipmi_disable_boot_timeout') if idt is None: idt = CONF.ipmi.disable_boot_timeout if strutils.bool_from_string(idt): # note(JayF): IPMI spec indicates unless you send these raw bytes # the boot device setting times out after 60s. Since it's possible # it could be >60s before a node is rebooted, we should always send # them. This mimics pyghmi's current behavior, and the # "option=timeout" setting on newer ipmitool binaries. timeout_disable = "0x00 0x08 0x03 0x08" send_raw(task, timeout_disable) else: LOG.info('For node %(node_uuid)s, ' 'driver_info[\'ipmi_disable_boot_timeout\'] is set ' 'to False, so not sending ipmi boot-timeout-disable', {'node_uuid': task.node.uuid}) ifbd = task.node.driver_info.get('ipmi_force_boot_device', False) if strutils.bool_from_string(ifbd): driver_utils.force_persistent_boot(task, device, persistent) # Reset persistent to False, in case of BMC does not support # persistent or we do not have admin rights. persistent = False # NOTE(lucasagomes): Older versions of the ipmitool utility # are not able to set the options "efiboot" and "persistent" # at the same time, combining other options seems to work fine, # except efiboot. Newer versions of ipmitool (1.8.17) does fix # this problem but (some) distros still packaging an older version. # To workaround this problem for now we can make use of sending # raw bytes to set the boot device for a node in persistent + # uefi mode, this will work with newer and older versions of the # ipmitool utility. Also see: # https://bugs.launchpad.net/ironic/+bug/1611306 # NOTE(TheJulia): Previously we added raw device support because # most distributions are carrying older downstream patched versions # of ipmitool where "efiboot" and "persistent" do not work. However, # using the embedded support assumes that every vendor out there uses # the same device numbers all the time. Reality is not so kind. # It should also be noted that the ipmitool chassis bootparm get # command also just interprets back the same fields, so if the vendor # has set a different value as default, then ipmitool is not going # to understand it and may be listing the wrong boot flag as a result. # See: https://storyboard.openstack.org/#!/story/2008241 boot_mode = boot_mode_utils.get_boot_mode(task.node) if boot_mode == 'uefi': # Long story short: UEFI was added to IPMI after the final spec # release occurred. This means BMCs may actually NEED to be # explicitly told if the boot is persistent because the # BMC may return a value which is explicitly parsed as # no change, BUT the BMC may treat that as operational default. efi_persistence = '0xe0' if persistent else '0xa0' # 0xe0 is persistent UEFI boot, 0xa0 is one-time UEFI boot. boot_device_map = _vendor_aware_boot_device_map(task) raw_cmd = ('0x00 0x08 0x05 %s %s 0x00 0x00 0x00' % (efi_persistence, boot_device_map[device])) send_raw(task, raw_cmd) return options = [] if persistent: options.append('persistent') # NOTE(TheJulia): Once upon a time we had efiboot here. It doesn't # work in all cases and directs us to unhappy places if the values # are incorrect. cmd = "chassis bootdev %s" % device if options: cmd = cmd + " options=%s" % ','.join(options) driver_info = _parse_driver_info(task.node) try: out, err = _exec_ipmitool(driver_info, cmd) except (exception.PasswordFileFailedToCreate, processutils.ProcessExecutionError) as e: LOG.warning('IPMI set boot device failed for node %(node)s ' 'when executing "ipmitool %(cmd)s". ' 'Error: %(error)s', {'node': driver_info['uuid'], 'cmd': cmd, 'error': e}) raise exception.IPMIFailure(cmd=cmd)
[docs] @METRICS.timer('IPMIManagement.get_boot_device') def get_boot_device(self, task): """Get the current boot device for the task's node. Returns the current boot device of the node. :param task: a task from TaskManager. :raises: InvalidParameterValue if required IPMI parameters are missing. :raises: IPMIFailure on an error from ipmitool. :raises: MissingParameterValue if a required parameter is missing. :returns: a dictionary containing: :boot_device: the boot device, one of :mod:`ironic.common.boot_devices` or None if it is unknown. :persistent: Whether the boot device will persist to all future boots or not, None if it is unknown. """ driver_info = task.node.driver_info node = task.node ifbd = driver_info.get('ipmi_force_boot_device', False) driver_info = _parse_driver_info(task.node) if (strutils.bool_from_string(ifbd) and node.driver_internal_info.get('persistent_boot_device') and node.driver_internal_info.get('is_next_boot_persistent', True)): return { 'boot_device': node.driver_internal_info[ 'persistent_boot_device'], 'persistent': True } cmd = "chassis bootparam get 5" response = {'boot_device': None, 'persistent': None} try: out, err = _exec_ipmitool(driver_info, cmd) except (exception.PasswordFileFailedToCreate, processutils.ProcessExecutionError) as e: LOG.warning('IPMI get boot device failed for node %(node)s ' 'when executing "ipmitool %(cmd)s". ' 'Error: %(error)s', {'node': driver_info['uuid'], 'cmd': cmd, 'error': e}) raise exception.IPMIFailure(cmd=cmd) # FIXME(TheJulia): This whole thing needs to be refactored to be based # upon the response generated by the "Boot parameter data". # See: https://storyboard.openstack.org/#!/story/2008241 re_obj = re.search('Boot Device Selector : (.+)?\n', out) if re_obj: boot_selector = re_obj.groups('')[0] if 'PXE' in boot_selector: response['boot_device'] = boot_devices.PXE elif 'Hard-Drive' in boot_selector: if 'Safe-Mode' in boot_selector: response['boot_device'] = boot_devices.SAFE else: response['boot_device'] = boot_devices.DISK elif 'BIOS' in boot_selector: response['boot_device'] = boot_devices.BIOS elif 'CD/DVD' in boot_selector: response['boot_device'] = boot_devices.CDROM response['persistent'] = 'Options apply to all future boots' in out return response
[docs] @METRICS.timer('IPMIManagement.detect_vendor') def detect_vendor(self, task): """Detects and returns the hardware vendor. :param task: A task from TaskManager. :raises: InvalidParameterValue if an invalid component, indicator or state is specified. :raises: MissingParameterValue if a required parameter is missing :returns: String representing the BMC reported Vendor or Manufacturer, otherwise returns None. """ driver_info = _parse_driver_info(task.node) out, err = _exec_ipmitool(driver_info, "mc info") re_obj = re.search("Manufacturer Name *: (.+)", out) if re_obj: return re_obj.group(1).lower()
[docs] @METRICS.timer('IPMIManagement.get_sensors_data') def get_sensors_data(self, task): """Get sensors data. :param task: a TaskManager instance. :raises: FailedToGetSensorData when getting the sensor data fails. :raises: FailedToParseSensorData when parsing sensor data fails. :raises: InvalidParameterValue if required ipmi parameters are missing :raises: MissingParameterValue if a required parameter is missing. :returns: returns a dict of sensor data group by sensor type. """ driver_info = _parse_driver_info(task.node) # with '-v' option, we can get the entire sensor data including the # extended sensor information cmd = "sdr -v" try: out, err = _exec_ipmitool( driver_info, cmd, kill_on_timeout=CONF.ipmi.kill_on_timeout) except (exception.PasswordFileFailedToCreate, processutils.ProcessExecutionError) as e: raise exception.FailedToGetSensorData(node=task.node.uuid, error=e) return _parse_ipmi_sensors_data(task.node, out)
[docs] @METRICS.timer('IPMIManagement.inject_nmi') @task_manager.require_exclusive_lock def inject_nmi(self, task): """Inject NMI, Non Maskable Interrupt. Inject NMI (Non Maskable Interrupt) for a node immediately. :param task: A TaskManager instance containing the node to act on. :raises: IPMIFailure on an error from ipmitool. :returns: None """ driver_info = _parse_driver_info(task.node) try: _exec_ipmitool(driver_info, "power diag") except (exception.PasswordFileFailedToCreate, processutils.ProcessExecutionError) as err: LOG.error('Inject NMI failed for node %(node)s: %(err)s.', {'node': task.node.uuid, 'err': err}) raise exception.IPMIFailure(cmd="power diag")
[docs] class VendorPassthru(base.VendorInterface): def __init__(self): _constructor_checks(driver=self.__class__.__name__) _send_raw_step_args = { 'raw_bytes': { 'description': ( 'A string of raw bytes to convey the request to transmit ' 'to the remote BMC.' ), 'required': True } }
[docs] @METRICS.timer('VendorPassthru.send_raw') @base.service_step(priority=0, argsinfo=_send_raw_step_args) @base.deploy_step(priority=0, argsinfo=_send_raw_step_args) @base.clean_step(priority=0, abortable=False, argsinfo=_send_raw_step_args, requires_ramdisk=False) @base.passthru(['POST'], description=_("Send raw bytes to the BMC. Required " "argument: 'raw_bytes' - a string of raw " "bytes (e.g. '0x00 0x01').")) @task_manager.require_exclusive_lock def send_raw(self, task, **kwargs): """Send raw bytes to the BMC. Bytes should be a string of bytes. :param task: a TaskManager instance. :param raw_bytes: a string of raw bytes to send, e.g. '0x00 0x01' supplied as a kwargument. :raises: IPMIFailure on an error from ipmitool. :raises: MissingParameterValue if a required parameter is missing. :raises: InvalidParameterValue when an invalid value is specified. """ raw_bytes = kwargs.get('raw_bytes') if not raw_bytes: raise exception.MissingParameterValue( 'Argument raw_bytes is missing.') send_raw(task, raw_bytes)
[docs] @METRICS.timer('VendorPassthru.bmc_reset') @base.passthru(['POST'], description=_("Reset the BMC. Required argument: 'warm' " "(Boolean) - for warm (True) or cold (False) " "reset.")) @task_manager.require_exclusive_lock def bmc_reset(self, task, http_method, warm=True): """Reset BMC with IPMI command 'bmc reset (warm|cold)'. :param task: a TaskManager instance. :param http_method: the HTTP method used on the request. :param warm: boolean parameter to decide on warm or cold reset. :raises: IPMIFailure on an error from ipmitool. :raises: MissingParameterValue if a required parameter is missing. :raises: InvalidParameterValue when an invalid value is specified """ node_uuid = task.node.uuid warm = strutils.bool_from_string(warm) if warm: warm_param = 'warm' else: warm_param = 'cold' LOG.debug('Doing %(warm)s BMC reset on node %(node)s', {'warm': warm_param, 'node': node_uuid}) driver_info = _parse_driver_info(task.node) cmd = 'bmc reset %s' % warm_param try: out, err = _exec_ipmitool(driver_info, cmd) LOG.debug('bmc reset returned stdout: %(stdout)s, stderr:' ' %(stderr)s', {'stdout': out, 'stderr': err}) except (exception.PasswordFileFailedToCreate, processutils.ProcessExecutionError) as e: LOG.exception('IPMI "bmc reset" failed for node %(node_id)s ' 'with error: %(error)s.', {'node_id': node_uuid, 'error': e}) raise exception.IPMIFailure(cmd=cmd)
[docs] def get_properties(self): return COMMON_PROPERTIES
[docs] @METRICS.timer('VendorPassthru.validate') def validate(self, task, method, **kwargs): """Validate vendor-specific actions. If invalid, raises an exception; otherwise returns None. Valid methods: * send_raw * bmc_reset :param task: a task from TaskManager. :param method: method to be validated :param kwargs: info for action. :raises: InvalidParameterValue when an invalid parameter value is specified. :raises: MissingParameterValue if a required parameter is missing. """ if method == 'send_raw': if not kwargs.get('raw_bytes'): raise exception.MissingParameterValue(_( 'Parameter raw_bytes (string of bytes) was not ' 'specified.')) _parse_driver_info(task.node)
[docs] class IPMIConsole(base.ConsoleInterface): """A base ConsoleInterface that uses ipmitool.""" def __init__(self): _constructor_checks(driver=self.__class__.__name__)
[docs] def get_properties(self): d = COMMON_PROPERTIES.copy() d.update(CONSOLE_PROPERTIES) return d
[docs] @METRICS.timer('IPMIConsole.validate') def validate(self, task): """Validate the Node console info. :param task: a task from TaskManager. :raises: InvalidParameterValue :raises: MissingParameterValue when a required parameter is missing """ driver_info = _parse_driver_info(task.node) if not driver_info['port'] and CONF.console.port_range is None: raise exception.MissingParameterValue(_( "Either missing 'ipmi_terminal_port' parameter in node's " "driver_info or [console]port_range is not configured")) if driver_info['protocol_version'] != '2.0': raise exception.InvalidParameterValue(_( "Serial over lan only works with IPMI protocol version 2.0. " "Check the 'ipmi_protocol_version' parameter in " "node's driver_info"))
def _get_ipmi_cmd(self, driver_info, pw_file): """Get ipmi command for ipmitool usage. :param driver_info: driver info with the ipmitool parameters :param pw_file: password file to be used in ipmitool command :returns: returns a command string for ipmitool """ return ' '.join(_get_ipmitool_args(driver_info, pw_file=pw_file)) def _start_console(self, driver_info, start_method): """Start a remote console for the node. :param driver_info: the parameters for accessing a node :param start_method: console_utils method to start console :raises: InvalidParameterValue if required ipmi parameters are missing :raises: PasswordFileFailedToCreate if unable to create a file containing the password :raises: ConsoleError if the directory for the PID file cannot be created :raises: ConsoleSubprocessFailed when invoking the subprocess failed """ path = _console_pwfile_path(driver_info['uuid']) pw_file = console_utils.make_persistent_password_file( path, driver_info['password'] or '\0') ipmi_cmd = self._get_ipmi_cmd(driver_info, pw_file) ipmi_cmd += ' sol activate' try: start_method(driver_info['uuid'], driver_info['port'], ipmi_cmd) except (exception.ConsoleError, exception.ConsoleSubprocessFailed): with excutils.save_and_reraise_exception(): ironic_utils.unlink_without_raise(path)
[docs] class IPMIShellinaboxConsole(IPMIConsole): """A ConsoleInterface that uses ipmitool and shellinabox.""" def _get_ipmi_cmd(self, driver_info, pw_file): """Get ipmi command for ipmitool usage. :param driver_info: driver info with the ipmitool parameters :param pw_file: password file to be used in ipmitool command :returns: returns a command string for ipmitool """ command = super(IPMIShellinaboxConsole, self)._get_ipmi_cmd( driver_info, pw_file) return ("/:%(uid)s:%(gid)s:HOME:%(basic_command)s" % {'uid': os.getuid(), 'gid': os.getgid(), 'basic_command': command})
[docs] @METRICS.timer('IPMIShellinaboxConsole.start_console') def start_console(self, task): """Start a remote console for the node. :param task: a task from TaskManager :raises: InvalidParameterValue if required ipmi parameters are missing :raises: PasswordFileFailedToCreate if unable to create a file containing the password :raises: ConsoleError if the directory for the PID file cannot be created :raises: ConsoleSubprocessFailed when invoking the subprocess failed """ # Dealloc allocated port if any, so the same host can never has # duplicated port. _release_allocated_port(task) driver_info = _parse_driver_info(task.node) if not driver_info['port']: driver_info['port'] = _allocate_port(task) try: self._exec_stop_console(driver_info) except OSError: # We need to drop any existing sol sessions with sol deactivate. # OSError is raised when sol session is already deactivated, # so we can ignore it. pass self._start_console(driver_info, console_utils.start_shellinabox_console)
[docs] @METRICS.timer('IPMIShellinaboxConsole.stop_console') def stop_console(self, task): """Stop the remote console session for the node. :param task: a task from TaskManager :raises: ConsoleError if unable to stop the console """ try: console_utils.stop_shellinabox_console(task.node.uuid) finally: ironic_utils.unlink_without_raise( _console_pwfile_path(task.node.uuid)) _release_allocated_port(task)
def _exec_stop_console(self, driver_info): cmd = "sol deactivate" _exec_ipmitool(driver_info, cmd, check_exit_code=[0, 1])
[docs] @METRICS.timer('IPMIShellinaboxConsole.get_console') def get_console(self, task): """Get the type and connection information about the console.""" driver_info = _parse_driver_info(task.node) try: self._exec_stop_console(driver_info) except OSError: # We need to drop any existing sol sessions with sol deactivate. # OSError is raised when sol session is already deactivated, # so we can ignore it. pass url = console_utils.get_shellinabox_console_url(driver_info['port']) return {'type': 'shellinabox', 'url': url}
[docs] class IPMISocatConsole(IPMIConsole): """A ConsoleInterface that uses ipmitool and socat."""
[docs] @METRICS.timer('IPMISocatConsole.start_console') def start_console(self, task): """Start a remote console for the node. :param task: a task from TaskManager :raises: InvalidParameterValue if required ipmi parameters are missing :raises: PasswordFileFailedToCreate if unable to create a file containing the password :raises: ConsoleError if the directory for the PID file cannot be created :raises: ConsoleSubprocessFailed when invoking the subprocess failed """ # Dealloc allocated port if any, so the same host can never has # duplicated port. _release_allocated_port(task) driver_info = _parse_driver_info(task.node) if not driver_info['port']: driver_info['port'] = _allocate_port( task, host=CONF.console.socat_address) try: self._exec_stop_console(driver_info) except OSError: # We need to drop any existing sol sessions with sol deactivate. # OSError is raised when sol session is already deactivated, # so we can ignore it. pass self._start_console(driver_info, console_utils.start_socat_console)
[docs] @METRICS.timer('IPMISocatConsole.stop_console') def stop_console(self, task): """Stop the remote console session for the node. :param task: a task from TaskManager :raises: ConsoleError if unable to stop the console """ driver_info = _parse_driver_info(task.node) try: console_utils.stop_socat_console(task.node.uuid) finally: ironic_utils.unlink_without_raise( _console_pwfile_path(task.node.uuid)) self._exec_stop_console(driver_info) _release_allocated_port(task)
def _exec_stop_console(self, driver_info): cmd = "sol deactivate" _exec_ipmitool(driver_info, cmd, check_exit_code=[0, 1])
[docs] @METRICS.timer('IPMISocatConsole.get_console') def get_console(self, task): """Get the type and connection information about the console. :param task: a task from TaskManager """ driver_info = _parse_driver_info(task.node) try: self._exec_stop_console(driver_info) except OSError: # We need to drop any existing sol sessions with sol deactivate. # OSError is raised when sol session is already deactivated, # so we can ignore it. pass url = console_utils.get_socat_console_url(driver_info['port']) return {'type': 'socat', 'url': url}