/usr/share/pyshared/sepolgen/matching.py is in python-sepolgen 1.2.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | # Authors: Karl MacMillan <kmacmillan@mentalrootkit.com>
#
# Copyright (C) 2006 Red Hat
# see file 'COPYING' for use and warranty information
#
# This program 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; version 2 only
#
# 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.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
"""
Classes and algorithms for matching requested access to access vectors.
"""
import access
import objectmodel
import itertools
class Match:
def __init__(self, interface=None, dist=0):
self.interface = interface
self.dist = dist
self.info_dir_change = False
def __cmp__(self, other):
if self.dist == other.dist:
if self.info_dir_change:
if other.info_dir_change:
return 0
else:
return 1
else:
if other.info_dir_change:
return -1
else:
return 0
else:
if self.dist < other.dist:
return -1
else:
return 1
class MatchList:
DEFAULT_THRESHOLD = 150
def __init__(self):
# Match objects that pass the threshold
self.children = []
# Match objects over the threshold
self.bastards = []
self.threshold = self.DEFAULT_THRESHOLD
self.allow_info_dir_change = False
self.av = None
def best(self):
if len(self.children):
return self.children[0]
if len(self.bastards):
return self.bastards[0]
return None
def __len__(self):
# Only return the length of the matches so
# that this can be used to test if there is
# a match.
return len(self.children) + len(self.bastards)
def __iter__(self):
return iter(self.children)
def all(self):
return itertools.chain(self.children, self.bastards)
def append(self, match):
if match.dist <= self.threshold:
if not match.info_dir_change or self.allow_info_dir_change:
self.children.append(match)
else:
self.bastards.append(match)
else:
self.bastards.append(match)
def sort(self):
self.children.sort()
self.bastards.sort()
class AccessMatcher:
def __init__(self, perm_maps=None):
self.type_penalty = 10
self.obj_penalty = 10
if perm_maps:
self.perm_maps = perm_maps
else:
self.perm_maps = objectmodel.PermMappings()
# We want a change in the information flow direction
# to be a strong penalty - stronger than access to
# a few unrelated types.
self.info_dir_penalty = 100
def type_distance(self, a, b):
if a == b or access.is_idparam(b):
return 0
else:
return -self.type_penalty
def perm_distance(self, av_req, av_prov):
# First check that we have enough perms
diff = av_req.perms.difference(av_prov.perms)
if len(diff) != 0:
total = self.perm_maps.getdefault_distance(av_req.obj_class, diff)
return -total
else:
diff = av_prov.perms.difference(av_req.perms)
return self.perm_maps.getdefault_distance(av_req.obj_class, diff)
def av_distance(self, req, prov):
"""Determine the 'distance' between 2 access vectors.
This function is used to find an access vector that matches
a 'required' access. To do this we comput a signed numeric
value that indicates how close the req access is to the
'provided' access vector. The closer the value is to 0
the closer the match, with 0 being an exact match.
A value over 0 indicates that the prov access vector provides more
access than the req (in practice, this means that the source type,
target type, and object class is the same and the perms in prov is
a superset of those in req.
A value under 0 indicates that the prov access less - or unrelated
- access to the req access. A different type or object class will
result in a very low value.
The values other than 0 should only be interpreted relative to
one another - they have no exact meaning and are likely to
change.
Params:
req - [AccessVector] The access that is required. This is the
access being matched.
prov - [AccessVector] The access provided. This is the potential
match that is being evaluated for req.
Returns:
0 : Exact match between the acess vectors.
< 0 : The prov av does not provide all of the access in req.
A smaller value indicates that the access is further.
> 0 : The prov av provides more access than req. The larger
the value the more access over req.
"""
# FUTURE - this is _very_ expensive and probably needs some
# thorough performance work. This version is meant to give
# meaningful results relatively simply.
dist = 0
# Get the difference between the types. The addition is safe
# here because type_distance only returns 0 or negative.
dist += self.type_distance(req.src_type, prov.src_type)
dist += self.type_distance(req.tgt_type, prov.tgt_type)
# Object class distance
if req.obj_class != prov.obj_class and not access.is_idparam(prov.obj_class):
dist -= self.obj_penalty
# Permission distance
# If this av doesn't have a matching source type, target type, and object class
# count all of the permissions against it. Otherwise determine the perm
# distance and dir.
if dist < 0:
pdist = self.perm_maps.getdefault_distance(prov.obj_class, prov.perms)
else:
pdist = self.perm_distance(req, prov)
# Combine the perm and other distance
if dist < 0:
if pdist < 0:
return dist + pdist
else:
return dist - pdist
elif dist >= 0:
if pdist < 0:
return pdist - dist
else:
return dist + pdist
def av_set_match(self, av_set, av):
"""
"""
dist = None
# Get the distance for each access vector
for x in av_set:
tmp = self.av_distance(av, x)
if dist is None:
dist = tmp
elif tmp >= 0:
if dist >= 0:
dist += tmp
else:
dist = tmp + -dist
else:
if dist < 0:
dist += tmp
else:
dist -= tmp
# Penalize for information flow - we want to prevent the
# addition of a write if the requested is read none. We are
# much less concerned about the reverse.
av_dir = self.perm_maps.getdefault_direction(av.obj_class, av.perms)
if av_set.info_dir is None:
av_set.info_dir = objectmodel.FLOW_NONE
for x in av_set:
av_set.info_dir = av_set.info_dir | \
self.perm_maps.getdefault_direction(x.obj_class, x.perms)
if (av_dir & objectmodel.FLOW_WRITE == 0) and (av_set.info_dir & objectmodel.FLOW_WRITE):
if dist < 0:
dist -= self.info_dir_penalty
else:
dist += self.info_dir_penalty
return dist
def search_ifs(self, ifset, av, match_list):
match_list.av = av
for iv in itertools.chain(ifset.tgt_type_all,
ifset.tgt_type_map.get(av.tgt_type, [])):
if not iv.enabled:
#print "iv %s not enabled" % iv.name
continue
dist = self.av_set_match(iv.access, av)
if dist >= 0:
m = Match(iv, dist)
match_list.append(m)
match_list.sort()
|