Commit Graph

28 Commits

Author SHA1 Message Date
Chris PeBenito
8e082f70cf Replace license text in sources with SPDX license indentifiers.
Signed-off-by: Chris PeBenito <pebenito@ieee.org>
2021-11-20 14:12:15 -05:00
Chris PeBenito
36a4d851fa Remove pylint unsubscriptable-object exemptions.
Several class annotations were subscripted but pylint had a bug that did
not handle this. This is now fixed in pylint 2.8+.

Signed-off-by: Chris PeBenito <pebenito@ieee.org>
2021-07-28 13:25:10 -04:00
Chris PeBenito
0a53b5738f TERulesDifference: Remove generic logging in av_diff_template().
Signed-off-by: Chris PeBenito <pebenito@ieee.org>
2020-10-14 10:16:54 -04:00
Chris PeBenito
e82fcadf58 PolicyDifference: Add type annotations.
Includes some minor code changes to fix errors from static type checking.

Disable unsubscriptable-object pylint check on Wrapper subclass
declarations, as this hits the bug described in .

Signed-off-by: Chris PeBenito <pebenito@ieee.org>
2020-10-14 10:16:54 -04:00
Chris PeBenito
2cf807f3e6 TERulesDifference: Clean up unused variables.
Switch dict.items() use to dict.values() since the keys weren't being used.
Also remove an unused parameter in _av_generate_diffs().

Signed-off-by: Chris PeBenito <pebenito@ieee.org>
2020-10-14 10:16:54 -04:00
James Carter
89cad5e1b7 Change how differences in AV rules are generated in sediff
The primary motivation for the change is to correctly handle redundant
rules. Recent changes in the SELinux toolchain added support for an
optimization that removes redundant rules from a policy. These are
conditional rules that are either already specified in unconditional
policy or rules using types that are also specified more generally
through an attribute. Since attributes are always expanded in sediff,
the second type of redundant rules are already effectively removed. But
redundant conditional rules show up as differences when a binary version
of a policy that has been optimized is compared to one that has not been.

A secondary motivation for the change is to reduce memory usage and diff
times. A modern Fedora policy cannot be diffed with a system with less than
32Gb of memory and it takes over four hours to complete.

With this change AV rules are processed by creating a data structure which
consists of nested dictionaries that store BOTH the left and the right
policies. All of the keys are interned strings to save space.

The basic structure is
  rule_db[cond_exp][block_bool][src][tgt][tclass]=sides
where:
  cond_exp is a boolean expression
  block_bool is either true or false
  src is the source type
  tgt is the target type
  tclass is the target class
  sides is a namedtuple with "left" and "right" attributes
    Each side is either None or another namedtuple with "perms" and
    "orig_rule" attributes
      perms is the set of permissions for this rule
      orig_rule is the original unexpanded rule

These changes improve diff times and memory usage.
Without the change
                         Time        Memory Usage
Older Fedora Policy    3 min 17 sec      4.5Gb
Recent Refpolicy       4 min 19 sec      6.0Gb
Recent Fedora Policy   4 hrs  9 min     31.9Gb

With the change
                         Time        Memory Usage
Older Fedora Policy          28 sec      1.7Gb
Recent Refpolicy             34 sec      1.9Gb
Recent Fedora Policy   4 min 45 sec      7.7Gb

Also added a unit test to check that redundant rules are removed.

Signed-off-by: James Carter <jwcart2@tycho.nsa.gov>
2019-10-24 09:00:19 -04:00
Nicolas Iooss
faf3d1b204
diff: compare with other instead of self
This issue has been found using lgtm.com.

Signed-off-by: Nicolas Iooss <nicolas.iooss@m4x.org>
2019-08-13 21:52:28 +02:00
Chris PeBenito
022adcb715 TERulesDifference: Add additional debugging statements.
Record the rule list and expanded rule statistics for determining if
memory size issues are due to rule size vs. something else.

