1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
# Copyright 2015, 2018 IBM Corp.
#
# 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.
"""Tasks specific to partitions (LPARs and VIOSes)."""
from oslo_log import log as logging
import time
import pypowervm.const as c
import pypowervm.exceptions as ex
from pypowervm.i18n import _
import pypowervm.util as u
import pypowervm.utils.transaction as tx
import pypowervm.wrappers.base_partition as bp
from pypowervm.wrappers import job
import pypowervm.wrappers.logical_partition as lpar
import pypowervm.wrappers.virtual_io_server as vios
LOG = logging.getLogger(__name__)
# RMC must be either active or busy. Busy is allowed because that simply
# means that something is running against the VIOS at the moment...but
# it should recover shortly.
_VALID_RMC_STATES = (bp.RMCState.ACTIVE, bp.RMCState.BUSY)
# Only a running state is OK for now.
_VALID_VM_STATES = (bp.LPARState.RUNNING,)
# Not the opposite of the above
_DOWN_VM_STATES = (bp.LPARState.NOT_ACTIVATED, bp.LPARState.ERROR,
bp.LPARState.NOT_AVAILBLE, bp.LPARState.SHUTTING_DOWN,
bp.LPARState.SUSPENDED, bp.LPARState.SUSPENDING,
bp.LPARState.UNKNOWN)
_SUFFIX_PARM_CLONE_UUID = 'CloneUUID'
_SUFFIX_PARM_ADD_LICENSE = 'AddLicense'
_LOW_WAIT_TIME = 120
_HIGH_WAIT_TIME = 600
_UPTIME_CUTOFF = 3600
def get_mgmt_partition(adapter):
"""Get the LPAR/VIOS wrapper representing the PowerVM management partition.
:param adapter: The pypowervm.adapter.Adapter through which to query the
REST API.
:return: pypowervm.wrappers.logical_partition.LPAR/virtual_io_server.VIOS
wrapper representing the management partition.
:raise ManagementPartitionNotFoundException: if we don't find exactly one
management partition.
"""
# There will almost always be fewer VIOSes than LPARs. Since we're
# querying without xags, it should be very quick.
vio_wraps = vios.VIOS.search(adapter, is_mgmt_partition=True)
if len(vio_wraps) == 1:
return vio_wraps[0]
# We delay the query to the LPARs because there could be hundreds of them.
# So we don't want to query it unless we need to.
lpar_wraps = lpar.LPAR.search(adapter, is_mgmt_partition=True)
if len(lpar_wraps) == 1:
return lpar_wraps[0]
# If we made it here, something is wrong.
raise ex.ManagementPartitionNotFoundException(
count=len(vio_wraps + lpar_wraps))
def get_this_partition(adapter):
"""Get the LPAR/VIOS wrapper of the node on which this method is running.
:param adapter: The pypowervm.adapter.Adapter through which to query the
REST API.
:return: pypowervm.wrappers.logical_partition.LPAR/virtual_io_server.VIOS
wrapper representing the local partition.
:raise LocalPartitionNotFoundException: if we don't find exactly one LPAR/
VIOS with the local VM's short ID.
"""
myid = u.my_partition_id()
# There will almost always be fewer VIOSes than LPARs. Since we're
# querying without xags, it should be very quick.
vio_wraps = vios.VIOS.search(adapter, id=myid)
if len(vio_wraps) == 1:
return vio_wraps[0]
# We delay the query to the LPARs because there could be hundreds of them.
# So we don't want to query it unless we need to.
lpar_wraps = lpar.LPAR.search(adapter, id=myid)
if len(lpar_wraps) == 1:
return lpar_wraps[0]
# If we made it here, something is wrong.
raise ex.ThisPartitionNotFoundException(
count=len(vio_wraps + lpar_wraps), lpar_id=myid)
def get_active_vioses(adapter, xag=(), vios_wraps=None, find_min=None):
"""Returns a list of active Virtual I/O Server Wrappers for a host.
Active is defined by powered on and RMC state being 'active'. The
VIOSes will be sorted such that if the Mgmt partition is a VIOS, it is
the first in the list.
:param adapter: The pypowervm adapter for the query.
:param xag: (Optional, Default: ()) Iterable of extended attributes to use.
:param vios_wraps: (Optional, Default: None) A list of VIOS wrappers. If
specified, the method will check for active VIOSes
in this list instead of issuing a GET.
:param find_min: (Optional, Default: None) If specified, the minimum
acceptable number of active VIOSes. If fewer are found,
this method raises NotEnoughActiveVioses.
:return: List of VIOS wrappers.
:raise NotEnoughActiveVioses: If find_min is specified and the number of
active VIOSes is less than the specified
number.
"""
if vios_wraps is None:
vios_wraps = vios.VIOS.get(adapter, xag=xag)
# A VIOS is 'active' if it is powered on and either RMC is active or it
# is the mgmt partition.
ret = [vio for vio in vios_wraps if vio.state in _VALID_VM_STATES and
(vio.rmc_state in _VALID_RMC_STATES or vio.is_mgmt_partition)]
ret = sorted(ret, key=lambda x: x.is_mgmt_partition, reverse=True)
if find_min is not None and len(ret) < find_min:
raise ex.NotEnoughActiveVioses(exp=find_min, act=len(ret))
LOG.debug('Found active VIOS(es): %s', str([vio.name for vio in ret]))
return ret
def get_partitions(adapter, lpars=True, vioses=True, mgmt=False):
"""Get a list of partitions.
Can include LPARs, VIOSes, and the management partition.
:param adapter: The pypowervm adapter.
:param lpars: If True, the result will include all LPARs.
:param vioses: If True, the result will include all VIOSes.
:param mgmt: If True, the result is guaranteed to include the
management partition, even if it would not otherwise have
been included based on get_lpars/get_vioses.
"""
rets = []
if vioses:
rets.extend(vios.VIOS.get(adapter))
if lpars:
rets.extend(lpar.LPAR.get(adapter))
# If they need the mgmt lpar, get it. But ONLY if we didn't get both
# VIOSes and LPARs. If we got both of those already, then we are
# guaranteed to already have the mgmt lpar in there.
if mgmt and not (lpars and vioses):
mgmt_w = get_mgmt_partition(adapter)
if mgmt_w.uuid not in [x.uuid for x in rets]:
rets.append(get_mgmt_partition(adapter))
return rets
# A global variable that will cache the physical WWPNs on the system.
_vscsi_pfc_wwpns = None
def get_physical_wwpns(adapter, force_refresh=True):
"""Returns the active WWPNs of the FC ports across all VIOSes on system.
:param adapter: pypowervm.adapter.Adapter for REST API communication.
:param force_refresh: The value discovered by this method is cached. If
force_refresh is False, the cached value is returned.
If True, the value is refetched from the server (and
re-cached).
"""
global _vscsi_pfc_wwpns
# TODO(IBM): Have a REST event posted when adapters power cycle, and force
# refresh the cache.
if force_refresh or _vscsi_pfc_wwpns is None:
vios_feed = vios.VIOS.get(adapter, xag=[c.XAG.VIO_STOR])
_vscsi_pfc_wwpns = []
for vwrap in vios_feed:
_vscsi_pfc_wwpns.extend(vwrap.get_active_pfc_wwpns())
return _vscsi_pfc_wwpns
def build_active_vio_feed_task(adapter, name='vio_feed_task', xag=(
c.XAG.VIO_STOR, c.XAG.VIO_SMAP, c.XAG.VIO_FMAP)):
"""Builds a FeedTask for all active VIOSes.
The transaction FeedTask enables users to collect a set of 'WrapperTasks'
against a feed of entities (in this case a set of active VIOSes). The
WrapperTask (within the FeedTask) handles lock and retry.
This is useful to batch together a set of updates across a feed of elements
(and multiple updates within a given wrapper). This allows for significant
performance improvements.
:param adapter: The pypowervm adapter for the query.
:param name: (Optional) The name of the feed manager. Defaults to
vio_feed_task.
:param xag: (Optional) Iterable of extended attributes to use. If not
specified, defaults to all mapping/storage options (as this is
most common case for using a transaction manager).
:raise NotEnoughActiveVioses: if there is not at least one active VIOS.
"""
return tx.FeedTask(name, get_active_vioses(adapter, xag=xag, find_min=1))
def _rmc_down(vwrap):
"""Check if VIOS is in RMC Down state.
:param vwrap: VIOS wrapper on which to check if RMC is down
"""
if vwrap.is_mgmt_partition:
return False
if (vwrap.rmc_state not in _VALID_RMC_STATES and
vwrap.state not in _DOWN_VM_STATES):
return True
return False
def _vios_waits_timed_out(no_rmc_vwraps, time_waited, max_wait_time=None):
"""Determine whether we've waited long enough for active VIOSes to get RMC.
If max_wait_time is None, we will determine a suitable max_wait_time based
on how long each VIOS has been booted.
Then this method simply returns whether the time_waited exceeds the
(specified or generated) max_wait_time for all VIOSes.
:param no_rmc_vwraps: List of state-up/RMC-down VIOS wrappers.
:param time_waited: The number of seconds the caller has waited thus far.
:param max_wait_time: The maximum total number of seconds we should wait
before declaring we've waited long enough. If None,
a suitable value will be determined based on the
VIOS's uptime.
:return: True if we've waited long enough for these VIOSes to come up.
False if we should wait some more.
"""
wait_time = max_wait_time
if wait_time is None:
wait_time = _LOW_WAIT_TIME
# if any VIOS is still early in its startup, wait longer to give RMC
# time to come up
for vwrap in no_rmc_vwraps:
if vwrap.uptime <= _UPTIME_CUTOFF:
wait_time = _HIGH_WAIT_TIME
break
return time_waited >= wait_time
def _wait_for_vioses(adapter, max_wait_time=None):
"""Wait for VIOSes to stabilize, and report on their states.
:param adapter: The pypowervm adapter for the query.
:param max_wait_time: Maximum number of seconds to wait for running VIOSes
to get an active RMC connection. If None, we will
wait longer if the VIOS booted recently, shorter if
it has been up for a while.
:return: List of all VIOSes returned by the REST API.
:return: List of all VIOSes which are powered on, but with RMC inactive.
"""
vios_wraps = []
rmc_down_vioses = []
sleep_step = 5
time_waited = 0
while True:
try:
vios_wraps = vios.VIOS.get(adapter)
rmc_down_vioses = [
vwrap for vwrap in vios_wraps if _rmc_down(vwrap)]
if not vios_wraps or (not rmc_down_vioses and get_active_vioses(
adapter, vios_wraps=vios_wraps)):
# If there are truly no VIOSes (which should generally be
# impossible if this code is running), we'll fail.
# If at least one VIOS is up, and all active VIOSes have RMC,
# we'll succeed.
break
except Exception as e:
# Things like "Service Unavailable"
LOG.warning(e)
# If we get here, we're only waiting for VIOSes that are
# state-active/RMC-down. On each iteration, if a new VIOS comes up, it
# will be considered here until its RMC comes up.
if _vios_waits_timed_out(rmc_down_vioses,
time_waited,
max_wait_time):
break
time.sleep(sleep_step)
time_waited += sleep_step
return vios_wraps, rmc_down_vioses, time_waited
def validate_vios_ready(adapter, max_wait_time=None):
"""Check whether VIOS rmc is up and running on this host.
Will query the VIOSes for a period of time attempting to ensure all
running VIOSes get an active RMC. If no VIOSes are ready by the timeout,
ViosNotAvailable is raised. If only some of the VIOSes had RMC go active
by the end of the wait period, the method will complete.
:param adapter: The pypowervm adapter for the query.
:param max_wait_time: Integer maximum number of seconds to wait for running
VIOSes to get an active RMC connection. Defaults to
None, in which case the system will determine an
appropriate amount of time to wait. This can be
influenced by whether or not the VIOS just booted.
:raises: A ViosNotAvailable exception if a VIOS is not available by a
given timeout.
"""
# Used to keep track of VIOSes and reduce queries to API
vwraps, rmc_down_vioses, waited = _wait_for_vioses(adapter, max_wait_time)
if rmc_down_vioses:
LOG.warning(
_('Timed out waiting for the RMC state of all the powered on '
'Virtual I/O Servers to be active. Wait time was: %(time)d '
'seconds. VIOSes that did not go active were: %(vioses)s.'),
{'time': waited,
'vioses': ', '.join([vio.name for vio in rmc_down_vioses])})
# If we didn't get a single active VIOS then raise an exception
if not get_active_vioses(adapter, vios_wraps=vwraps):
raise ex.ViosNotAvailable(wait_time=waited)
def has_physical_io(part_w):
"""Determine whether a partition has any physical I/O adapters attached.
This method looks over all of the slots on the partition and returns True
if any of the slots has something in it, except for the following:
- USB Device
- Graphics
- Empty Slot
All other devices are considered I/O.
:param part_w: Wrapper (LPAR or VIOS) of the partition to check.
:return: True if any physical I/O adapter was found attached to the
partition; False otherwise.
"""
try:
io_slots = part_w.io_config.io_slots
except AttributeError:
# If the wrapper has no io_slots, it has no physical I/O
return False
# Doesn't count as physical I/O if description contains any of these
non_ios = ("USB", "Universal Serial Bus", "Graphics", "Empty slot",
"3D Controller")
for io_slot in io_slots:
try:
# If the description *isn't* one of the non-I/O ones, it's a hit.
if not any([non_io in io_slot.description for non_io in non_ios]):
return True
except AttributeError:
# The slot didn't have a description. That shouldn't happen. But
# we have to assume it's physical I/O in that case.
LOG.warning(
_("Assuming description-less slot is physical I/O: %s"),
io_slot.toxmlstring())
return True
# We got through all the I/O slots without finding a physical I/O adapter
return False
def clone_uuid(adapter, lpar_uuid, surrogate_lpar_name):
"""Issue the CloneUUID job.
The CloneUUID job deletes the original LPAR and changes the surrogate
LPAR's UUID to be the original LPAR's UUID.
:param adapter: The pypowervm adapter to issue the job.
:param lpar_uuid: Original LPAR's UUID.
:param surrogate_lpar_name: Surrogate LPAR's name.
"""
resp = adapter.read(lpar.LPAR.schema_type, root_id=lpar_uuid,
suffix_type=c.SUFFIX_TYPE_DO,
suffix_parm=_SUFFIX_PARM_CLONE_UUID)
job_wrapper = job.Job.wrap(resp.entry)
job_parms = [job_wrapper.create_job_parameter('targetLparName',
surrogate_lpar_name)]
job_wrapper.run_job(lpar_uuid, job_parms=job_parms)
def ibmi_add_license_key(adapter, lpar_uuid, license_key):
"""Issue the AddLicense job.
The AddLicense job submits a license key to IBMi partition.
:param adapter: The pypowervm adapter to issue the job.
:param lpar_uuid: Original LPAR's UUID.
:param license_key: License key for IBMi partition.
"""
resp = adapter.read(lpar.LPAR.schema_type, root_id=lpar_uuid,
suffix_type=c.SUFFIX_TYPE_DO,
suffix_parm=_SUFFIX_PARM_ADD_LICENSE)
job_wrapper = job.Job.wrap(resp.entry)
job_parms = [job_wrapper.create_job_parameter('licKey', license_key)]
job_wrapper.run_job(lpar_uuid, job_parms=job_parms)
|