aboutsummaryrefslogtreecommitdiffstats
path: root/security/selinux/ss/services.c
diff options
context:
space:
mode:
authorEric Paris <eparis@redhat.com>2011-04-28 15:11:21 -0400
committerEric Paris <eparis@redhat.com>2011-04-28 15:15:53 -0400
commit2463c26d50adc282d19317013ba0ff473823ca47 (patch)
treee92438150bb380c0dc0867b00f1ae89f73646b2a /security/selinux/ss/services.c
parent3f058ef7787e1b48720622346de9a5317aeb749a (diff)
SELinux: put name based create rules in a hashtable
To shorten the list we need to run if filename trans rules exist for the type of the given parent directory I put them in a hashtable. Given the policy we are expecting to use in Fedora this takes the worst case list run from about 5,000 entries to 17. Signed-off-by: Eric Paris <eparis@redhat.com> Reviewed-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/selinux/ss/services.c')
-rw-r--r--security/selinux/ss/services.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/security/selinux/ss/services.c b/security/selinux/ss/services.c
index 6a22eaebf3b7..e11b4b038f4a 100644
--- a/security/selinux/ss/services.c
+++ b/security/selinux/ss/services.c
@@ -1362,7 +1362,8 @@ static void filename_compute_type(struct policydb *p, struct context *newcontext
1362 u32 stype, u32 ttype, u16 tclass, 1362 u32 stype, u32 ttype, u16 tclass,
1363 const char *objname) 1363 const char *objname)
1364{ 1364{
1365 struct filename_trans *ft; 1365 struct filename_trans ft;
1366 struct filename_trans_datum *otype;
1366 1367
1367 /* 1368 /*
1368 * Most filename trans rules are going to live in specific directories 1369 * Most filename trans rules are going to live in specific directories
@@ -1372,15 +1373,14 @@ static void filename_compute_type(struct policydb *p, struct context *newcontext
1372 if (!ebitmap_get_bit(&p->filename_trans_ttypes, ttype)) 1373 if (!ebitmap_get_bit(&p->filename_trans_ttypes, ttype))
1373 return; 1374 return;
1374 1375
1375 for (ft = p->filename_trans; ft; ft = ft->next) { 1376 ft.stype = stype;
1376 if (ft->stype == stype && 1377 ft.ttype = ttype;
1377 ft->ttype == ttype && 1378 ft.tclass = tclass;
1378 ft->tclass == tclass && 1379 ft.name = objname;
1379 !strcmp(ft->name, objname)) { 1380
1380 newcontext->type = ft->otype; 1381 otype = hashtab_search(p->filename_trans, &ft);
1381 return; 1382 if (otype)
1382 } 1383 newcontext->type = otype->otype;
1383 }
1384} 1384}
1385 1385
1386static int security_compute_sid(u32 ssid, 1386static int security_compute_sid(u32 ssid,