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
|
# Copyright 2014-2015, Tresys Technology, LLC
#
# SPDX-License-Identifier: LGPL-2.1-only
#
from typing import Iterable, Optional
from .mixins import MatchName
from .policyrep import Boolean
from .query import PolicyQuery
class BoolQuery(MatchName, PolicyQuery):
"""Query SELinux policy Booleans.
Parameter:
policy The policy to query.
Keyword Parameters/Class attributes:
name The Boolean name to match.
name_regex If true, regular expression matching
will be used on the Boolean name.
default The default state to match. If this
is None, the default state not be matched.
"""
_default: Optional[bool] = None
@property
def default(self) -> Optional[bool]:
return self._default
@default.setter
def default(self, value) -> None:
if value is None:
self._default = None
else:
self._default = bool(value)
def results(self) -> Iterable[Boolean]:
"""Generator which yields all Booleans matching the criteria."""
self.log.info("Generating Boolean results from {0.policy}".format(self))
self._match_name_debug(self.log)
self.log.debug("Default: {0.default}".format(self))
for boolean in self.policy.bools():
if not self._match_name(boolean):
continue
if self.default is not None and boolean.state != self.default:
continue
yield boolean
|