diff options
author | Eric Paris <eparis@redhat.com> | 2011-04-28 15:11:21 -0400 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2011-04-28 15:15:52 -0400 |
commit | 03a4c0182a156547edd5f2717c1702590fe36bbf (patch) | |
tree | c4585fab7c37d4eb2cc46e93c925e7c2a5e7b1a2 /security/selinux/ss/policydb.h | |
parent | 2667991f60e67d28c495b8967aaabf84b4ccd560 (diff) |
SELinux: skip filename trans rules if ttype does not match parent dir
Right now we walk to filename trans rule list for every inode that is
created. First passes at policy using this facility creates around 5000
filename trans rules. Running a list of 5000 entries every time is a bad
idea. This patch adds a new ebitmap to policy which has a bit set for each
ttype that has at least 1 filename trans rule. Thus when an inode is
created we can quickly determine if any rules exist for this parent
directory type and can skip the list if we know there is definitely no
relevant entry.
Signed-off-by: Eric Paris <eparis@redhat.com>
Reviewed-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/selinux/ss/policydb.h')
-rw-r--r-- | security/selinux/ss/policydb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/security/selinux/ss/policydb.h b/security/selinux/ss/policydb.h index 801175f79cf9..f054a9d4d114 100644 --- a/security/selinux/ss/policydb.h +++ b/security/selinux/ss/policydb.h | |||
@@ -227,6 +227,8 @@ struct policydb { | |||
227 | /* role transitions */ | 227 | /* role transitions */ |
228 | struct role_trans *role_tr; | 228 | struct role_trans *role_tr; |
229 | 229 | ||
230 | /* quickly exclude lookups when parent ttype has no rules */ | ||
231 | struct ebitmap filename_trans_ttypes; | ||
230 | /* file transitions with the last path component */ | 232 | /* file transitions with the last path component */ |
231 | struct filename_trans *filename_trans; | 233 | struct filename_trans *filename_trans; |
232 | 234 | ||