Signed-off-by: Chris PeBenito <pebenito@ieee.org>
2019-07-13 20:23:54 -04:00
Chris PeBenito
5b8f7e7d45 TERulesDifference/AVRuleWrapper/AVRuleXpermWrapper: Update for read-only rule permission sets.
This requires unioning permission sets in the wrappers and manually
unwrapping the rules after the diff-ing.
2018-09-22 23:55:18 -04:00
Chris PeBenito
6d7a672611 Update static testing and fix identified issues.
* Change pep8 to new pycodestyle tool.
* Load the policrep extension in pylint
2018-08-11 20:46:06 -04:00
Chris PeBenito
2b4d69d42e Revise structure to make policyrep a module instead of a subpackage.
The setools.policyrep.exception module merged into setools.exception.
2018-08-11 20:46:01 -04:00
Chris PeBenito
6621a5ed42 diff: Significantly improve memory utilization.
Eliminate wrapper duplication on symbols (types, roles, etc.).  This
reduces memory use by an estimated 60%.
2018-06-15 20:26:49 -04:00
Chris PeBenito
566e61137d _avrule_expand_generator: Improve performance of permission unioning. 2016-12-03 17:06:37 -05:00
Chris PeBenito
5200f0c666 TERulesDifference: Fix bug with unioning permissions.
Unit tests did not correctly test this scenario.
2016-12-03 12:19:53 -05:00
Chris PeBenito
da87bfceb7 diff: Add slots to diff wrappers to reduce memory size.
For 
2016-09-11 10:32:58 -04:00
Chris PeBenito
f3fb462c88 Implement an enumeration for TE rule types. 2016-09-03 16:17:07 -04:00
Chris PeBenito
c526264f52 policyrep: Make helper class naming consistent. 2016-04-26 13:29:26 -04:00
Chris PeBenito
0211b8951c *RulesDifference: fix rule list creation checks
If multiple rule types were diffed, the rule lists would be generated
multiple times if one or more of the rule lists were empty.
2016-03-28 09:17:58 -04:00
Chris PeBenito
b8b7422c8f *RulesDifference: use defaultdicts and closures to simplify code
* Use dictionaries to store rule lists, eliminating the large if-else
  blocks.
* Use closures in TERulesDifference to template the diff functions.
2016-03-26 09:59:42 -04:00
Chris PeBenito
47d8eda957 TERulesDifference: add extended permission rules
Related to 
2016-03-25 15:33:07 -04:00
Chris PeBenito
964a3ea3f5 MLS/RBAC/TERulesDifference: revise unknown rule exceptions to log instead
Change to error logging so the processing continues, as the error is not
fatal.  Also specify in the message that it is a bug, so users know it
isn't their fault.
2016-02-01 11:20:32 -05:00
Chris PeBenito
dc0f25a04e TERuleWrapper: fix missed inheritance of Wrapper class. 2016-01-07 09:31:07 -05:00
Chris PeBenito
9ad7cd0f1c TERulesDifference: use wrapper to compare default types 2016-01-07 09:31:07 -05:00
Chris PeBenito
c00733e3e8 TERulesDifference: rename internal rule list method
Make sure it doesn't conflict with another diff class, since PolicyDifference
is composed of all of the diff classes.
2016-01-07 09:30:39 -05:00
Chris PeBenito
808cd5f535 TERulesDifference: move _expand_generator to Difference
Other rule types can be expanded.
2016-01-07 08:53:34 -05:00
Chris PeBenito
9287eef972 Difference: move hash out of sorting function to TE rule wrapper __lt__ 2016-01-04 11:18:46 -05:00
Chris PeBenito
4b9078aba4 diff: add Wrapper base class. 2016-01-03 16:03:48 -05:00
Chris PeBenito
c913989f8c PolicyDifference: implement TE rule difference
Closes 
2016-01-02 18:17:39 -05:00