/usr/share/pyshared/lsm/smis.py is in python-libstoragemgmt 0.0.20-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 | # Copyright (C) 2011-2013 Red Hat, Inc.
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
# Author: tasleson
from string import split
import time
import pywbem
from pywbem import CIMError
from iplugin import IStorageAreaNetwork
from common import uri_parse, LsmError, ErrorNumber, JobStatus, md5
from data import Pool, Initiator, Volume, AccessGroup, System, Capabilities
from lsm.version import VERSION
def handle_cim_errors(method):
def cim_wrapper(*args, **kwargs):
try:
return method(*args, **kwargs)
except CIMError as ce:
raise LsmError(ErrorNumber.PLUGIN_ERROR, str(ce))
return cim_wrapper
class Smis(IStorageAreaNetwork):
"""
SMI-S plug-ing which exposes a small subset of the overall provided
functionality of SMI-S
"""
#SMI-S job 'JobState' enumerations
(JS_NEW, JS_STARTING, JS_RUNNING, JS_SUSPENDED, JS_SHUTTING_DOWN,
JS_COMPLETED,
JS_TERMINATED, JS_KILLED, JS_EXCEPTION) = (2, 3, 4, 5, 6, 7, 8, 9, 10)
#SMI-S job 'OperationalStatus' enumerations
(JOB_OK, JOB_ERROR, JOB_STOPPED, JOB_COMPLETE) = (2, 6, 10, 17)
#SMI-S invoke return values we are interested in
## Reference: Page 54 in 1.5 SMI-S block specification
(INVOKE_OK,
INVOKE_NOT_SUPPORTED,
INVOKE_TIMEOUT,
INVOKE_FAILED,
INVOKE_INVALID_PARAMETER,
INVOKE_IN_USE,
INVOKE_ASYNC,
INVOKE_SIZE_NOT_SUPPORTED) = (0, 1, 3, 4, 5, 6, 4096, 4097)
#SMI-S replication enumerations
(SYNC_TYPE_MIRROR, SYNC_TYPE_SNAPSHOT, SYNC_TYPE_CLONE) = (6, 7, 8)
class RepSvc(object):
class Action(object):
CREATE_ELEMENT_REPLICA = 2
class RepTypes(object):
#SMI-S replication service capabilities
SYNC_MIRROR_LOCAL = 2
ASYNC_MIRROR_LOCAL = 3
SYNC_MIRROR_REMOTE = 4
ASYNC_MIRROR_REMOTE = 5
SYNC_SNAPSHOT_LOCAL = 6
ASYNC_SNAPSHOT_LOCAL = 7
SYNC_SNAPSHOT_REMOTE = 8
ASYNC_SNAPSHOT_REMOTE = 9
SYNC_CLONE_LOCAL = 10
ASYNC_CLONE_LOCAL = 11
SYNC_CLONE_REMOTE = 12
ASYNC_CLONE_REMOTE = 13
class CopyStates(object):
INITIALIZED = 2
UNSYNCHRONIZED = 3
SYNCHRONIZED = 4
INACTIVE = 8
class CopyTypes(object):
ASYNC = 2 # Async. mirror
SYNC = 3 # Sync. mirror
UNSYNCASSOC = 4 # lsm Clone
UNSYNCUNASSOC = 5 # lsm Copy
class Synchronized(object):
class SyncState(object):
INITIALIZED = 2
PREPAREINPROGRESS = 3
PREPARED = 4
RESYNCINPROGRESS = 5
SYNCHRONIZED = 6
FRACTURE_IN_PROGRESS = 7
QUIESCEINPROGRESS = 8
QUIESCED = 9
RESTORE_IN_PROGRESSS = 10
IDLE = 11
BROKEN = 12
FRACTURED = 13
FROZEN = 14
COPY_IN_PROGRESS = 15
# SMI-S mode for mirror updates
(CREATE_ELEMENT_REPLICA_MODE_SYNC,
CREATE_ELEMENT_REPLICA_MODE_ASYNC) = (2, 3)
# SMI-S volume 'OperationalStatus' enumerations
(VOL_OP_STATUS_OK, VOL_OP_STATUS_DEGRADED, VOL_OP_STATUS_ERR,
VOL_OP_STATUS_STARTING,
VOL_OP_STATUS_DORMANT) = (2, 3, 6, 8, 15)
#SMI-S CIM_ComputerSystem OperationalStatus for system
class SystemOperationalStatus(object):
UNKNOWN = 0
OTHER = 1
OK = 2
DEGRADED = 3
STRESSED = 4
PREDICTIVE_FAILURE = 5
ERROR = 6
NON_RECOVERABLE_ERROR = 7
STARTING = 8
STOPPING = 9
STOPPED = 10
IN_SERVICE = 11
NO_CONTACT = 12
LOST_COMMUNICATION = 13
ABORTED = 14
DORMANT = 15
SUPPORTING_ENTITY_IN_ERROR = 16
COMPLETED = 17
POWER_MODE = 18
#SMI-S ExposePaths device access enumerations
(EXPOSE_PATHS_DA_READ_WRITE, EXPOSE_PATHS_DA_READ_ONLY) = (2, 3)
def __init__(self):
self._c = None
def _get_class(self, class_name, gen_id, ident):
instances = self._c.EnumerateInstances(class_name)
for i in instances:
if gen_id(i) == ident:
return i
raise LsmError(ErrorNumber.INVALID_ARGUMENT,
"Unable to find class instance " + class_name +
" with signature " + ident)
def _get_class_instance(self, class_name, prop_name=None, prop_value=None,
no_throw_on_missing=False):
"""
Gets an instance of a class that optionally matches a specific
property name and value
"""
instances = None
try:
instances = self._c.EnumerateInstances(class_name)
except CIMError as ce:
error_code = tuple(ce)[0]
if error_code == 5 and no_throw_on_missing:
return None
if prop_name is None:
if len(instances) != 1:
class_names = " ".join([x.classname for x in instances])
raise LsmError(ErrorNumber.INTERNAL_ERROR,
"Expecting one instance "
"of " + class_name + " and got: " +
class_names)
return instances[0]
else:
for i in instances:
if prop_name in i and i[prop_name] == prop_value:
return i
if no_throw_on_missing:
return None
raise LsmError(ErrorNumber.INVALID_ARGUMENT,
"Unable to find class instance " + class_name +
" with property " + prop_name +
" with value " + prop_value)
def _get_pool(self, pool_id):
"""
Get a specific instance of a pool by pool id.
"""
return self._get_class_instance("CIM_StoragePool", "InstanceID",
pool_id)
def _get_volume(self, volume_id):
"""
Get a specific instance of a volume by volume id.
"""
return self._get_class("CIM_StorageVolume", self._vol_id, volume_id)
def _get_spc(self, initiator_id, volume_id):
"""
Retrieve the SCSIProtocolController for a given initiator and volume.
This will return a non-none value when there is a mapping between the
initiator and the volume.
"""
init = self._get_class_instance('CIM_StorageHardwareID', 'StorageID',
initiator_id)
#Look at page 151 (1.5 smi-s spec.) in the block services books for the
# SNIA_MappingProtocolControllerView
if init:
auths = self._c.Associators(init.path,
AssocClass='CIM_AuthorizedSubject')
if auths:
for a in auths:
spc = self._c.Associators(a.path,
AssocClass='CIM_AuthorizedTarget')
if spc and len(spc) > 0:
logical_device = \
self._c.Associators(spc[0].path,
AssocClass=
'CIM_ProtocolControllerForUnit')
if logical_device and len(logical_device) > 0:
vol = self._c.GetInstance(logical_device[0].path)
if 'DeviceID' in vol and md5(vol.path) == volume_id:
return spc[0]
return None
def _pi(self, msg, retrieve_vol, rc, out):
"""
Handle the the process of invoking an operation.
"""
#Check to see if operation is done
if rc == Smis.INVOKE_OK:
if retrieve_vol:
return None, self._new_vol_from_name(out)
else:
return None, None
elif rc == Smis.INVOKE_ASYNC:
#We have an async operation
job_id = "%s@%s" % (md5(str(out['Job']['InstanceID'])),
str(retrieve_vol))
return job_id, None
elif rc == Smis.INVOKE_NOT_SUPPORTED:
raise LsmError(ErrorNumber.NO_SUPPORT,
'SMI-S error code indicates operation not supported')
else:
raise LsmError(ErrorNumber.PLUGIN_ERROR,
'Error: ' + msg + " rc= " + str(rc))
def startup(self, uri, password, timeout, flags=0):
"""
Called when the plug-in runner gets the start request from the client.
"""
protocol = 'http'
u = uri_parse(uri, ['scheme', 'netloc', 'host', 'port'], ['namespace'])
if u['scheme'].lower() == 'smispy+ssl':
protocol = 'https'
url = "%s://%s:%s" % (protocol, u['host'], u['port'])
#System filtering
self.system_list = None
if 'systems' in u['parameters']:
self.system_list = split(u['parameters']["systems"], ":")
self.tmo = timeout
self._c = pywbem.WBEMConnection(url, (u['username'], password),
u['parameters']["namespace"])
def set_time_out(self, ms, flags=0):
self.tmo = ms
def get_time_out(self, flags=0):
return self.tmo
def shutdown(self, flags=0):
self._c = None
self._jobs = None
def _job_completed_ok(self, status):
"""
Given a concrete job instance, check the operational status. This is a
little convoluted as different SMI-S proxies return the values in
different positions in list :-)
"""
rc = False
op = status['OperationalStatus']
if len(op) > 1 \
and ((op[0] == Smis.JOB_OK and op[1] == Smis.JOB_COMPLETE)
or (op[0] == Smis.JOB_COMPLETE and op[1] == Smis.JOB_OK)):
rc = True
return rc
def _get_job_details(self, job_id):
(job_id, get_vol) = job_id.split('@', 2)
if get_vol == 'False':
get_vol = False
else:
get_vol = True
jobs = self._c.EnumerateInstances('CIM_ConcreteJob')
for j in jobs:
tmp_id = md5(j['InstanceID'])
if tmp_id == job_id:
return j, get_vol
raise LsmError(ErrorNumber.NOT_FOUND_JOB, 'Non-existent job')
def _job_progress(self, job_id):
"""
Given a concrete job instance name, check the status
"""
volume = None
(concrete_job, get_vol) = self._get_job_details(job_id)
job_state = concrete_job['JobState']
if job_state in (Smis.JS_NEW, Smis.JS_STARTING, Smis.JS_RUNNING):
status = JobStatus.INPROGRESS
pc = concrete_job['PercentComplete']
if pc > 100:
percent_complete = 100
else:
percent_complete = pc
elif job_state == Smis.JS_COMPLETED:
status = JobStatus.COMPLETE
percent_complete = 100
if self._job_completed_ok(concrete_job):
if get_vol:
volume = self._new_vol_from_job(concrete_job)
else:
status = JobStatus.ERROR
else:
raise LsmError(ErrorNumber.PLUGIN_ERROR,
str(concrete_job['ErrorDescription']))
return status, percent_complete, volume
def _scs_supported_capabilities(self, system, cap):
"""
Interrogate the supported features of the Storage Configuration service
"""
scs = self._get_class_instance('CIM_StorageConfigurationService',
'SystemName', system.id)
scs_cap_inst = self._c.Associators(
scs.path,
AssocClass='CIM_ElementCapabilities',
ResultClass='CIM_StorageConfigurationCapabilities')[0]
#print 'Async', scs_cap_inst['SupportedAsynchronousActions']
#print 'Sync', scs_cap_inst['SupportedSynchronousActions']
#TODO Get rid of magic numbers
if 2 in scs_cap_inst['SupportedStorageElementTypes']:
cap.set(Capabilities.VOLUMES)
if 5 in scs_cap_inst['SupportedAsynchronousActions'] \
or 5 in scs_cap_inst['SupportedSynchronousActions']:
cap.set(Capabilities.VOLUME_CREATE)
if 6 in scs_cap_inst['SupportedAsynchronousActions'] \
or 6 in scs_cap_inst['SupportedSynchronousActions']:
cap.set(Capabilities.VOLUME_DELETE)
if 7 in scs_cap_inst['SupportedAsynchronousActions'] \
or 7 in scs_cap_inst['SupportedSynchronousActions']:
cap.set(Capabilities.VOLUME_RESIZE)
def _rs_supported_capabilities(self, system, cap):
"""
Interrogate the supported features of the replication service
"""
rs = self._get_class_instance("CIM_ReplicationService", 'SystemName',
system.id, True)
if rs:
rs_cap = self._c.Associators(
rs.path,
AssocClass='CIM_ElementCapabilities',
ResultClass='CIM_ReplicationServiceCapabilities')[0]
if self.RepSvc.Action.CREATE_ELEMENT_REPLICA in \
rs_cap['SupportedAsynchronousActions'] \
or self.RepSvc.Action.CREATE_ELEMENT_REPLICA in \
rs_cap['SupportedSynchronousActions']:
cap.set(Capabilities.VOLUME_REPLICATE)
#Mirror support is not working and is not supported at this time.
#if self.RepSvc.RepTypes.SYNC_MIRROR_LOCAL in \
# rs_cap['SupportedReplicationTypes']:
# cap.set(Capabilities.DeviceID)
#if self.RepSvc.RepTypes.ASYNC_MIRROR_LOCAL \
# in rs_cap['SupportedReplicationTypes']:
# cap.set(Capabilities.VOLUME_REPLICATE_MIRROR_ASYNC)
if self.RepSvc.RepTypes.SYNC_SNAPSHOT_LOCAL \
or self.RepSvc.RepTypes.ASYNC_SNAPSHOT_LOCAL \
in rs_cap['SupportedReplicationTypes']:
cap.set(Capabilities.VOLUME_REPLICATE_CLONE)
if self.RepSvc.RepTypes.SYNC_CLONE_LOCAL \
or self.RepSvc.RepTypes.ASYNC_CLONE_LOCAL \
in rs_cap['SupportedReplicationTypes']:
cap.set(Capabilities.VOLUME_REPLICATE_COPY)
else:
#Try older storage configuration service
rs = self._get_class_instance("CIM_StorageConfigurationService",
'SystemName',
system.id, True)
if rs:
rs_cap = self._c.Associators(
rs.path,
AssocClass='CIM_ElementCapabilities',
ResultClass='CIM_StorageConfigurationCapabilities')[0]
sct = rs_cap['SupportedCopyTypes']
if len(sct):
cap.set(Capabilities.VOLUME_REPLICATE)
#Mirror support is not working and is not supported at this
#time.
#if Smis.CopyTypes.ASYNC in sct:
# cap.set(Capabilities.VOLUME_REPLICATE_MIRROR_ASYNC)
#if Smis.CopyTypes.SYNC in sct:
# cap.set(Capabilities.VOLUME_REPLICATE_MIRROR_SYNC)
if Smis.CopyTypes.UNSYNCASSOC in sct:
cap.set(Capabilities.VOLUME_REPLICATE_CLONE)
if Smis.CopyTypes.UNSYNCUNASSOC in sct:
cap.set(Capabilities.VOLUME_REPLICATE_COPY)
def _pcm_supported_capabilities(self, system, cap):
"""
Interrogate the supported features of
CIM_ProtocolControllerMaskingCapabilities
"""
#Get the cim object that represents the system
cim_sys = self._systems(system.id)[0]
#Get the protocol controller masking capabililites
pcm = self._c.Associators(
cim_sys.path,
ResultClass='CIM_ProtocolControllerMaskingCapabilities')[0]
cap.set(Capabilities.ACCESS_GROUP_LIST)
if pcm['ExposePathsSupported']:
cap.set(Capabilities.ACCESS_GROUP_GRANT)
cap.set(Capabilities.ACCESS_GROUP_REVOKE)
cap.set(Capabilities.ACCESS_GROUP_ADD_INITIATOR)
cap.set(Capabilities.ACCESS_GROUP_DEL_INITIATOR)
cap.set(Capabilities.ACCESS_GROUPS_GRANTED_TO_VOLUME)
cap.set(Capabilities.VOLUMES_ACCESSIBLE_BY_ACCESS_GROUP)
def _common_capabilities(self, system):
cap = Capabilities()
#Assume that the SMI-S we are talking to supports blocks
cap.set(Capabilities.BLOCK_SUPPORT)
cap.set(Capabilities.INITIATORS)
self._scs_supported_capabilities(system, cap)
self._rs_supported_capabilities(system, cap)
return cap
@handle_cim_errors
def capabilities(self, system, flags=0):
cap = self._common_capabilities(system)
self._pcm_supported_capabilities(system, cap)
return cap
@handle_cim_errors
def plugin_info(self, flags=0):
return "Generic SMI-S support", VERSION
@handle_cim_errors
def job_status(self, job_id, flags=0):
"""
Given a job id returns the current status as a tuple
(status (enum), percent_complete(integer), volume (None or Volume))
"""
return self._job_progress(job_id)
@staticmethod
def _vol_id(c):
return md5(c['SystemName'] + c['DeviceID'])
def _get_pool_from_vol(self, cim_volume):
"""
Takes a CIMInstance that represents a volume and returns the pool
id for that volume.
"""
p = self._c.Associators(cim_volume.path,
AssocClass='CIM_AllocatedFromStoragePool',
ResultClass='CIM_StoragePool')[0]
return p['InstanceID']
def _new_vol(self, cv, pool_id=None):
"""
Takes a CIMInstance that represents a volume and returns a lsm Volume
"""
other_id = ''
#Reference page 134 in 1.5 spec.
status = Volume.STATUS_UNKNOWN
#OperationalStatus is mandatory
if 'OperationalStatus' in cv:
for s in cv["OperationalStatus"]:
if s == Smis.VOL_OP_STATUS_OK:
status |= Volume.STATUS_OK
elif s == Smis.VOL_OP_STATUS_DEGRADED:
status |= Volume.STATUS_DEGRADED
elif s == Smis.VOL_OP_STATUS_ERR:
status |= Volume.STATUS_ERR
elif s == Smis.VOL_OP_STATUS_STARTING:
status |= Volume.STATUS_STARTING
elif s == Smis.VOL_OP_STATUS_DORMANT:
status |= Volume.STATUS_DORMANT
#This is optional (User friendly name)
if 'ElementName' in cv:
user_name = cv["ElementName"]
else:
#Better fallback value?
user_name = cv['DeviceID']
#TODO: Make this work for all vendors
#This is optional(EMC and NetApp place the vpd here)
if 'OtherIdentifyingInfo' in cv \
and cv["OtherIdentifyingInfo"] is not None \
and len(cv["OtherIdentifyingInfo"]) > 0:
other_id = cv["OtherIdentifyingInfo"]
if isinstance(other_id, list):
other_id = other_id[0]
else:
#Engenio/LSI/XIV use this field.
nf = cv['NameFormat']
#Check to see if name format is NAA or FC Node WWN
if 9 == nf or 8 == nf:
other_id = cv["Name"]
#This is a fairly expensive operation, so it's in our best interest
#to not call this very often.
if pool_id is None:
#Go an retrieve the pool id
pool_id = self._get_pool_from_vol(cv)
return Volume(self._vol_id(cv), user_name, other_id, cv["BlockSize"],
cv["NumberOfBlocks"], status, cv['SystemName'], pool_id)
def _new_vol_from_name(self, out):
"""
Given a volume by CIMInstanceName, return a lsm Volume object
"""
instance = None
if 'TheElement' in out:
instance = self._c.GetInstance(out['TheElement'])
elif 'TargetElement' in out:
instance = self._c.GetInstance(out['TargetElement'])
return self._new_vol(instance)
def _new_access_group(self, g):
return AccessGroup(g['DeviceID'], g['ElementName'],
self._get_initiators_in_group(g, 'StorageID'),
g['SystemName'])
def _new_vol_from_job(self, job):
"""
Given a concrete job instance, return referenced volume as lsm volume
"""
associations = self._c.Associators(job.path,
ResultClass='CIM_StorageVolume')
for a in associations:
return self._new_vol(self._c.GetInstance(a.path))
return None
@handle_cim_errors
def volumes(self, flags=0):
"""
Return all volumes.
"""
rc = []
systems = self._systems()
for s in systems:
pools = self._pools(s)
for p in pools:
volumes = self._c.Associators(p.path,
ResultClass='CIM_StorageVolume')
rc.extend([self._new_vol(v, p['InstanceID']) for v in volumes])
return rc
def _systems(self, system_name=None):
"""
Returns a list of system objects (CIM)
"""
rc = []
ccs = self._c.EnumerateInstances('CIM_ControllerConfigurationService')
for c in ccs:
system = self._c.Associators(c.path,
AssocClass='CIM_HostedService',
ResultClass='CIM_ComputerSystem')[0]
#Filtering
if system_name is not None:
if system['Name'] == system_name:
rc.append(system)
elif self.system_list:
if system['Name'] in self.system_list:
rc.append(system)
else:
rc.append(system)
return rc
def _pools(self, system):
pools = self._c.Associators(system.path,
AssocClass='CIM_HostedStoragePool',
ResultClass='CIM_StoragePool')
return [p for p in pools if not p["Primordial"]]
@handle_cim_errors
def pools(self, flags=0):
"""
Return all pools
"""
rc = []
systems = self._systems()
for s in systems:
pools = self._pools(s)
rc.extend(
[Pool(p['InstanceID'], p["ElementName"],
p["TotalManagedSpace"],
p["RemainingManagedSpace"],
s['Name']) for p in pools])
return rc
def _new_system(self, s):
#In the case of systems we are assuming that the System Name is unique.
status = System.STATUS_UNKNOWN
if 'OperationalStatus' in s:
for os in s['OperationalStatus']:
if os == Smis.SystemOperationalStatus.OK:
status |= System.STATUS_OK
elif os == Smis.SystemOperationalStatus.DEGRADED:
status |= System.STATUS_DEGRADED
elif os == Smis.SystemOperationalStatus.ERROR or \
Smis.SystemOperationalStatus.STRESSED or \
Smis.SystemOperationalStatus.NON_RECOVERABLE_ERROR:
status |= System.STATUS_ERROR
elif os == Smis.SystemOperationalStatus.PREDICTIVE_FAILURE:
status |= System.STATUS_PREDICTIVE_FAILURE
return System(s['Name'], s['ElementName'], status)
@handle_cim_errors
def systems(self, flags=0):
"""
Return the storage arrays accessible from this plug-in at this time
"""
return [self._new_system(s) for s in self._systems()]
@staticmethod
def _to_init(i):
return Initiator(i['StorageID'], i["IDType"], i["ElementName"])
@handle_cim_errors
def initiators(self, flags=0):
"""
Return all initiators.
"""
initiators = self._c.EnumerateInstances('CIM_StorageHardwareID')
return [Smis._to_init(i) for i in initiators]
@handle_cim_errors
def volume_create(self, pool, volume_name, size_bytes, provisioning,
flags=0):
"""
Create a volume.
"""
if provisioning != Volume.PROVISION_DEFAULT:
raise LsmError(ErrorNumber.UNSUPPORTED_PROVISIONING,
"Unsupported provisioning")
#Get the Configuration service for the system we are interested in.
scs = self._get_class_instance('CIM_StorageConfigurationService',
'SystemName', pool.system_id)
sp = self._get_pool(pool.id)
in_params = {'ElementName': volume_name,
'ElementType': pywbem.Uint16(2),
'InPool': sp.path,
'Size': pywbem.Uint64(size_bytes)}
return self._pi("volume_create", True,
*(self._c.InvokeMethod(
'CreateOrModifyElementFromStoragePool',
scs.path, **in_params)))
def _poll(self, msg, job):
if job:
while True:
(s, percent, i) = self.job_status(job)
if s == JobStatus.INPROGRESS:
time.sleep(0.25)
elif s == JobStatus.COMPLETE:
self.job_free(job)
return i
else:
raise LsmError(
ErrorNumber.PLUGIN_ERROR,
msg + ", job error code= " + str(s))
def _detach(self, vol, sync):
rs = self._get_class_instance("CIM_ReplicationService", 'SystemName',
vol.system_id, True)
if rs:
in_params = {'Operation': pywbem.Uint16(8),
'Synchronization': sync.path}
job_id = self._pi("_detach", False,
*(self._c.InvokeMethod(
'ModifyReplicaSynchronization', rs.path,
**in_params)))[0]
self._poll("ModifyReplicaSynchronization, detach", job_id)
def _cim_name_match(self, a, b):
if a['DeviceID'] == b['DeviceID'] \
and a['SystemName'] == b['SystemName'] \
and a['SystemCreationClassName'] == \
b['SystemCreationClassName']:
return True
else:
return False
def _check_volume_associations(self, vol):
"""
Check a volume to see if it has any associations with other
volumes.
"""
lun = self._get_volume(vol.id)
ss = self._c.References(lun.path,
ResultClass='CIM_StorageSynchronized')
lp = lun.path
if len(ss):
for s in ss:
#TODO: Need to see if detach is a supported operation in
# replication capabilities.
#
# TODO: Theory of delete. Some arrays will automatically detach
# a clone, check
# ReplicationServiceCapabilities.GetSupportedFeatures() and
# look for "Synchronized clone target detaches automatically".
# If not automatic then detach manually. However, we have seen
# arrays that don't report detach automatically that don't need
# a detach.
#
# This code needs to be re-investigated to work with a wide
# range of array vendors.
if s[
'SyncState'] == Smis.Synchronized.SyncState.SYNCHRONIZED \
and (s['CopyType'] != Smis.CopyTypes.UNSYNCASSOC):
if 'SyncedElement' in s:
item = s['SyncedElement']
if self._cim_name_match(item, lp):
self._detach(vol, s)
if 'SystemElement' in s:
item = s['SystemElement']
if self._cim_name_match(item, lp):
self._detach(vol, s)
@handle_cim_errors
def volume_delete(self, volume, flags=0):
"""
Delete a volume
"""
scs = self._get_class_instance('CIM_StorageConfigurationService',
'SystemName', volume.system_id)
lun = self._get_volume(volume.id)
self._check_volume_associations(volume)
in_params = {'TheElement': lun.path}
#Delete returns None or Job number
return self._pi("volume_delete", False,
*(self._c.InvokeMethod('ReturnToStoragePool', scs.path,
**in_params)))[0]
@handle_cim_errors
def volume_resize(self, volume, new_size_bytes, flags=0):
"""
Re-size a volume
"""
scs = self._get_class_instance('CIM_StorageConfigurationService',
'SystemName', volume.system_id)
lun = self._get_volume(volume.id)
in_params = {'ElementType': pywbem.Uint16(2),
'TheElement': lun.path,
'Size': pywbem.Uint64(new_size_bytes)}
return self._pi("volume_resize", True,
*(self._c.InvokeMethod(
'CreateOrModifyElementFromStoragePool',
scs.path, **in_params)))
def _get_supported_sync_and_mode(self, system_id, rep_type):
"""
Converts from a library capability to a suitable array capability
returns a tuple (sync, mode)
"""
rc = [None, None]
rs = self._get_class_instance("CIM_ReplicationService", 'SystemName',
system_id, True)
if rs:
rs_cap = self._c.Associators(
rs.path,
AssocClass='CIM_ElementCapabilities',
ResultClass='CIM_ReplicationServiceCapabilities')[0]
s_rt = rs_cap['SupportedReplicationTypes']
if rep_type == Volume.REPLICATE_COPY:
if self.RepSvc.RepTypes.SYNC_CLONE_LOCAL in s_rt:
rc[0] = Smis.SYNC_TYPE_CLONE
rc[1] = Smis.CREATE_ELEMENT_REPLICA_MODE_SYNC
elif self.RepSvc.RepTypes.ASYNC_CLONE_LOCAL in s_rt:
rc[0] = Smis.SYNC_TYPE_CLONE
rc[1] = Smis.CREATE_ELEMENT_REPLICA_MODE_ASYNC
elif rep_type == Volume.REPLICATE_MIRROR_ASYNC:
if self.RepSvc.RepTypes.ASYNC_MIRROR_LOCAL in s_rt:
rc[0] = Smis.SYNC_TYPE_MIRROR
rc[1] = Smis.CREATE_ELEMENT_REPLICA_MODE_ASYNC
elif rep_type == Volume.REPLICATE_MIRROR_SYNC:
if self.RepSvc.RepTypes.SYNC_MIRROR_LOCAL in s_rt:
rc[0] = Smis.SYNC_TYPE_MIRROR
rc[1] = Smis.CREATE_ELEMENT_REPLICA_MODE_SYNC
elif rep_type == Volume.REPLICATE_CLONE \
or rep_type == Volume.REPLICATE_SNAPSHOT:
if self.RepSvc.RepTypes.SYNC_CLONE_LOCAL in s_rt:
rc[0] = Smis.SYNC_TYPE_SNAPSHOT
rc[1] = Smis.CREATE_ELEMENT_REPLICA_MODE_SYNC
elif self.RepSvc.RepTypes.ASYNC_CLONE_LOCAL in s_rt:
rc[0] = Smis.SYNC_TYPE_SNAPSHOT
rc[1] = Smis.CREATE_ELEMENT_REPLICA_MODE_ASYNC
if rc[0] is None:
raise LsmError(ErrorNumber.NO_SUPPORT,
"Replication type not supported")
return tuple(rc)
@handle_cim_errors
def volume_replicate(self, pool, rep_type, volume_src, name, flags=0):
"""
Replicate a volume
"""
if rep_type == Volume.REPLICATE_MIRROR_ASYNC \
or rep_type == Volume.REPLICATE_MIRROR_SYNC:
raise LsmError(ErrorNumber.NO_SUPPORT, "Mirroring not supported")
rs = self._get_class_instance("CIM_ReplicationService", 'SystemName',
volume_src.system_id, True)
if pool is not None:
cim_pool = self._get_pool(pool.id)
else:
cim_pool = None
lun = self._get_volume(volume_src.id)
if rs:
method = 'CreateElementReplica'
sync, mode = self._get_supported_sync_and_mode(volume_src.system_id,
rep_type)
in_params = {'ElementName': name,
'SyncType': pywbem.Uint16(sync),
'Mode': pywbem.Uint16(mode),
'SourceElement': lun.path,
'WaitForCopyState':
pywbem.Uint16(Smis.CopyStates.SYNCHRONIZED)}
else:
#Check for older support via storage configuration service
method = 'CreateReplica'
#Check for storage configuration service
rs = self._get_class_instance("CIM_StorageConfigurationService",
'SystemName', volume_src.system_id,
True)
ct = Volume.REPLICATE_CLONE
if rep_type == Volume.REPLICATE_CLONE:
ct = Smis.CopyTypes.UNSYNCASSOC
elif rep_type == Volume.REPLICATE_COPY:
ct = Smis.CopyTypes.UNSYNCUNASSOC
elif rep_type == Volume.REPLICATE_MIRROR_ASYNC:
ct = Smis.CopyTypes.ASYNC
elif rep_type == Volume.REPLICATE_MIRROR_SYNC:
ct = Smis.CopyTypes.SYNC
in_params = {'ElementName': name,
'CopyType': pywbem.Uint16(ct),
'SourceElement': lun.path}
if rs:
if cim_pool is not None:
in_params['TargetPool'] = cim_pool.path
return self._pi("volume_replicate", True,
*(self._c.InvokeMethod(method,
rs.path, **in_params)))
raise LsmError(ErrorNumber.NO_SUPPORT, "volume-replicate not supported")
def volume_replicate_range_block_size(self, system, flags=0):
raise LsmError(ErrorNumber.NO_SUPPORT, "Not supported")
def volume_replicate_range(self, rep_type, volume_src, volume_dest, ranges,
flags=0):
raise LsmError(ErrorNumber.NO_SUPPORT, "Not supported")
@handle_cim_errors
def volume_online(self, volume, flags=0):
return None
@handle_cim_errors
def volume_offline(self, volume, flags=0):
return None
@handle_cim_errors
def _initiator_create(self, name, init_id, id_type):
"""
Create initiator object
"""
hardware = self._get_class_instance(
'CIM_StorageHardwareIDManagementService')
in_params = {'ElementName': name,
'StorageID': init_id,
'IDType': pywbem.Uint16(id_type)}
(rc, out) = self._c.InvokeMethod('CreateStorageHardwareID',
hardware.path, **in_params)
if not rc:
init = self._get_class_instance('CIM_StorageHardwareID',
'StorageID', init_id)
return Smis._to_init(init)
raise LsmError(ErrorNumber.PLUGIN_ERROR, 'Error: ' + str(rc) +
' on initiator_create!')
@handle_cim_errors
def access_group_grant(self, group, volume, access, flags=0):
"""
Grant access to a volume to an group
"""
ccs = self._get_class_instance('CIM_ControllerConfigurationService',
'SystemName', group.system_id)
lun = self._get_volume(volume.id)
spc = self._get_access_group(group.id)
if not lun:
raise LsmError(ErrorNumber.NOT_FOUND_VOLUME, "Volume not present")
if not spc:
raise LsmError(ErrorNumber.NOT_FOUND_ACCESS_GROUP,
"Access group not present")
if access == Volume.ACCESS_READ_ONLY:
da = Smis.EXPOSE_PATHS_DA_READ_ONLY
else:
da = Smis.EXPOSE_PATHS_DA_READ_WRITE
in_params = {'LUNames': [lun['Name']],
'ProtocolControllers': [spc.path],
'DeviceAccesses': [pywbem.Uint16(da)]}
#Returns None or job id
return self._pi("access_grant", False,
*(self._c.InvokeMethod('ExposePaths', ccs.path,
**in_params)))[0]
def _wait(self, job):
status = self.job_status(job)[0]
while JobStatus.COMPLETE != status:
time.wait(0.5)
status = self.job_status(job)[0]
if JobStatus.COMPLETE != status:
raise LsmError(ErrorNumber.PLUGIN_ERROR, "Expected no errors %s %s"
% (job, str(status)))
@handle_cim_errors
def access_group_revoke(self, group, volume, flags=0):
ccs = self._get_class_instance('CIM_ControllerConfigurationService',
'SystemName', volume.system_id)
lun = self._get_volume(volume.id)
spc = self._get_access_group(group.id)
if not lun:
raise LsmError(ErrorNumber.NOT_FOUND_VOLUME, "Volume not present")
if not spc:
raise LsmError(ErrorNumber.NOT_FOUND_ACCESS_GROUP,
"Access group not present")
hide_params = {'LUNames': [lun['Name']],
'ProtocolControllers': [spc.path]}
return self._pi("HidePaths", False,
*(self._c.InvokeMethod('HidePaths', ccs.path,
**hide_params)))[0]
def _is_access_group(self, s):
rc = False
#This seems horribly wrong for something that is a standard.
if 'Name' in s and s['Name'] == 'Storage Group':
#EMC
rc = True
elif 'DeviceID' in s and s['DeviceID'][0:3] == 'SPC':
#NetApp
rc = True
return rc
def _get_access_groups(self):
rc = []
#System filtering
if self.system_list:
systems = self._systems()
for s in systems:
spc = self._c.Associators(
s.path,
AssocClass='CIM_SystemDevice',
ResultClass='CIM_SCSIProtocolController')
for s in spc:
if self._is_access_group(s):
rc.append(s)
else:
spc = self._c.EnumerateInstances('CIM_SCSIProtocolController')
for s in spc:
if self._is_access_group(s):
rc.append(s)
return rc
def _get_access_group(self, ag_id):
groups = self._get_access_groups()
for g in groups:
if g['DeviceID'] == ag_id:
return g
return None
def _get_initiators_in_group(self, group, field=None):
rc = []
ap = self._c.Associators(group.path, AssocClass='CIM_AuthorizedTarget')
if len(ap):
for a in ap:
inits = self._c.Associators(a.path,
AssocClass='CIM_AuthorizedSubject')
for i in inits:
if field is None:
rc.append(i)
else:
rc.append(i[field])
return rc
@handle_cim_errors
def volumes_accessible_by_access_group(self, group, flags=0):
g = self._get_class_instance('CIM_SCSIProtocolController', 'DeviceID',
group.id)
if g:
logical_units = self._c.Associators(
g.path, AssocClass='CIM_ProtocolControllerForUnit')
return [self._new_vol(v) for v in logical_units]
else:
raise LsmError(ErrorNumber.PLUGIN_ERROR,
'Error: access group %s does not exist!' % group.id)
@handle_cim_errors
def access_groups_granted_to_volume(self, volume, flags=0):
vol = self._get_volume(volume.id)
if vol:
access_groups = self._c.Associators(
vol.path,
AssocClass='CIM_ProtocolControllerForUnit')
return [self._new_access_group(g) for g in access_groups]
else:
raise LsmError(ErrorNumber.PLUGIN_ERROR,
'Error: access group %s does not exist!' % volume.id)
@handle_cim_errors
def access_group_list(self, flags=0):
groups = self._get_access_groups()
return [self._new_access_group(g) for g in groups]
@handle_cim_errors
def access_group_create(self, name, initiator_id, id_type, system_id,
flags=0):
#page 880 1.5 spec. CreateMaskingView
#
# No access to a provider that implements this at this time,
# so unable to develop and test.
raise LsmError(ErrorNumber.NO_SUPPORT, "Not supported")
@handle_cim_errors
def access_group_del(self, group, flags=0):
#page 880 1.5 spec. DeleteMaskingView
#
# No access to a provider that implements this at this time,
# so unable to develop and test.
raise LsmError(ErrorNumber.NO_SUPPORT, "Not supported")
def _initiator_lookup(self, initiator_id):
"""
Looks up an initiator by initiator id
returns None or object instance
"""
init_list = self.initiators()
initiator = None
for i in init_list:
if i.id == initiator_id:
initiator = i
break
return initiator
@handle_cim_errors
def access_group_add_initiator(self, group, initiator_id, id_type,
flags=0):
#Check to see if we have this initiator already, if we don't create it
#and then add to the view.
spc = self._get_access_group(group.id)
initiator = self._initiator_lookup(initiator_id)
if not initiator:
initiator = self._initiator_create(initiator_id, initiator_id,
id_type)
ccs = self._get_class_instance('CIM_ControllerConfigurationService',
'SystemName', group.system_id)
in_params = {'InitiatorPortIDs': [initiator.id],
'ProtocolControllers': [spc.path]}
#Returns None or job id
return self._pi("access_group_add_initiator", False,
*(self._c.InvokeMethod('ExposePaths', ccs.path,
**in_params)))[0]
@handle_cim_errors
def access_group_del_initiator(self, group, initiator, flags=0):
spc = self._get_access_group(group.id)
ccs = self._get_class_instance('CIM_ControllerConfigurationService',
'SystemName', group.system_id)
hide_params = {'InitiatorPortIDs': [initiator],
'ProtocolControllers': [spc.path]}
return self._pi("HidePaths", False,
*(self._c.InvokeMethod('HidePaths', ccs.path,
**hide_params)))[0]
@handle_cim_errors
def iscsi_chap_auth(self, initiator, in_user, in_password, out_user,
out_password, flags):
raise LsmError(ErrorNumber.NO_SUPPORT, "Not supported")
@handle_cim_errors
def initiator_grant(self, initiator_id, initiator_type, volume, access,
flags=0):
raise LsmError(ErrorNumber.NO_SUPPORT, "Not supported")
@handle_cim_errors
def initiator_revoke(self, initiator, volume, flags=0):
raise LsmError(ErrorNumber.NO_SUPPORT, "Not supported")
@handle_cim_errors
def volumes_accessible_by_initiator(self, initiator, flags=0):
raise LsmError(ErrorNumber.NO_SUPPORT, "Not supported")
@handle_cim_errors
def initiators_granted_to_volume(self, volume, flags=0):
raise LsmError(ErrorNumber.NO_SUPPORT, "Not supported")
@handle_cim_errors
def job_free(self, job_id, flags=0):
"""
Frees the resources given a job number.
"""
concrete_job = self._get_job_details(job_id)[0]
#See if we should delete the job
if not concrete_job['DeleteOnCompletion']:
try:
self._c.DeleteInstance(concrete_job.path)
except CIMError:
pass
def volume_child_dependency(self, volume, flags=0):
raise LsmError(ErrorNumber.NO_SUPPORT, "Not supported")
def volume_child_dependency_rm(self, volume, flags=0):
raise LsmError(ErrorNumber.NO_SUPPORT, "Not supported")
|