setools/tests/infoflow.py

449 lines
18 KiB
Python
Raw Normal View History

# Copyright 2014-2015, Tresys Technology, LLC
2014-07-08 18:28:55 +00:00
#
# This file is part of SETools.
#
# SETools is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with SETools. If not, see <http://www.gnu.org/licenses/>.
#
import unittest
from setools import SELinuxPolicy, InfoFlowAnalysis
2014-10-25 01:23:13 +00:00
from setools.permmap import PermissionMap
from setools.policyrep.exception import InvalidType
2014-07-08 18:28:55 +00:00
from . import mixins
2014-07-08 18:28:55 +00:00
# Note: the testing for having correct rules on every edge is only
# performed once on the full graph, since it is assumed that NetworkX's
# Digraph.subgraph() function correctly copies the edge attributes into
# the subgraph.
class InfoFlowAnalysisTest(mixins.ValidateRule, unittest.TestCase):
2014-07-08 18:28:55 +00:00
@classmethod
def setUpClass(cls):
cls.p = SELinuxPolicy("tests/infoflow.conf")
cls.m = PermissionMap("tests/perm_map")
cls.a = InfoFlowAnalysis(cls.p, cls.m)
2014-07-08 18:28:55 +00:00
def test_001_full_graph(self):
"""Information flow analysis full graph."""
2014-07-08 18:28:55 +00:00
self.a._build_graph()
2014-07-08 18:28:55 +00:00
disconnected1 = self.p.lookup_type("disconnected1")
disconnected2 = self.p.lookup_type("disconnected2")
node1 = self.p.lookup_type("node1")
node2 = self.p.lookup_type("node2")
node3 = self.p.lookup_type("node3")
node4 = self.p.lookup_type("node4")
node5 = self.p.lookup_type("node5")
node6 = self.p.lookup_type("node6")
node7 = self.p.lookup_type("node7")
node8 = self.p.lookup_type("node8")
node9 = self.p.lookup_type("node9")
nodes = set(self.a.G.nodes_iter())
self.assertSetEqual(set([disconnected1, disconnected2, node1,
node2, node3, node4, node5,
node6, node7, node8, node9]), nodes)
edges = set(self.a.G.out_edges_iter())
self.assertSetEqual(set([(disconnected1, disconnected2),
(disconnected2, disconnected1),
(node1, node2),
(node1, node3),
(node2, node4),
(node3, node5),
(node4, node6),
(node5, node8),
(node6, node5),
(node6, node7),
(node8, node9),
(node9, node8)]), edges)
r = self.a.G.edge[disconnected1][disconnected2]["rules"]
2014-07-08 18:28:55 +00:00
self.assertEqual(len(r), 1)
self.validate_rule(r[0], "allow", "disconnected1", "disconnected2", "infoflow2",
set(["super"]))
2014-07-08 18:28:55 +00:00
r = self.a.G.edge[disconnected2][disconnected1]["rules"]
2014-07-08 18:28:55 +00:00
self.assertEqual(len(r), 1)
self.validate_rule(r[0], "allow", "disconnected1", "disconnected2", "infoflow2",
set(["super"]))
2014-07-08 18:28:55 +00:00
r = sorted(self.a.G.edge[node1][node2]["rules"])
2014-07-08 18:28:55 +00:00
self.assertEqual(len(r), 2)
self.validate_rule(r[0], "allow", "node1", "node2", "infoflow", set(["med_w"]))
self.validate_rule(r[1], "allow", "node2", "node1", "infoflow", set(["hi_r"]))
2014-07-08 18:28:55 +00:00
r = sorted(self.a.G.edge[node1][node3]["rules"])
2014-07-08 18:28:55 +00:00
self.assertEqual(len(r), 1)
self.validate_rule(r[0], "allow", "node3", "node1", "infoflow", set(["low_r", "med_r"]))
2014-07-08 18:28:55 +00:00
r = sorted(self.a.G.edge[node2][node4]["rules"])
2014-07-08 18:28:55 +00:00
self.assertEqual(len(r), 1)
self.validate_rule(r[0], "allow", "node2", "node4", "infoflow", set(["hi_w"]))
2014-07-08 18:28:55 +00:00
r = sorted(self.a.G.edge[node3][node5]["rules"])
2014-07-08 18:28:55 +00:00
self.assertEqual(len(r), 1)
self.validate_rule(r[0], "allow", "node5", "node3", "infoflow", set(["low_r"]))
2014-07-08 18:28:55 +00:00
r = sorted(self.a.G.edge[node4][node6]["rules"])
2014-07-08 18:28:55 +00:00
self.assertEqual(len(r), 1)
self.validate_rule(r[0], "allow", "node4", "node6", "infoflow2", set(["hi_w"]))
2014-07-08 18:28:55 +00:00
r = sorted(self.a.G.edge[node5][node8]["rules"])
2014-07-08 18:28:55 +00:00
self.assertEqual(len(r), 1)
self.validate_rule(r[0], "allow", "node5", "node8", "infoflow2", set(["hi_w"]))
2014-07-08 18:28:55 +00:00
r = sorted(self.a.G.edge[node6][node5]["rules"])
2014-07-08 18:28:55 +00:00
self.assertEqual(len(r), 1)
self.validate_rule(r[0], "allow", "node5", "node6", "infoflow", set(["med_r"]))
2014-07-08 18:28:55 +00:00
r = sorted(self.a.G.edge[node6][node7]["rules"])
2014-07-08 18:28:55 +00:00
self.assertEqual(len(r), 1)
self.validate_rule(r[0], "allow", "node6", "node7", "infoflow", set(["hi_w"]))
2014-07-08 18:28:55 +00:00
r = sorted(self.a.G.edge[node8][node9]["rules"])
2014-07-08 18:28:55 +00:00
self.assertEqual(len(r), 1)
self.validate_rule(r[0], "allow", "node8", "node9", "infoflow2", set(["super"]))
2014-07-08 18:28:55 +00:00
r = sorted(self.a.G.edge[node9][node8]["rules"])
2014-07-08 18:28:55 +00:00
self.assertEqual(len(r), 1)
self.validate_rule(r[0], "allow", "node8", "node9", "infoflow2", set(["super"]))
2014-07-08 18:28:55 +00:00
def test_100_minimum_3(self):
"""Information flow analysis with minimum weight 3."""
self.a.set_exclude(None)
self.a.set_min_weight(3)
self.a._build_subgraph()
2014-07-08 18:28:55 +00:00
disconnected1 = self.p.lookup_type("disconnected1")
disconnected2 = self.p.lookup_type("disconnected2")
node1 = self.p.lookup_type("node1")
node2 = self.p.lookup_type("node2")
node3 = self.p.lookup_type("node3")
node4 = self.p.lookup_type("node4")
node5 = self.p.lookup_type("node5")
node6 = self.p.lookup_type("node6")
node7 = self.p.lookup_type("node7")
node8 = self.p.lookup_type("node8")
node9 = self.p.lookup_type("node9")
# don't test nodes list, as disconnected nodes
# are not removed by subgraph generation. we
# assume NetworkX copies into the subgraph
# correctly.
edges = set(self.a.subG.out_edges_iter())
self.assertSetEqual(set([(disconnected1, disconnected2),
(disconnected2, disconnected1),
(node1, node2),
(node1, node3),
(node2, node4),
(node4, node6),
(node5, node8),
(node6, node5),
(node6, node7),
(node8, node9),
(node9, node8)]), edges)
2014-07-08 18:28:55 +00:00
def test_200_minimum_8(self):
"""Information flow analysis with minimum weight 8."""
self.a.set_exclude(None)
self.a.set_min_weight(8)
self.a._build_subgraph()
2014-07-08 18:28:55 +00:00
disconnected1 = self.p.lookup_type("disconnected1")
disconnected2 = self.p.lookup_type("disconnected2")
node1 = self.p.lookup_type("node1")
node2 = self.p.lookup_type("node2")
node4 = self.p.lookup_type("node4")
node5 = self.p.lookup_type("node5")
node6 = self.p.lookup_type("node6")
node7 = self.p.lookup_type("node7")
node8 = self.p.lookup_type("node8")
node9 = self.p.lookup_type("node9")
# don't test nodes list, as disconnected nodes
# are not removed by subgraph generation. we
# assume NetworkX copies into the subgraph
# correctly.
edges = set(self.a.subG.out_edges_iter())
self.assertSetEqual(set([(disconnected1, disconnected2),
(disconnected2, disconnected1),
(node1, node2),
(node2, node4),
(node4, node6),
(node5, node8),
(node6, node7),
(node8, node9),
(node9, node8)]), edges)
def test_300_all_paths(self):
"""Information flow analysis: all paths output"""
self.a.set_exclude(None)
self.a.set_min_weight(1)
paths = list(self.a.all_paths("node1", "node4", 3))
self.assertEqual(1, len(paths))
steps = list(paths[0])
self.assertEqual(2, len(steps))
self.assertEqual(steps[0].source, "node1")
self.assertEqual(steps[0].target, "node2")
for r in steps[0].rules:
self.assertEqual("allow", r.ruletype)
self.assertEqual(steps[1].source, "node2")
self.assertEqual(steps[1].target, "node4")
for r in steps[1].rules:
self.assertEqual("allow", r.ruletype)
def test_301_all_shortest_paths(self):
"""Information flow analysis: all shortest paths output"""
self.a.set_exclude(None)
self.a.set_min_weight(1)
paths = list(self.a.all_shortest_paths("node1", "node4"))
self.assertEqual(1, len(paths))
steps = list(paths[0])
self.assertEqual(2, len(steps))
self.assertEqual(steps[0].source, "node1")
self.assertEqual(steps[0].target, "node2")
for r in steps[0].rules:
self.assertEqual("allow", r.ruletype)
self.assertEqual(steps[1].source, "node2")
self.assertEqual(steps[1].target, "node4")
for r in steps[1].rules:
self.assertEqual("allow", r.ruletype)
def test_302_shortest_path(self):
"""Information flow analysis: shortest path output"""
self.a.set_exclude(None)
self.a.set_min_weight(1)
paths = list(self.a.shortest_path("node1", "node4"))
self.assertEqual(1, len(paths))
steps = list(paths[0])
self.assertEqual(2, len(steps))
self.assertEqual(steps[0].source, "node1")
self.assertEqual(steps[0].target, "node2")
for r in steps[0].rules:
self.assertEqual("allow", r.ruletype)
self.assertEqual(steps[1].source, "node2")
self.assertEqual(steps[1].target, "node4")
for r in steps[1].rules:
self.assertEqual("allow", r.ruletype)
def test_303_infoflows_out(self):
"""Information flow analysis: flows out of a type"""
self.a.set_exclude(None)
self.a.set_min_weight(1)
for flow in self.a.infoflows("node6"):
self.assertEqual(flow.source, "node6")
for r in flow.rules:
self.assertEqual("allow", r.ruletype)
def test_304_infoflows_in(self):
"""Information flow analysis: flows in to a type"""
self.a.set_exclude(None)
self.a.set_min_weight(1)
for flow in self.a.infoflows("node8", out=False):
self.assertEqual(flow.target, "node8")
for r in flow.rules:
self.assertEqual("allow", r.ruletype)
def test_900_set_exclude_invalid_type(self):
"""Information flow analysis: set invalid excluded type."""
self.assertRaises(InvalidType, self.a.set_exclude, ["node1", "invalid_type"])
def test_901_set_small_min_weight(self):
"""Information flow analysis: set too small weight."""
self.assertRaises(ValueError, self.a.set_min_weight, 0)
self.assertRaises(ValueError, self.a.set_min_weight, -3)
def test_902_set_large_min_weight(self):
"""Information flow analysis: set too big weight."""
self.assertRaises(ValueError, self.a.set_min_weight, 11)
self.assertRaises(ValueError, self.a.set_min_weight, 50)
def test_910_all_paths_invalid_source(self):
"""Information flow analysis: all paths with invalid source type."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
with self.assertRaises(InvalidType):
list(self.a.all_paths("invalid_type", "node1"))
def test_911_all_paths_invalid_target(self):
"""Information flow analysis: all paths with invalid target type."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
with self.assertRaises(InvalidType):
list(self.a.all_paths("node1", "invalid_type"))
def test_912_all_paths_invalid_maxlen(self):
"""Information flow analysis: all paths with invalid max path length."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
with self.assertRaises(ValueError):
list(self.a.all_paths("node1", "node2", maxlen=-2))
def test_913_all_paths_source_excluded(self):
"""Information flow analysis: all paths with excluded source type."""
self.a.set_exclude(["node1"])
self.a.set_min_weight(1)
paths = list(self.a.all_paths("node1", "node2"))
self.assertEqual(0, len(paths))
def test_914_all_paths_target_excluded(self):
"""Information flow analysis: all paths with excluded target type."""
self.a.set_exclude(["node2"])
self.a.set_min_weight(1)
paths = list(self.a.all_paths("node1", "node2"))
self.assertEqual(0, len(paths))
def test_915_all_paths_source_disconnected(self):
"""Information flow analysis: all paths with disconnected source type."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
paths = list(self.a.all_paths("disconnected1", "node2"))
self.assertEqual(0, len(paths))
def test_916_all_paths_target_disconnected(self):
"""Information flow analysis: all paths with disconnected target type."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
paths = list(self.a.all_paths("node2", "disconnected1"))
self.assertEqual(0, len(paths))
def test_920_shortest_path_invalid_source(self):
"""Information flow analysis: shortest path with invalid source type."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
with self.assertRaises(InvalidType):
list(self.a.shortest_path("invalid_type", "node1"))
def test_921_shortest_path_invalid_target(self):
"""Information flow analysis: shortest path with invalid target type."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
with self.assertRaises(InvalidType):
list(self.a.shortest_path("node1", "invalid_type"))
def test_922_shortest_path_source_excluded(self):
"""Information flow analysis: shortest path with excluded source type."""
self.a.set_exclude(["node1"])
self.a.set_min_weight(1)
paths = list(self.a.shortest_path("node1", "node2"))
self.assertEqual(0, len(paths))
def test_923_shortest_path_target_excluded(self):
"""Information flow analysis: shortest path with excluded target type."""
self.a.set_exclude(["node2"])
self.a.set_min_weight(1)
paths = list(self.a.shortest_path("node1", "node2"))
self.assertEqual(0, len(paths))
def test_924_shortest_path_source_disconnected(self):
"""Information flow analysis: shortest path with disconnected source type."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
paths = list(self.a.shortest_path("disconnected1", "node2"))
self.assertEqual(0, len(paths))
def test_925_shortest_path_target_disconnected(self):
"""Information flow analysis: shortest path with disconnected target type."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
paths = list(self.a.shortest_path("node2", "disconnected1"))
self.assertEqual(0, len(paths))
def test_930_all_shortest_paths_invalid_source(self):
"""Information flow analysis: all shortest paths with invalid source type."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
with self.assertRaises(InvalidType):
list(self.a.all_shortest_paths("invalid_type", "node1"))
def test_931_all_shortest_paths_invalid_target(self):
"""Information flow analysis: all shortest paths with invalid target type."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
with self.assertRaises(InvalidType):
list(self.a.all_shortest_paths("node1", "invalid_type"))
def test_932_all_shortest_paths_source_excluded(self):
"""Information flow analysis: all shortest paths with excluded source type."""
self.a.set_exclude(["node1"])
self.a.set_min_weight(1)
paths = list(self.a.all_shortest_paths("node1", "node2"))
self.assertEqual(0, len(paths))
def test_933_all_shortest_paths_target_excluded(self):
"""Information flow analysis: all shortest paths with excluded target type."""
self.a.set_exclude(["node2"])
self.a.set_min_weight(1)
paths = list(self.a.all_shortest_paths("node1", "node2"))
self.assertEqual(0, len(paths))
def test_934_all_shortest_paths_source_disconnected(self):
"""Information flow analysis: all shortest paths with disconnected source type."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
paths = list(self.a.all_shortest_paths("disconnected1", "node2"))
self.assertEqual(0, len(paths))
def test_935_all_shortest_paths_target_disconnected(self):
"""Information flow analysis: all shortest paths with disconnected target type."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
paths = list(self.a.all_shortest_paths("node2", "disconnected1"))
self.assertEqual(0, len(paths))
def test_940_infoflows_invalid_source(self):
"""Information flow analysis: infoflows with invalid source type."""
self.a.set_exclude(None)
self.a.set_min_weight(1)
with self.assertRaises(InvalidType):
list(self.a.infoflows("invalid_type"))
def test_941_infoflows_source_excluded(self):
"""Information flow analysis: infoflows with excluded source type."""
self.a.set_exclude(["node1"])
self.a.set_min_weight(1)
paths = list(self.a.infoflows("node1"))
self.assertEqual(0, len(paths))
def test_942_infoflows_source_disconnected(self):
"""Information flow analysis: infoflows with disconnected source type."""
self.a.set_exclude(["disconnected2"])
self.a.set_min_weight(1)
paths = list(self.a.infoflows("disconnected1"))
self.assertEqual(0, len(paths))