Merge "hardware: Add validation for 'cpu_realtime_mask'"

This commit is contained in:
Zuul 2020-06-24 03:16:20 +00:00 committed by Gerrit Code Review
commit 13fd3e323e
3 changed files with 58 additions and 2 deletions

View File

@ -3658,7 +3658,8 @@ class CPURealtimeTestCase(test.NoDBTestCase):
exception.RealtimeMaskNotFoundOrInvalid, exception.RealtimeMaskNotFoundOrInvalid,
hw.vcpus_realtime_topology, flavor, image) hw.vcpus_realtime_topology, flavor, image)
def test_mask_badly_configured(self): def test_invalid_mask_no_rt_cpus(self):
# The mask excludes all vCPUs from being RT
flavor = objects.Flavor(vcpus=3, memory_mb=2048, flavor = objects.Flavor(vcpus=3, memory_mb=2048,
extra_specs={"hw:cpu_realtime_mask": "^0-2"}) extra_specs={"hw:cpu_realtime_mask": "^0-2"})
image = objects.ImageMeta.from_dict({"properties": {}}) image = objects.ImageMeta.from_dict({"properties": {}})
@ -3666,6 +3667,44 @@ class CPURealtimeTestCase(test.NoDBTestCase):
exception.RealtimeMaskNotFoundOrInvalid, exception.RealtimeMaskNotFoundOrInvalid,
hw.vcpus_realtime_topology, flavor, image) hw.vcpus_realtime_topology, flavor, image)
def test_invalid_mask_exclude_out_of_range(self):
# The mask excludes an invalidly high vCPU number.
flavor = objects.Flavor(vcpus=3, memory_mb=2048,
extra_specs={"hw:cpu_realtime_mask": "^3"})
image = objects.ImageMeta.from_dict({"properties": {}})
self.assertRaises(
exception.RealtimeMaskNotFoundOrInvalid,
hw.vcpus_realtime_topology, flavor, image)
def test_explicit_range(self):
# The mask is not just an exclusion mask. This is unexpected but
# the code doesn't prevent it.
flavor = objects.Flavor(vcpus=3, memory_mb=2048,
extra_specs={"hw:cpu_realtime_mask": "0-2,^0"})
image = objects.ImageMeta.from_dict({"properties": {}})
rt = hw.vcpus_realtime_topology(flavor, image)
self.assertEqual({1, 2}, rt)
def test_invalid_mask_no_exclusion_wo_emulator_policy(self):
# The mask has no exclusion and there's no emulator thread policy
# configured
flavor = objects.Flavor(vcpus=3, memory_mb=2048,
extra_specs={"hw:cpu_realtime_mask": "0-2"})
image = objects.ImageMeta.from_dict({"properties": {}})
self.assertRaises(
exception.RealtimeMaskNotFoundOrInvalid,
hw.vcpus_realtime_topology, flavor, image)
def test_invalid_mask_rt_cpus_out_of_range(self):
# The mask is not just an exclusion mask, and the RT range specifies
# an invalid vCPU number.
flavor = objects.Flavor(vcpus=3, memory_mb=2048,
extra_specs={"hw:cpu_realtime_mask": "0-3,^0"})
image = objects.ImageMeta.from_dict({"properties": {}})
self.assertRaises(
exception.RealtimeMaskNotFoundOrInvalid,
hw.vcpus_realtime_topology, flavor, image)
class EmulatorThreadsTestCase(test.NoDBTestCase): class EmulatorThreadsTestCase(test.NoDBTestCase):

View File

@ -1720,10 +1720,21 @@ def vcpus_realtime_topology(
if not mask: if not mask:
raise exception.RealtimeMaskNotFoundOrInvalid() raise exception.RealtimeMaskNotFoundOrInvalid()
vcpus_set = set(range(flavor.vcpus))
vcpus_rt = parse_cpu_spec("0-%d,%s" % (flavor.vcpus - 1, mask)) vcpus_rt = parse_cpu_spec("0-%d,%s" % (flavor.vcpus - 1, mask))
if len(vcpus_rt) < 1:
if not vcpus_rt:
raise exception.RealtimeMaskNotFoundOrInvalid() raise exception.RealtimeMaskNotFoundOrInvalid()
if vcpus_set == vcpus_rt:
raise exception.RealtimeMaskNotFoundOrInvalid()
if not vcpus_rt.issubset(vcpus_set):
msg = _("Realtime policy vCPU(s) mask is configured with RT vCPUs "
"that are not a subset of the vCPUs in the flavor. See "
"hw:cpu_realtime_mask or hw_cpu_realtime_mask")
raise exception.RealtimeMaskNotFoundOrInvalid(msg)
return vcpus_rt return vcpus_rt

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Previously, it was possible to specify values for the
``hw:cpu_realtime_mask`` extra spec that were not within the range of valid
instances cores. This value is now correctly validated.