mirror of
https://github.com/SELinuxProject/setools
synced 2025-03-21 18:46:28 +00:00
106 lines
3.8 KiB
Python
106 lines
3.8 KiB
Python
# Copyright 2014, Tresys Technology, LLC
|
|
#
|
|
# This file is part of SETools.
|
|
#
|
|
# SETools is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License as
|
|
# published by the Free Software Foundation, either version 2.1 of
|
|
# the License, or (at your option) any later version.
|
|
#
|
|
# SETools is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with SETools. If not, see
|
|
# <http://www.gnu.org/licenses/>.
|
|
#
|
|
import rulequery
|
|
|
|
|
|
class MLSRuleQuery(rulequery.RuleQuery):
|
|
|
|
"""Query MLS rules."""
|
|
|
|
def __init__(self, policy,
|
|
ruletype=[],
|
|
source="", source_indirect=True, source_regex=False,
|
|
target="", target_indirect=True, target_regex=False,
|
|
tclass="", tclass_regex=False):
|
|
"""
|
|
Parameters:
|
|
policy The policy to query.
|
|
ruletype The rule type(s) to match.
|
|
source The name of the source type/attribute to match.
|
|
source_indirect If true, members of an attribute will be
|
|
matched rather than the attribute itself.
|
|
source_regex If true, regular expression matching will
|
|
be used on the source type/attribute.
|
|
Obeys the source_indirect option.
|
|
target The name of the target type/attribute to match.
|
|
target_indirect If true, members of an attribute will be
|
|
matched rather than the attribute itself.
|
|
target_regex If true, regular expression matching will
|
|
be used on the target type/attribute.
|
|
Obeys target_indirect option.
|
|
tclass The object class(es) to match.
|
|
tclass_regex If true, use a regular expression for
|
|
matching the rule's object class.
|
|
"""
|
|
|
|
self.policy = policy
|
|
|
|
self.set_ruletype(ruletype)
|
|
self.set_source(source, indirect=source_indirect, regex=source_regex)
|
|
self.set_target(target, indirect=target_indirect, regex=target_regex)
|
|
self.set_tclass(tclass, regex=tclass_regex)
|
|
|
|
def results(self):
|
|
"""Generator which yields all matching MLS rules."""
|
|
|
|
for r in self.policy.mlsrules():
|
|
#
|
|
# Matching on rule type
|
|
#
|
|
if self.ruletype:
|
|
if not r.ruletype in self.ruletype:
|
|
continue
|
|
|
|
#
|
|
# Matching on source type
|
|
#
|
|
if self.source and not self._match_indirect_regex(
|
|
r.source,
|
|
self.source,
|
|
self.source_indirect,
|
|
self.source_regex,
|
|
self.source_cmp):
|
|
continue
|
|
|
|
#
|
|
# Matching on target type
|
|
#
|
|
if self.target and not self._match_indirect_regex(
|
|
r.target,
|
|
self.target,
|
|
self.target_indirect,
|
|
self.target_regex,
|
|
self.target_cmp):
|
|
continue
|
|
|
|
#
|
|
# Matching on object class
|
|
#
|
|
if self.tclass and not self._match_object_class(
|
|
r.tclass,
|
|
self.tclass,
|
|
self.tclass_regex,
|
|
self.tclass_cmp):
|
|
continue
|
|
|
|
# TODO: something with the range
|
|
|
|
# if we get here, we have matched all available criteria
|
|
yield r
|