41a1c8d05f
Custom backends will want to provide their own authentication mechanisms instead of using the Keystone token or EC2-like systems we have in place. This adds a new middleware and paste pipeline for the custom backend that will skip the normal authentication and queries the backend's `authenticated(context)` method instead. Since the backend is connected to the Engine whereas the auth middleware is run in the API service (which may sit on a separate box and have no access to the engine config or the custom backend itself), we add a new RPC call that lets API verify the passed credentials. Change-Id: I2fc4a19564b1e410adb79bd9266f6b6da07dd6c9 Signed-off-by: Tomas Sedovic <tomas@sedovic.cz>
72 lines
2.0 KiB
Python
72 lines
2.0 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright (C) 2012, 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.
|
|
|
|
"""
|
|
Middleware for authenticating against custom backends.
|
|
"""
|
|
|
|
import logging
|
|
|
|
from heat.openstack.common import local
|
|
from heat.rpc import client as rpc_client
|
|
import webob.exc
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class AuthProtocol(object):
|
|
def __init__(self, app, conf):
|
|
self.conf = conf
|
|
self.app = app
|
|
|
|
def __call__(self, env, start_response):
|
|
"""
|
|
Handle incoming request.
|
|
|
|
Authenticate send downstream on success. Reject request if
|
|
we can't authenticate.
|
|
"""
|
|
LOG.debug('Authenticating user token')
|
|
context = local.store.context
|
|
engine = rpc_client.EngineClient()
|
|
authenticated = engine.authenticated_to_backend(context)
|
|
if authenticated:
|
|
return self.app(env, start_response)
|
|
else:
|
|
return self._reject_request(env, start_response)
|
|
|
|
def _reject_request(self, env, start_response):
|
|
"""
|
|
Redirect client to auth server.
|
|
|
|
:param env: wsgi request environment
|
|
:param start_response: wsgi response callback
|
|
:returns HTTPUnauthorized http response
|
|
"""
|
|
resp = webob.exc.HTTPUnauthorized("Backend authentication failed", [])
|
|
return resp(env, start_response)
|
|
|
|
|
|
def filter_factory(global_conf, **local_conf):
|
|
conf = global_conf.copy()
|
|
conf.update(local_conf)
|
|
|
|
def auth_filter(app):
|
|
return AuthProtocol(app, conf)
|
|
return auth_filter
|