53f7ec03f2
Change-Id: Ic326d7bc06577d65cbf24ac247d1ebbc9ce79ec2 Implements: blueprint higgins-api
334 lines
10 KiB
Python
334 lines
10 KiB
Python
# Copyright 2013 - Red Hat, Inc.
|
|
#
|
|
# 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.
|
|
|
|
"""Higgins base exception handling.
|
|
|
|
Includes decorator for re-raising Higgins-type exceptions.
|
|
|
|
"""
|
|
|
|
import functools
|
|
import sys
|
|
import uuid
|
|
|
|
from keystoneclient import exceptions as keystone_exceptions
|
|
from oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
from oslo_utils import excutils
|
|
import pecan
|
|
import six
|
|
import wsme
|
|
|
|
from higgins.common.i18n import _
|
|
from higgins.common.i18n import _LE
|
|
from higgins.common import safe_utils
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
CONF = cfg.CONF
|
|
|
|
try:
|
|
CONF.import_opt('fatal_exception_format_errors',
|
|
'oslo_versionedobjects.exception')
|
|
except cfg.NoSuchOptError as e:
|
|
# Note:work around for higgins run against master branch
|
|
# in devstack gate job, as higgins not branched yet
|
|
# verisonobjects kilo/master different version can
|
|
# cause issue here. As it changed import group. So
|
|
# add here before branch to prevent gate failure.
|
|
# Bug: #1447873
|
|
CONF.import_opt('fatal_exception_format_errors',
|
|
'oslo_versionedobjects.exception',
|
|
group='oslo_versionedobjects')
|
|
|
|
|
|
def wrap_exception(notifier=None, event_type=None):
|
|
"""This decorator wraps a method to catch any exceptions.
|
|
|
|
It logs the exception as well as optionally sending
|
|
it to the notification system.
|
|
"""
|
|
def inner(f):
|
|
def wrapped(self, context, *args, **kw):
|
|
# Don't store self or context in the payload, it now seems to
|
|
# contain confidential information.
|
|
try:
|
|
return f(self, context, *args, **kw)
|
|
except Exception as e:
|
|
with excutils.save_and_reraise_exception():
|
|
if notifier:
|
|
call_dict = safe_utils.getcallargs(f, context,
|
|
*args, **kw)
|
|
payload = dict(exception=e,
|
|
private=dict(args=call_dict)
|
|
)
|
|
|
|
temp_type = event_type
|
|
if not temp_type:
|
|
# If f has multiple decorators, they must use
|
|
# functools.wraps to ensure the name is
|
|
# propagated.
|
|
temp_type = f.__name__
|
|
|
|
notifier.error(context, temp_type, payload)
|
|
|
|
return functools.wraps(f)(wrapped)
|
|
return inner
|
|
|
|
|
|
OBFUSCATED_MSG = _('Your request could not be handled '
|
|
'because of a problem in the server. '
|
|
'Error Correlation id is: %s')
|
|
|
|
|
|
def wrap_controller_exception(func, func_server_error, func_client_error):
|
|
"""This decorator wraps controllers methods to handle exceptions:
|
|
|
|
- if an unhandled Exception or a HigginsException with an error code >=500
|
|
is catched, raise a http 5xx ClientSideError and correlates it with a log
|
|
message
|
|
|
|
- if a HigginsException is catched and its error code is <500, raise a http
|
|
4xx and logs the excp in debug mode
|
|
|
|
"""
|
|
@functools.wraps(func)
|
|
def wrapped(*args, **kw):
|
|
try:
|
|
return func(*args, **kw)
|
|
except Exception as excp:
|
|
if isinstance(excp, HigginsException):
|
|
http_error_code = excp.code
|
|
else:
|
|
http_error_code = 500
|
|
|
|
if http_error_code >= 500:
|
|
# log the error message with its associated
|
|
# correlation id
|
|
log_correlation_id = str(uuid.uuid4())
|
|
LOG.error(_LE("%(correlation_id)s:%(excp)s") %
|
|
{'correlation_id': log_correlation_id,
|
|
'excp': str(excp)})
|
|
# raise a client error with an obfuscated message
|
|
func_server_error(log_correlation_id, http_error_code)
|
|
else:
|
|
# raise a client error the original message
|
|
LOG.debug(excp)
|
|
func_client_error(excp, http_error_code)
|
|
return wrapped
|
|
|
|
|
|
def wrap_wsme_controller_exception(func):
|
|
"""This decorator wraps wsme controllers to handle exceptions."""
|
|
def _func_server_error(log_correlation_id, status_code):
|
|
raise wsme.exc.ClientSideError(
|
|
six.text_type(OBFUSCATED_MSG % log_correlation_id), status_code)
|
|
|
|
def _func_client_error(excp, status_code):
|
|
raise wsme.exc.ClientSideError(six.text_type(excp), status_code)
|
|
|
|
return wrap_controller_exception(func,
|
|
_func_server_error,
|
|
_func_client_error)
|
|
|
|
|
|
def wrap_pecan_controller_exception(func):
|
|
"""This decorator wraps pecan controllers to handle exceptions."""
|
|
def _func_server_error(log_correlation_id, status_code):
|
|
pecan.response.status = status_code
|
|
pecan.response.text = six.text_type(OBFUSCATED_MSG %
|
|
log_correlation_id)
|
|
|
|
def _func_client_error(excp, status_code):
|
|
pecan.response.status = status_code
|
|
pecan.response.text = six.text_type(excp)
|
|
pecan.response.content_type = None
|
|
|
|
return wrap_controller_exception(func,
|
|
_func_server_error,
|
|
_func_client_error)
|
|
|
|
|
|
def wrap_keystone_exception(func):
|
|
"""Wrap keystone exceptions and throw Higgins specific exceptions."""
|
|
@functools.wraps(func)
|
|
def wrapped(*args, **kw):
|
|
try:
|
|
return func(*args, **kw)
|
|
except keystone_exceptions.AuthorizationFailure:
|
|
raise AuthorizationFailure(
|
|
client=func.__name__, message="reason: %s" % sys.exc_info()[1])
|
|
except keystone_exceptions.ClientException:
|
|
raise AuthorizationFailure(
|
|
client=func.__name__,
|
|
message="unexpected keystone client error occurred: %s"
|
|
% sys.exc_info()[1])
|
|
return wrapped
|
|
|
|
|
|
class HigginsException(Exception):
|
|
"""Base Higgins Exception
|
|
|
|
To correctly use this class, inherit from it and define
|
|
a 'message' property. That message will get printf'd
|
|
with the keyword arguments provided to the constructor.
|
|
|
|
"""
|
|
message = _("An unknown exception occurred.")
|
|
code = 500
|
|
|
|
def __init__(self, message=None, **kwargs):
|
|
self.kwargs = kwargs
|
|
|
|
if 'code' not in self.kwargs and hasattr(self, 'code'):
|
|
self.kwargs['code'] = self.code
|
|
|
|
if message:
|
|
self.message = message
|
|
|
|
try:
|
|
self.message = self.message % kwargs
|
|
except Exception as e:
|
|
# kwargs doesn't match a variable in the message
|
|
# log the issue and the kwargs
|
|
LOG.exception(_LE('Exception in string format operation, '
|
|
'kwargs: %s') % kwargs)
|
|
try:
|
|
if CONF.fatal_exception_format_errors:
|
|
raise e
|
|
except cfg.NoSuchOptError:
|
|
if CONF.oslo_versionedobjects.fatal_exception_format_errors:
|
|
raise e
|
|
|
|
super(HigginsException, self).__init__(self.message)
|
|
|
|
def __str__(self):
|
|
if six.PY3:
|
|
return self.message
|
|
return self.message.encode('utf-8')
|
|
|
|
def __unicode__(self):
|
|
return self.message
|
|
|
|
def format_message(self):
|
|
if self.__class__.__name__.endswith('_Remote'):
|
|
return self.args[0]
|
|
else:
|
|
return six.text_type(self)
|
|
|
|
|
|
class ObjectNotFound(HigginsException):
|
|
message = _("The %(name)s %(id)s could not be found.")
|
|
|
|
|
|
class ObjectNotUnique(HigginsException):
|
|
message = _("The %(name)s already exists.")
|
|
|
|
|
|
class ResourceNotFound(ObjectNotFound):
|
|
message = _("The %(name)s resource %(id)s could not be found.")
|
|
code = 404
|
|
|
|
|
|
class ResourceExists(ObjectNotUnique):
|
|
message = _("The %(name)s resource already exists.")
|
|
code = 409
|
|
|
|
|
|
class AuthorizationFailure(HigginsException):
|
|
message = _("%(client)s connection failed. %(message)s")
|
|
|
|
|
|
class UnsupportedObjectError(HigginsException):
|
|
message = _('Unsupported object type %(objtype)s')
|
|
|
|
|
|
class IncompatibleObjectVersion(HigginsException):
|
|
message = _('Version %(objver)s of %(objname)s is not supported')
|
|
|
|
|
|
class OrphanedObjectError(HigginsException):
|
|
message = _('Cannot call %(method)s on orphaned %(objtype)s object')
|
|
|
|
|
|
class Invalid(HigginsException):
|
|
message = _("Unacceptable parameters.")
|
|
code = 400
|
|
|
|
|
|
class InvalidUUID(Invalid):
|
|
message = _("Expected a uuid but received %(uuid)s.")
|
|
|
|
|
|
class InvalidName(Invalid):
|
|
message = _("Expected a name but received %(uuid)s.")
|
|
|
|
|
|
class InvalidDiscoveryURL(Invalid):
|
|
message = _("Received invalid discovery URL '%(discovery_url)s' for "
|
|
"discovery endpoint '%(discovery_endpoint)s'.")
|
|
|
|
|
|
class GetDiscoveryUrlFailed(HigginsException):
|
|
message = _("Failed to get discovery url from '%(discovery_endpoint)s'.")
|
|
|
|
|
|
class InvalidUuidOrName(Invalid):
|
|
message = _("Expected a name or uuid but received %(uuid)s.")
|
|
|
|
|
|
class InvalidIdentity(Invalid):
|
|
message = _("Expected an uuid or int but received %(identity)s.")
|
|
|
|
|
|
class InvalidCsr(Invalid):
|
|
message = _("Received invalid csr %(csr)s.")
|
|
|
|
|
|
class HTTPNotFound(ResourceNotFound):
|
|
pass
|
|
|
|
|
|
class Conflict(HigginsException):
|
|
message = _('Conflict.')
|
|
code = 409
|
|
|
|
|
|
class InvalidState(Conflict):
|
|
message = _("Invalid resource state.")
|
|
|
|
|
|
# Cannot be templated as the error syntax varies.
|
|
# msg needs to be constructed when raised.
|
|
class InvalidParameterValue(Invalid):
|
|
message = _("%(err)s")
|
|
|
|
|
|
class InstanceNotFound(ResourceNotFound):
|
|
message = _("Instance %(instance)s could not be found.")
|
|
|
|
|
|
class PatchError(Invalid):
|
|
message = _("Couldn't apply patch '%(patch)s'. Reason: %(reason)s")
|
|
|
|
|
|
class NotAuthorized(HigginsException):
|
|
message = _("Not authorized.")
|
|
code = 403
|
|
|
|
|
|
class ConfigInvalid(HigginsException):
|
|
message = _("Invalid configuration file. %(error_msg)s")
|