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
|
# Copyright 2014, 2015 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.
"""LPAR, the EntryWrapper for LogicalPartition."""
from oslo_log import log as logging
import pypowervm.const as pc
from pypowervm.i18n import _
import pypowervm.util as u
import pypowervm.wrappers.base_partition as bp
import pypowervm.wrappers.entry_wrapper as ewrap
LOG = logging.getLogger(__name__)
_LPAR_MIG_STG_VIOS_DATA_STATUS = 'MigrationStorageViosDataStatus'
_LPAR_MIG_STG_VIOS_DATA_TIME = 'MigrationStorageViosDataTimestamp'
_LPAR_RR = 'RemoteRestartCapable'
_LPAR_SRR = 'SimplifiedRemoteRestartCapable'
_LPAR_HAS_DED_PROCS_FOR_MIG = 'HasDedicatedProcessorsForMigration'
_LPAR_SUSPEND_CAP = 'SuspendCapable'
_LPAR_MIG_DISABLE = 'MigrationDisable'
_LPAR_MIG_STATE = 'MigrationState'
_LPAR_RR_STATE = 'RemoteRestartState'
_LPAR_PRI_PGING_SVC_PART = 'PrimaryPagingServicePartition'
_LPAR_POWER_MGT_MODE = 'PowerManagementMode'
_LPAR_SEC_PGING_SVC_PART = 'SecondaryPagingServicePartition'
_LPAR_USES_HSL_OPTICONN = 'UsesHighSpeedLinkOpticonnect'
_LPAR_USES_VIRT_OPTICONN = 'UsesVirtualOpticonnect'
_LPAR_VFC_CLIENT_ADPTS = 'VirtualFibreChannelClientAdapters'
_LPAR_VSCSI_CLIENT_ADPTS = 'VirtualSCSIClientAdapters'
_LPAR_RESTRICTED_IO = 'IsRestrictedIOPartition'
_LPAR_STG_DEV_UDID = 'StorageDeviceUniqueDeviceID'
_LPAR_DES_IPL_SRC = 'DesignatedIPLSource'
_LPAR_DED_VNICS = 'DedicatedVirtualNICs'
_LPAR_BOOTLIST_INFO = 'BootListInformation'
_LPAR_EL_ORDER = bp.BP_EL_ORDER + (
_LPAR_MIG_STG_VIOS_DATA_STATUS, _LPAR_MIG_STG_VIOS_DATA_TIME, _LPAR_RR,
_LPAR_SRR, _LPAR_HAS_DED_PROCS_FOR_MIG, _LPAR_SUSPEND_CAP,
_LPAR_MIG_DISABLE, _LPAR_MIG_STATE, _LPAR_RR_STATE,
_LPAR_PRI_PGING_SVC_PART, _LPAR_POWER_MGT_MODE, _LPAR_SEC_PGING_SVC_PART,
_LPAR_USES_HSL_OPTICONN, _LPAR_USES_VIRT_OPTICONN, _LPAR_VFC_CLIENT_ADPTS,
_LPAR_VSCSI_CLIENT_ADPTS, _LPAR_RESTRICTED_IO, _LPAR_STG_DEV_UDID,
_LPAR_DES_IPL_SRC, _LPAR_DED_VNICS, _LPAR_BOOTLIST_INFO)
class IPLSrc(object):
"""Mirror of IPLSource.Enum (relevant to IBMi partitions only).
Valid values for:
- LPAR.desig_ipl_src
- 'iIPLsource' param in pypowervm.power.power_on.
Example usage:
- ilpar.desig_ipl_src = IPLSrc.C
ilpar.update()
- power_on(..., add_parms={IPLSrc.KEY: IPLSrc.A, ...})
"""
KEY = 'iIPLsource'
A = 'a'
B = 'b'
C = 'c'
D = 'd'
UNKNOWN = 'Unknown'
ALL_VALUES = (A, B, C, D, UNKNOWN)
class RRState(object):
"""Remote Restart states - mirror of PartitionRemoteRestart.Enum."""
INVALID = "Invalid"
RR_ABLE = "Remote_Restartable"
SRC_RRING = "Source_Remote_Restarting"
DEST_RRING = "Destination_Remote_Restarting"
REM_RESTARTED = "Remote_Restarted"
PROF_RESTORED = "Profile_Restored"
RES_STG_DEV_UPD_FAIL = "Reserved_Storage_Device_Update_Failed"
FORCED_SRC_RESTART = "Forced_Source_Side_Restart"
SRC_CLEANUP_FAIL = "Source_Side_Cleanup_Failed"
RES_STG_DEV_UPD_FAIL_W_OVRD = ("Reserved_Storage_Device_Update_Failed_With"
"_Override")
RR_ABLE_SUSPENDED = "Remote_Restartable_Suspended"
LOC_UPD_FAIL = "Local_Update_Failed"
PART_UPD = "Partial_Update"
STALE_DATA = "Stale_Data"
LOC_DATA_VALID = "Local_Data_Valid"
OUT_OF_SPACE = "Out_Of_Space"
LOC_DATA_INVALID = "Local_Data_Invalid"
DEST_RR_ED = "Destination_Remote_Restarted"
SRC_RRING_SUSPENDED = "Source_Remote_Restarting_Suspended"
LOC_STG_UPD_FAIL = "Local_Storage_Update_Failed"
PG_DEV_UPD_OVRD = "Page_Device_Update_Override"
class BootStorageType(object):
"""Enumeration of possible storage connection methods for devices."""
VSCSI = 'vscsi'
VFC = 'npiv'
UNKNOWN = 'Unknown'
ALL_VALUES = (VSCSI, VFC, UNKNOWN)
@ewrap.EntryWrapper.pvm_type('LogicalPartition',
child_order=_LPAR_EL_ORDER)
class LPAR(bp.BasePartition, ewrap.WrapperSetUUIDMixin):
@classmethod
def bld(cls, adapter, name, mem_cfg, proc_cfg, env=bp.LPARType.AIXLINUX,
io_cfg=None):
"""Creates an LPAR wrapper.
Thin wrapper around BasePartition._bld_base, defaulting env.
"""
return super(LPAR, cls)._bld_base(adapter, name, mem_cfg, proc_cfg,
env, io_cfg)
def _can_modify(self, dlpar_cap, cap_desc):
"""Checks to determine if the LPAR can be modified.
:param dlpar_cap: The appropriate DLPAR attribute to validate. Only
used if system is active.
:param cap_desc: A translated string indicating the DLPAR capability.
:return capable: True if HW can be added/removed. False otherwise.
:return reason: A translated message that will indicate why it was not
capable of modification. If capable is True, the
reason will be None.
"""
# If we are in the LPAR, we have access to the operating system type.
# If it is an OS400 type, then we can add/remove HW no matter what.
if self.env == bp.LPARType.OS400:
return True, None
return super(LPAR, self)._can_modify(dlpar_cap, cap_desc)
def can_lpm(self, host_w, migr_data=None):
"""Determines if a LPAR is ready for Live Partition Migration.
This check validates that the target system is capable of
handling the LPAR if the LPAR is an IBMi. It simply validates that
the LPAR has the essential capabilities in place for a LPM operation.
:param host_w: The host wrapper for the system.
:param migr_data: The dictionary of migration data for the target host.
If parameters are not passed in, will skip the check
and let the low levels surface related error.
The supported key today is:
- ibmi_lpar_mobility_capable: Boolean
TODO(IBM): add more destination checks here. Ex.
migrate an AIX or IBMi VM to a Linux only host.
:return capable: True if the LPAR is LPM capable. False otherwise.
:return reason: A translated message that will indicate why it was not
capable of LPM. If capable is True, the reason will
be None.
"""
# First check is the not activated state
if self.state != bp.LPARState.RUNNING:
return False, _("LPAR is not in an active state.")
if self.env == bp.LPARType.OS400:
# IBM i does not require RMC, but does need to check for target
# host and source host are capable for IBMi mobility and
# restricted I/O.
if migr_data is not None:
c = migr_data.get('ibmi_lpar_mobility_capable')
if c is not None and not c:
return False, _('Target system does not have the IBM i'
' LPAR Mobility Capability.')
if not self.restrictedio:
return False, _('IBM i LPAR does not have restricted I/O.')
if not host_w.get_capability('ibmi_lpar_mobility_capable'):
return False, _('Source system does not have the IBM i'
' LPAR Mobility Capability.')
elif self.rmc_state != bp.RMCState.ACTIVE:
return False, _('LPAR does not have an active RMC connection.')
if self.is_mgmt_partition:
return False, _('LPAR is the management partition')
c = self.capabilities
if not (c.mem_dlpar and c.proc_dlpar):
return False, _('LPAR is not available for LPM due to missing '
'DLPAR capabilities.')
return True, None
@property
def migration_state(self):
"""See PartitionMigrationStateEnum.
e.g. 'Not_Migrating', 'Migration_Starting', 'Migration_Failed', etc.
Defaults to 'Not_Migrating'
"""
return self._get_val_str(_LPAR_MIG_STATE, 'Not_Migrating')
@property
def rr_enabled(self):
"""Deprecated (n/a for NovaLink) - use srr_enabled instead."""
import warnings
warnings.warn(_("This is not the property you are looking for. Use "
"srr_enabled in a NovaLink environment."),
DeprecationWarning)
return None
@rr_enabled.setter
def rr_enabled(self, value):
"""Deprecated (n/a for NovaLink) - use srr_enabled instead."""
import warnings
warnings.warn(_("This is not the property you are looking for. Use "
"srr_enabled in a NovaLink environment."),
DeprecationWarning)
@property
def rr_state(self):
"""Deprecated (n/a for NovaLink) - use srr_enabled instead."""
import warnings
warnings.warn(_("This is not the property you are looking for. Use "
"srr_enabled in a NovaLink environment."),
DeprecationWarning)
return None
@property
def srr_enabled(self):
"""Simplied remote restart.
:returns: Returns SRR config boolean
"""
return self._get_val_bool(_LPAR_SRR, False)
@srr_enabled.setter
def srr_enabled(self, value):
self.set_parm_value(_LPAR_SRR, u.sanitize_bool_for_api(value),
attrib=pc.ATTR_KSV120)
@property
def restrictedio(self):
return self._get_val_bool(_LPAR_RESTRICTED_IO, False)
@restrictedio.setter
def restrictedio(self, value):
self.set_parm_value(_LPAR_RESTRICTED_IO,
u.sanitize_bool_for_api(value))
@property
def desig_ipl_src(self):
"""Designated IPL Source - see IPLSrc enumeration."""
return self._get_val_str(_LPAR_DES_IPL_SRC)
@desig_ipl_src.setter
def desig_ipl_src(self, value):
"""Designated IPL Source - see IPLSrc enumeration."""
if value not in IPLSrc.ALL_VALUES:
raise ValueError(_("Invalid IPLSrc '%s'.") % value)
self.set_parm_value(_LPAR_DES_IPL_SRC, value)
def set_uuid(self, value):
# LPAR uuids must be uppercase.
up_uuid = str(value).upper()
super(LPAR, self).set_uuid(up_uuid)
self.set_parm_value(bp._BP_UUID, up_uuid)
|