Source code for ironic_lib.utils

# Copyright 2010 United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration.
# Copyright 2011 Justin Santa Barbara
# Copyright (c) 2012 NTT DOCOMO, INC.
# 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.

"""Utilities and helper functions."""

import copy
import errno
import logging
import os
import re

from oslo_concurrency import processutils
from oslo_config import cfg
from oslo_utils import excutils
from oslo_utils import specs_matcher
from oslo_utils import strutils
from oslo_utils import units
import six
from six.moves.urllib import parse

from ironic_lib.common.i18n import _
from ironic_lib.common.i18n import _LE
from ironic_lib.common.i18n import _LW
from ironic_lib import exception

utils_opts = [
    cfg.StrOpt('root_helper',
               default='sudo ironic-rootwrap /etc/ironic/rootwrap.conf',
               help='Command that is prefixed to commands that are run as '
                    'root. If not specified, no commands are run as root.'),
]

CONF = cfg.CONF
CONF.register_opts(utils_opts, group='ironic_lib')

LOG = logging.getLogger(__name__)

# A dictionary in the form {hint name: hint type}
VALID_ROOT_DEVICE_HINTS = {
    'size': int, 'model': str, 'wwn': str, 'serial': str, 'vendor': str,
    'wwn_with_extension': str, 'wwn_vendor_extension': str, 'name': str,
    'rotational': bool, 'hctl': str,
}


ROOT_DEVICE_HINTS_GRAMMAR = specs_matcher.make_grammar()


