2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-24 11:07:19 +00:00

134 lines
4.7 KiB
Python
Raw Normal View History

# ----------------------------------------------------------------------
# Copyright (C) 2013 Kshitij Gupta <kgupta8592@gmail.com>
# Copyright (C) 2020 Christian Boltz <apparmor@cboltz.de>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of version 2 of the GNU General Public
# License as published by the Free Software Foundation.
#
# This program 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 General Public License for more details.
#
# ----------------------------------------------------------------------
2022-06-28 21:08:50 -04:00
from apparmor.common import AppArmorBug, AppArmorException
from apparmor.regex import RE_PROFILE_BOOLEAN
from apparmor.rule import BaseRule, BaseRuleset, parse_comment
from apparmor.translations import init_translation
_ = init_translation()
class BooleanRule(BaseRule):
"""Class to handle and store a single variable rule"""
rule_name = 'boolean'
def __init__(self, varname, value, audit=False, deny=False, allow_keyword=False,
comment='', log_event=None):
2022-06-28 21:08:50 -04:00
super().__init__(audit=audit, deny=deny, allow_keyword=allow_keyword,
comment=comment, log_event=log_event)
# boolean variables don't support audit or deny
if audit:
raise AppArmorBug('Attempt to initialize %s with audit flag' % self.__class__.__name__)
if deny:
raise AppArmorBug('Attempt to initialize %s with deny flag' % self.__class__.__name__)
2022-06-28 21:08:50 -04:00
if type(varname) is not str:
raise AppArmorBug('Passed unknown type for boolean variable to %s: %s' % (self.__class__.__name__, varname))
if not varname.startswith('$'):
raise AppArmorException("Passed invalid boolean to %s (doesn't start with '$'): %s" % (self.__class__.__name__, varname))
2022-06-28 21:08:50 -04:00
if type(value) is not str:
raise AppArmorBug('Passed unknown type for value to %s: %s' % (self.__class__.__name__, value))
if not value:
raise AppArmorException('Passed empty value to %s: %s' % (self.__class__.__name__, value))
value = value.lower()
if value not in ('true', 'false'):
raise AppArmorException('Passed invalid value to %s: %s' % (self.__class__.__name__, value))
self.varname = varname
self.value = value
@classmethod
def _match(cls, raw_rule):
return RE_PROFILE_BOOLEAN.search(raw_rule)
@classmethod
def _parse(cls, raw_rule):
"""parse raw_rule and return BooleanRule"""
matches = cls._match(raw_rule)
if not matches:
raise AppArmorException(_("Invalid boolean variable rule '%s'") % raw_rule)
comment = parse_comment(matches)
varname = matches.group('varname')
value = matches.group('value')
return BooleanRule(varname, value,
audit=False, deny=False, allow_keyword=False, comment=comment)
def get_clean(self, depth=0):
"""return rule (in clean/default formatting)"""
space = ' ' * depth
return '%s%s = %s' % (space, self.varname, self.value)
def is_covered_localvars(self, other_rule):
"""check if other_rule is covered by this rule object"""
if self.varname != other_rule.varname:
return False
if not self._is_covered_list(self.value, None, set(other_rule.value), None, 'value'):
return False
# still here? -> then it is covered
return True
def is_equal_localvars(self, rule_obj, strict):
"""compare if rule-specific variables are equal"""
if not type(rule_obj) == BooleanRule:
raise AppArmorBug('Passed non-boolean rule: %s' % str(rule_obj))
if self.varname != rule_obj.varname:
return False
if self.value != rule_obj.value:
return False
return True
def logprof_header_localvars(self):
headers = []
return headers + [
_('Boolean Variable'), self.get_clean(),
]
class BooleanRuleset(BaseRuleset):
"""Class to handle and store a collection of variable rules"""
def add(self, rule, cleanup=False):
"""Add boolean variable rule object
If the variable name is already known, raise an exception because re-defining a variable isn't allowed.
"""
for knownrule in self.rules:
if rule.varname == knownrule.varname:
raise AppArmorException(_('Redefining existing variable %(variable)s: %(value)s')
% {'variable': rule.varname, 'value': rule.value})
2022-06-28 21:08:50 -04:00
super().add(rule, cleanup)