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
|
# Copyright 2017 Red Hat, 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.
import collections
from importlib import resources
import logging
import os
import requests
from sushy import auth as sushy_auth
from sushy import connector as sushy_connector
from sushy import exceptions
from sushy.resources import base
from sushy.resources.certificateservice import certificateservice
from sushy.resources.chassis import chassis
from sushy.resources.compositionservice import compositionservice
from sushy.resources.eventservice import eventservice
from sushy.resources.fabric import fabric
from sushy.resources.manager import manager
from sushy.resources.registry import message_registry
from sushy.resources.registry import message_registry_file
from sushy.resources.sessionservice import session
from sushy.resources.sessionservice import sessionservice
from sushy.resources.system import system
from sushy.resources.taskservice import taskservice
from sushy.resources.updateservice import updateservice
from sushy import taskmonitor
from sushy import utils
LOG = logging.getLogger(__name__)
STANDARD_REGISTRY_PATH = 'standard_registries'
class ProtocolFeaturesSupportedField(base.CompositeField):
excerpt_query = base.Field('ExcerptQuery')
"""The excerpt query parameter is supported"""
expand_query = base.Field('ExpandQuery')
"""The expand query parameter is supported"""
filter_query = base.Field('FilterQuery')
"""The filter query parameter is supported"""
only_member_query = base.Field('OnlyMemberQuery')
"""The only query parameter is supported"""
select_query = base.Field('SelectQuery')
"""The select query parameter is supported"""
class LazyRegistries(collections.abc.MutableMapping):
"""Download registries on demand.
Redfish message registries can be very large. On top of that,
they are not used frequently. Thus, let's not pull them off
the BMC unless the consumer is actually trying to use them.
:param service_root: Redfish service root object
:type service_root: sushy.main.Sushy
"""
def __init__(self, service_root):
self._service_root = service_root
self._registries = None
def __getitem__(self, key):
registries = self.registries
return registries[key]
def __setitem__(self, key, value):
registries = self.registries
registries[key] = value
def __delitem__(self, key):
registries = self.registries
del registries[key]
def __iter__(self):
registries = self.registries
return iter(registries or ())
def __len__(self):
registries = self.registries
return len(registries)
@property
def registries(self):
if self._registries is None:
self._registries = self._service_root.registries
return self._registries
class Sushy(base.ResourceBase):
identity = base.Field('Id', required=True)
"""The Redfish root service identity"""
name = base.Field('Name')
"""The Redfish root service name"""
uuid = base.Field('UUID')
"""The Redfish root service UUID"""
product = base.Field('Product')
"""The product associated with this Redfish service"""
protocol_features_supported = ProtocolFeaturesSupportedField(
'ProtocolFeaturesSupported')
"""The information about protocol features supported by the service"""
_composition_service_path = base.Field(
['CompositionService', '@odata.id'])
"""CompositionService path"""
_systems_path = base.Field(['Systems', '@odata.id'])
"""SystemCollection path"""
_managers_path = base.Field(['Managers', '@odata.id'])
"""ManagerCollection path"""
_chassis_path = base.Field(['Chassis', '@odata.id'])
"""ChassisCollection path"""
_fabrics_path = base.Field(['Fabrics', '@odata.id'])
"""FabricCollection path"""
_session_service_path = base.Field(['SessionService', '@odata.id'])
"""SessionService path"""
_registries_path = base.Field(['Registries', '@odata.id'])
"""Registries path"""
_update_service_path = base.Field(['UpdateService', '@odata.id'])
"""UpdateService path"""
_event_service_path = base.Field(['EventService', '@odata.id'])
"""EventService path"""
_certificate_service_path = base.Field(['CertificateService', '@odata.id'])
"""CertificateService path"""
def __init__(self, base_url, username=None, password=None,
root_prefix='/redfish/v1/', verify=True,
auth=None, connector=None,
public_connector=None,
language='en', server_side_retries=10,
server_side_retries_delay=3):
"""A class representing a RootService
:param base_url: The base URL to the Redfish controller. It
should include scheme and authority portion of the URL. For
example: https://mgmt.vendor.com
:param username: User account with admin/server-profile access
privilege
:param password: User account password
:param root_prefix: The default URL prefix. This part includes
the root service and version. Defaults to /redfish/v1
:param verify: Either a boolean value, a path to a CA_BUNDLE
file or directory with certificates of trusted CAs. If set to
True the driver will verify the host certificates; if False
the driver will ignore verifying the SSL certificate; if it's
a path the driver will use the specified certificate or one of
the certificates in the directory. Defaults to True.
:param auth: An authentication mechanism to utilize.
:param connector: A user-defined connector object. Defaults to None.
:param public_connector: A user-defined connector to use for requests
on the Internet, e.g., for Message Registries. Defaults to None.
:param language: RFC 5646 language code for Message Registries.
Defaults to 'en'.
:param server_side_retries: Number of times to retry GET requests in
case of server side errors. Defaults to 10.
:param server_side_retries_delay: Time in seconds between retries of
GET requests in case of server side errors. Defaults to 3.
"""
self._root_prefix = root_prefix
if (auth is not None and (password is not None
or username is not None)):
msg = ('Username or Password were provided to Sushy '
'when an authentication mechanism was specified.')
raise ValueError(msg)
if auth is None:
auth = sushy_auth.SessionOrBasicAuth(username=username,
password=password)
self._auth = auth
super().__init__(
connector or sushy_connector.Connector(
base_url, verify=verify,
server_side_retries=server_side_retries,
server_side_retries_delay=server_side_retries_delay),
path=self._root_prefix)
self._public_connector = public_connector or requests
self._language = language
self._base_url = base_url
self._auth.set_context(self, self._conn)
self._auth.authenticate()
def __del__(self):
if self._auth:
try:
self._auth.close()
except Exception as ex:
LOG.warning('Ignoring error while closing Redfish session '
'with %s: %s', self._base_url, ex)
self._auth = None
def _parse_attributes(self, json_doc):
"""Parse the attributes of a resource.
Parsed JSON fields are set to `self` as declared in the class.
:param json_doc: parsed JSON document in form of Python types
"""
super()._parse_attributes(json_doc)
self.redfish_version = json_doc.get('RedfishVersion')
def get_system_collection(self):
"""Get the SystemCollection object
:raises: MissingAttributeError, if the collection attribute is
not found
:returns: a SystemCollection object
"""
if not self._systems_path:
raise exceptions.MissingAttributeError(
attribute='Systems/@odata.id', resource=self._path)
return system.SystemCollection(
self._conn, self._systems_path,
redfish_version=self.redfish_version,
registries=self.lazy_registries, root=self)
def get_system(self, identity=None):
"""Given the identity return a System object
:param identity: The identity of the System resource. If not given,
sushy will default to the single available System or fail
if there appear to be more or less then one System listed.
:raises: `UnknownDefaultError` if default system can't be determined.
:returns: The System object
"""
if identity is None:
systems_collection = self.get_system_collection()
listed_systems = systems_collection.get_members()
if len(listed_systems) != 1:
raise exceptions.UnknownDefaultError(
entity='ComputerSystem',
error='System count is not exactly one')
identity = listed_systems[0].path
return system.System(self._conn, identity,
redfish_version=self.redfish_version,
registries=self.lazy_registries, root=self)
def get_chassis_collection(self):
"""Get the ChassisCollection object
:raises: MissingAttributeError, if the collection attribute is
not found
:returns: a ChassisCollection object
"""
if not self._chassis_path:
raise exceptions.MissingAttributeError(
attribute='Chassis/@odata.id', resource=self._path)
return chassis.ChassisCollection(self._conn, self._chassis_path,
redfish_version=self.redfish_version,
registries=self.lazy_registries,
root=self)
def get_chassis(self, identity=None):
"""Given the identity return a Chassis object
:param identity: The identity of the Chassis resource. If not given,
sushy will default to the single available chassis or fail
if there appear to be more or less then one Chassis listed.
:raises: `UnknownDefaultError` if default system can't be determined.
:returns: The Chassis object
"""
if identity is None:
chassis_collection = self.get_chassis_collection()
listed_chassis = chassis_collection.get_members()
if len(listed_chassis) != 1:
raise exceptions.UnknownDefaultError(
entity='Chassis',
error='Chassis count is not exactly one')
identity = listed_chassis[0].path
return chassis.Chassis(self._conn, identity,
redfish_version=self.redfish_version,
registries=self.lazy_registries, root=self)
def get_fabric_collection(self):
"""Get the FabricCollection object
:raises: MissingAttributeError, if the collection attribute is
not found
:returns: a FabricCollection object
"""
if not self._fabrics_path:
raise exceptions.MissingAttributeError(
attribute='Fabrics/@odata.id', resource=self._path)
return fabric.FabricCollection(self._conn, self._fabrics_path,
redfish_version=self.redfish_version,
registries=self.lazy_registries,
root=self)
def get_fabric(self, identity):
"""Given the identity return a Fabric object
:param identity: The identity of the Fabric resource
:returns: The Fabric object
"""
return fabric.Fabric(self._conn, identity,
redfish_version=self.redfish_version,
registries=self.lazy_registries, root=self)
def get_manager_collection(self):
"""Get the ManagerCollection object
:raises: MissingAttributeError, if the collection attribute is
not found
:returns: a ManagerCollection object
"""
if not self._managers_path:
raise exceptions.MissingAttributeError(
attribute='Managers/@odata.id', resource=self._path)
return manager.ManagerCollection(self._conn, self._managers_path,
redfish_version=self.redfish_version,
registries=self.lazy_registries,
root=self)
def get_manager(self, identity=None):
"""Given the identity return a Manager object
:param identity: The identity of the Manager resource. If not given,
sushy will default to the single available Manager or fail
if there appear to be more or less then one Manager listed.
:returns: The Manager object
"""
if identity is None:
managers_collection = self.get_manager_collection()
listed_managers = managers_collection.get_members()
if len(listed_managers) != 1:
raise exceptions.UnknownDefaultError(
entity='Manager',
error='Manager count is not exactly one')
identity = listed_managers[0].path
return manager.Manager(self._conn, identity,
redfish_version=self.redfish_version,
registries=self.lazy_registries, root=self)
def get_session_service(self):
"""Get the SessionService object
:raises: MissingAttributeError, if the collection attribute is
not found
:returns: as SessionCollection object
"""
if not self._session_service_path:
raise exceptions.MissingAttributeError(
attribute='SessionService/@odata.id', resource=self._path)
return sessionservice.SessionService(
self._conn, self._session_service_path,
redfish_version=self.redfish_version, root=self)
def get_sessions_path(self):
"""Returns the Sessions url"""
# NOTE(TheJulia): This method is the standard discovery method
# advised by the DMTF DSP0266 standard to find the session service.
try:
links_url = self.json.get('Links')
sessions_uri = links_url['Sessions']['@odata.id']
# Save the session URL for post detection and prevention
# of recursive authentication attempts.
self._conn._sessions_uri = sessions_uri
return sessions_uri
except (TypeError, KeyError):
raise exceptions.MissingAttributeError(
attribute='Links/Sessions/@data.id', resource=self.path)
def get_session(self, identity):
"""Given the identity return a Session object
:param identity: The identity of the session resource
:returns: The Session object
"""
return session.Session(
self._conn, identity,
redfish_version=self.redfish_version,
registries=self.lazy_registries, root=self)
def create_session(self, username=None, password=None):
"""Creates a session without invoking SessionService.
For use when a new connection is to be established. Removes prior
Session and authentication data before making the request.
:param username: The username to utilize to create a session with the
remote endpoint.
:param password: The password to utilize to create a session with the
remote endpoint.
:returns: A session key and uri in the form of a tuple
:raises: MissingXAuthToken
:raises: ConnectionError
:raises: AccessError
:raises: HTTPError
:raises: MissingAttributeError
"""
# Explicitly removes in-client session data to proceed. This prevents
# AccessErrors as prior authentication shouldn't be submitted with a
# new authentication attempt, and doing so with old/invalid session
# data can result in an AccessError being raised.
self._conn._session.auth = None
if 'X-Auth-Token' in self._conn._session.headers:
# Delete the token value that was saved to the session
# as otherwise we would end up with a dictionary containing
# a {'X-Auth-Token': null} being sent across to the remote
# bmc.
del self._conn._session.headers['X-Auth-Token']
try:
session_service_path = self.get_sessions_path()
except (exceptions.MissingAttributeError, exceptions.AccessError):
# Guesses path based upon DMTF standard, in the event
# the links resource on the service root is incorrect.
session_service_path = os.path.join(self._path,
'SessionService/Sessions')
LOG.warning('Could not discover the Session service path, '
'falling back to %s.',
session_service_path)
session_url = self._root_prefix + 'SessionService/Sessions'
self._conn._sessions_uri = session_url
data = {'UserName': username, 'Password': password}
LOG.debug("Requesting new session from %s.",
session_service_path)
rsp = self._conn.post(session_service_path, data=data)
session_key = rsp.headers.get('X-Auth-Token')
if session_key is None:
raise exceptions.MissingXAuthToken(
method='POST', url=session_service_path, response=rsp)
session_uri = rsp.headers.get('Location')
if session_uri is None:
try:
body = rsp.json()
session_uri = body.get("@odata.id")
except ValueError: # JSON decoding failed
pass
if session_uri is None:
LOG.warning("Received X-Auth-Token but NO session uri.")
return session_key, session_uri
def get_update_service(self):
"""Get the UpdateService object
:returns: The UpdateService object
"""
if not self._update_service_path:
raise exceptions.MissingAttributeError(
attribute='UpdateService/@odata.id', resource=self._path)
return updateservice.UpdateService(
self._conn, self._update_service_path,
redfish_version=self.redfish_version,
registries=self.lazy_registries, root=self)
def get_task_service(self):
"""Get the TaskService object
:returns: The TaskService object
"""
return taskservice.TaskService(
self._conn, utils.get_sub_resource_path_by(self, 'Tasks'),
redfish_version=self.redfish_version,
registries=self.lazy_registries, root=self)
def _get_registry_collection(self):
"""Get MessageRegistryFileCollection object
This resource is optional and can be empty.
:returns: MessageRegistryFileCollection object
or None if Registries not provided
"""
if self._registries_path:
return message_registry_file.MessageRegistryFileCollection(
self._conn,
self._registries_path,
redfish_version=self.redfish_version, root=self)
def get_composition_service(self):
"""Get the CompositionService object
:raises: MissingAttributeError, if the composition service
attribute is not found
:returns: The CompositionService object
"""
if not self._composition_service_path:
raise exceptions.MissingAttributeError(
attribute='CompositionService/@odata.id',
resource=self._path)
return compositionservice.CompositionService(
self._conn, self._composition_service_path,
redfish_version=self.redfish_version,
registries=self.lazy_registries, root=self)
def get_certificate_service(self):
"""Get the CertificateService object
:returns: The CertificateService object
"""
if not self._certificate_service_path:
raise exceptions.MissingAttributeError(
attribute='CertificateService/@odata.id',
resource=self._path)
return certificateservice.CertificateService(
self._conn, self._certificate_service_path,
redfish_version=self.redfish_version,
registries=self.lazy_registries, root=self)
def get_event_service(self):
"""Get the EventService object
:raises: MissingAttributeError, if the EventService is not found
:returns: The EventService object
"""
if not self._event_service_path:
raise exceptions.MissingAttributeError(
attribute='EventService/@odata.id',
resource=self._path)
return eventservice.EventService(
self._conn, self._event_service_path,
redfish_version=self.redfish_version,
registries=self.lazy_registries, root=self)
def _get_standard_message_registry_collection(self):
"""Load packaged standard message registries
:returns: list of MessageRegistry
"""
return [
message_registry.MessageRegistry(
None,
os.path.join(STANDARD_REGISTRY_PATH, json_file.name),
reader=base.JsonPackagedFileReader(__package__),
)
for json_file in resources.files(__package__)
.joinpath(STANDARD_REGISTRY_PATH)
.iterdir()
if json_file.is_file()
]
@property
@utils.cache_it
def registries(self):
"""Gets and combines all registries together
Fetches all registries if any provided by Redfish service
and combines together with packaged standard registries.
Both message and attribute registries are supported from
the Redfish service.
:returns: dict of combined registries keyed by both the
registry name (Registry_name.Major_version.Minor_version) and the
registry file identity, with the value being the actual
registry itself.
"""
standard = self._get_standard_message_registry_collection()
registries = {r.registry_prefix + '.'
+ r.registry_version.rsplit('.', 1)[0]: r
for r in standard if r.language == self._language}
registry_col = self._get_registry_collection()
endpoint_registries = {}
if registry_col:
provided = registry_col.get_members()
for r in provided:
# Check for Message and Attribute registries
registry = r.get_message_registry(
self._language,
self._public_connector)
if not registry:
registry = r.get_attribute_registry(
self._language,
self._public_connector)
if registry:
endpoint_registries[r.registry] = registry
endpoint_registries.setdefault(r.identity, registry)
if endpoint_registries:
LOG.debug('Found registries for %(id)s: %(reg)s',
{'id': self.identity,
'reg': ', '.join(endpoint_registries)})
registries.update(endpoint_registries)
else:
LOG.debug('No registries are available for %s', self.identity)
return registries
@property
def lazy_registries(self):
"""Gets and combines all message registries together
Fetches all registries if any provided by Redfish service
and combines together with packaged standard registries.
:returns: dict of combined message registries where key is
Registry_name.Major_version.Minor_version and value is registry
itself.
"""
return LazyRegistries(self)
def get_task_monitor(self, task_monitor_uri):
"""Used to retrieve a TaskMonitor by task monitor URI.
:param task_monitor_uri: Task monitor URI
:returns: A task monitor.
"""
return taskmonitor.TaskMonitor(
self._conn,
task_monitor_uri,
redfish_version=self.redfish_version,
registries=self.registries)
|