[docs]def execute(*cmd, **kwargs): """Convenience wrapper around oslo's execute() method. Executes and logs results from a system command. See docs for oslo_concurrency.processutils.execute for usage. :param \*cmd: positional arguments to pass to processutils.execute() :param use_standard_locale: keyword-only argument. True | False. Defaults to False. If set to True, execute command with standard locale added to environment variables. :param log_stdout: keyword-only argument. True | False. Defaults to True. If set to True, logs the output. :param \*\*kwargs: keyword arguments to pass to processutils.execute() :returns: (stdout, stderr) from process execution :raises: UnknownArgumentError on receiving unknown arguments :raises: ProcessExecutionError :raises: OSError """ use_standard_locale = kwargs.pop('use_standard_locale', False) if use_standard_locale: env = kwargs.pop('env_variables', os.environ.copy()) env['LC_ALL'] = 'C' kwargs['env_variables'] = env log_stdout = kwargs.pop('log_stdout', True) # If root_helper config is not specified, no commands are run as root. run_as_root = kwargs.get('run_as_root', False) if run_as_root: if not CONF.ironic_lib.root_helper: kwargs['run_as_root'] = False else: kwargs['root_helper'] = CONF.ironic_lib.root_helper result = processutils.execute(*cmd, **kwargs) LOG.debug('Execution completed, command line is "%s"', ' '.join(map(str, cmd))) if log_stdout: LOG.debug('Command stdout is: "%s"' % result[0]) LOG.debug('Command stderr is: "%s"' % result[1]) return result
[docs]def mkfs(fs, path, label=None): """Format a file or block device :param fs: Filesystem type (examples include 'swap', 'ext3', 'ext4' 'btrfs', etc.) :param path: Path to file or block device to format :param label: Volume label to use """ if fs == 'swap': args = ['mkswap'] else: args = ['mkfs', '-t', fs] # add -F to force no interactive execute on non-block device. if fs in ('ext3', 'ext4'): args.extend(['-F']) if label: if fs in ('msdos', 'vfat'): label_opt = '-n' else: label_opt = '-L' args.extend([label_opt, label]) args.append(path) try: execute(*args, run_as_root=True, use_standard_locale=True) except processutils.ProcessExecutionError as e: with excutils.save_and_reraise_exception() as ctx: if os.strerror(errno.ENOENT) in e.stderr: ctx.reraise = False LOG.exception(_LE('Failed to make file system. ' 'File system %s is not supported.'), fs) raise exception.FileSystemNotSupported(fs=fs) else: LOG.exception(_LE('Failed to create a file system ' 'in %(path)s. Error: %(error)s'), {'path': path, 'error': e})
[docs]def dd(src, dst, *args): """Execute dd from src to dst. :param src: the input file for dd command. :param dst: the output file for dd command. :param args: a tuple containing the arguments to be passed to dd command. :raises: processutils.ProcessExecutionError if it failed to run the process. """ LOG.debug("Starting dd process.") execute('dd', 'if=%s' % src, 'of=%s' % dst, *args, use_standard_locale=True, run_as_root=True, check_exit_code=[0])
[docs]def is_http_url(url): url = url.lower() return url.startswith('http://') or url.startswith('https://')
[docs]def list_opts(): """Entry point for oslo-config-generator.""" return [('ironic_lib', utils_opts)]
def _extract_hint_operator_and_values(hint_expression, hint_name): """Extract the operator and value(s) of a root device hint expression. A root device hint expression could contain one or more values depending on the operator. This method extracts the operator and value(s) and returns a dictionary containing both. :param hint_expression: The hint expression string containing value(s) and operator (optionally). :param hint_name: The name of the hint. Used for logging. :raises: ValueError if the hint_expression is empty. :returns: A dictionary containing: :op: The operator. An empty string in case of None. :values: A list of values stripped and converted to lowercase. """ expression = six.text_type(hint_expression).strip().lower() if not expression: raise ValueError( _('Root device hint "%s" expression is empty') % hint_name) # parseString() returns a list of tokens which the operator (if # present) is always the first element. ast = ROOT_DEVICE_HINTS_GRAMMAR.parseString(expression) if len(ast) <= 1: # hint_expression had no operator return {'op': '', 'values': [expression]} op = ast[0] return {'values': [v.strip() for v in re.split(op, expression) if v], 'op': op} def _normalize_hint_expression(hint_expression, hint_name): """Normalize a string type hint expression. A string-type hint expression contains one or more operators and one or more values: [<op>] <value> [<op> <value>]*. This normalizes the values by url-encoding white spaces and special characters. The operators are not normalized. For example: the hint value of "<or> foo bar <or> bar" will become "<or> foo%20bar <or> bar". :param hint_expression: The hint expression string containing value(s) and operator (optionally). :param hint_name: The name of the hint. Used for logging. :raises: ValueError if the hint_expression is empty. :returns: A normalized string. """ hdict = _extract_hint_operator_and_values(hint_expression, hint_name) result = hdict['op'].join([' %s ' % parse.quote(t) for t in hdict['values']]) return (hdict['op'] + result).strip() def _append_operator_to_hints(root_device): """Add an equal (s== or ==) operator to the hints. For backwards compatibility, for root device hints where no operator means equal, this method adds the equal operator to the hint. This is needed when using oslo.utils.specs_matcher methods. :param root_device: The root device hints dictionary. """ for name, expression in root_device.items(): # NOTE(lucasagomes): The specs_matcher from oslo.utils does not # support boolean, so we don't need to append any operator # for it. if VALID_ROOT_DEVICE_HINTS[name] is bool: continue expression = six.text_type(expression) ast = ROOT_DEVICE_HINTS_GRAMMAR.parseString(expression) if len(ast) > 1: continue op = 's== %s' if VALID_ROOT_DEVICE_HINTS[name] is str else '== %s' root_device[name] = op % expression return root_device
[docs]def parse_root_device_hints(root_device): """Parse the root_device property of a node. Parses and validates the root_device property of a node. These are hints for how a node's root device is created. The 'size' hint should be a positive integer. The 'rotational' hint should be a Boolean value. :param root_device: the root_device dictionary from the node's property. :returns: a dictionary with the root device hints parsed or None if there are no hints. :raises: ValueError, if some information is invalid. """ if not root_device: return root_device = copy.deepcopy(root_device) invalid_hints = set(root_device) - set(VALID_ROOT_DEVICE_HINTS) if invalid_hints: raise ValueError( _('The hints "%(invalid_hints)s" are invalid. ' 'Valid hints are: "%(valid_hints)s"') % {'invalid_hints': ', '.join(invalid_hints), 'valid_hints': ', '.join(VALID_ROOT_DEVICE_HINTS)}) for name, expression in root_device.items(): hint_type = VALID_ROOT_DEVICE_HINTS[name] if hint_type is str: if not isinstance(expression, six.string_types): raise ValueError( _('Root device hint "%(name)s" is not a string value. ' 'Hint expression: %(expression)s') % {'name': name, 'expression': expression}) root_device[name] = _normalize_hint_expression(expression, name) elif hint_type is int: for v in _extract_hint_operator_and_values(expression, name)['values']: try: integer = int(v) except ValueError: raise ValueError( _('Root device hint "%(name)s" is not an integer ' 'value. Current value: %(expression)s') % {'name': name, 'expression': expression}) if integer <= 0: raise ValueError( _('Root device hint "%(name)s" should be a positive ' 'integer. Current value: %(expression)s') % {'name': name, 'expression': expression}) elif hint_type is bool: try: root_device[name] = strutils.bool_from_string( expression, strict=True) except ValueError: raise ValueError( _('Root device hint "%(name)s" is not a Boolean value. ' 'Current value: %(expression)s') % {'name': name, 'expression': expression}) return _append_operator_to_hints(root_device)
[docs]def match_root_device_hints(devices, root_device_hints): """Try to find a device that matches the root device hints. Try to find a device that matches the root device hints. In order for a device to be matched it needs to satisfy all the given hints. :param devices: A list of dictionaries representing the devices containing one or more of the following keys: :name: (String) The device name, e.g /dev/sda :size: (Integer) Size of the device in *bytes* :model: (String) Device model :vendor: (String) Device vendor name :serial: (String) Device serial number :wwn: (String) Unique storage identifier :wwn_with_extension: (String): Unique storage identifier with the vendor extension appended :wwn_vendor_extension: (String): United vendor storage identifier :rotational: (Boolean) Whether it's a rotational device or not. Useful to distinguish HDDs (rotational) and SSDs (not rotational). :hctl: (String): The SCSI address: Host, channel, target and lun. For example: '1:0:0:0'. :param root_device_hints: A dictionary with the root device hints. :raises: ValueError, if some information is invalid. :returns: The first device to match all the hints or None. """ LOG.debug('Trying to find a device from "%(devs)s" that matches the ' 'root device hints "%(hints)s"', {'devs': devices, 'hints': root_device_hints}) parsed_hints = parse_root_device_hints(root_device_hints) for dev in devices: for hint in parsed_hints: hint_type = VALID_ROOT_DEVICE_HINTS[hint] device_value = dev.get(hint) hint_value = parsed_hints[hint] if hint_type is str: try: device_value = _normalize_hint_expression(device_value, hint) except ValueError: LOG.warning( _LW('The attribute "%(attr)s" of the device "%(dev)s" ' 'has an empty value. Skipping device.'), {'attr': hint, 'dev': dev}) break # NOTE(lucasagomes): Boolean hints are not supported by # specs_matcher.match(), so we need to do the comparison # ourselves if hint_type is bool: try: device_value = strutils.bool_from_string(device_value, strict=True) except ValueError: LOG.warning(_LW('The attribute "%(attr)s" (with value ' '"%(value)s") of device "%(dev)s" is not ' 'a valid Boolean. Skipping device.'), {'attr': hint, 'value': device_value, 'dev': dev}) break if device_value == hint_value: continue break if hint == 'size': # Since we don't support units yet we expect the size # in GiB for now device_value = device_value / units.Gi if not specs_matcher.match(device_value, hint_value): break else: LOG.debug('Device found! The device "%s" matches the root ' 'device hints' % dev) return dev LOG.debug('No device found that matches the root device hints')