Some of the resources, like e.g. QoS rules don't have tenant or project_id attribute as they belong to the project to which QoS policy (their parent) belongs to. Because of that we should get project id for such resources from their parent object instead of looking for it in its attributes. Related-Bug: #2022043 Change-Id: I3e6625eb237ad442ab904f59de5c2959d4090700
99 lines
4.0 KiB
Python
99 lines
4.0 KiB
Python
# Copyright (c) 2015 Mirantis, 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 neutron_lib import context
|
|
from neutron_lib.db import api as db_api
|
|
from neutron_lib import exceptions
|
|
from oslo_log import log as logging
|
|
from pecan import hooks
|
|
|
|
from neutron import manager
|
|
from neutron.pecan_wsgi.hooks import utils
|
|
from neutron import quota
|
|
from neutron.quota import resource_registry
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class QuotaEnforcementHook(hooks.PecanHook):
|
|
|
|
priority = 130
|
|
|
|
def before(self, state):
|
|
collection = state.request.context.get('collection')
|
|
resource = state.request.context.get('resource')
|
|
items = state.request.context.get('resources')
|
|
if state.request.method != 'POST' or not resource or not items:
|
|
return
|
|
plugin = manager.NeutronManager.get_plugin_for_resource(collection)
|
|
parent_id = state.request.context.get('parent_id')
|
|
parent_project_id = None
|
|
if parent_id and any(not x.get('tenant_id') for x in items):
|
|
parent_getter = getattr(
|
|
plugin, 'get_%s' % utils.get_controller(state).parent)
|
|
try:
|
|
parent_project_id = parent_getter(
|
|
context.get_admin_context(), parent_id).get('project_id')
|
|
except exceptions.NotFound:
|
|
pass
|
|
# Store requested resource amounts grouping them by tenant
|
|
deltas = collections.Counter(
|
|
map(lambda x: x.get('tenant_id', parent_project_id), items))
|
|
# Perform quota enforcement
|
|
reservations = []
|
|
neutron_context = state.request.context.get('neutron_context')
|
|
for (tenant_id, delta) in deltas.items():
|
|
try:
|
|
reservation = quota.QUOTAS.make_reservation(
|
|
neutron_context,
|
|
tenant_id,
|
|
{resource: delta},
|
|
plugin)
|
|
LOG.debug("Made reservation on behalf of %(tenant_id)s "
|
|
"for: %(delta)s",
|
|
{'tenant_id': tenant_id, 'delta': {resource: delta}})
|
|
if reservation:
|
|
reservations.append(reservation)
|
|
except exceptions.QuotaResourceUnknown as e:
|
|
# Quotas cannot be enforced on this resource
|
|
LOG.debug(e)
|
|
# Save the reservations in the request context so that they can be
|
|
# retrieved in the 'after' hook
|
|
state.request.context['reservations'] = reservations
|
|
|
|
@db_api.retry_db_errors
|
|
def after(self, state):
|
|
neutron_context = state.request.context.get('neutron_context')
|
|
if not neutron_context:
|
|
return
|
|
collection = state.request.context.get('collection')
|
|
resource = state.request.context.get('resource')
|
|
if state.request.method == 'GET' and collection:
|
|
# resync on list operations to preserve behavior of old API
|
|
resource_registry.resync_resource(
|
|
neutron_context, resource, neutron_context.tenant_id)
|
|
# Commit reservation(s)
|
|
reservations = state.request.context.get('reservations') or []
|
|
if not reservations and state.request.method != 'DELETE':
|
|
return
|
|
|
|
# Commit the reservation(s)
|
|
for reservation in reservations:
|
|
quota.QUOTAS.commit_reservation(
|
|
neutron_context, reservation.reservation_id)
|
|
resource_registry.set_resources_dirty(neutron_context)
|