aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/security/selinux/ss/hashtab.h
diff options
context:
space:
mode:
authorOndrej Mosnacek <omosnace@redhat.com>2020-02-26 16:54:52 +0100
committerPaul Moore <paul@paul-moore.com>2020-02-27 19:23:20 -0500
commite0ac568de1fa0a38bea6d3c69a894d913a5ca59d (patch)
treeb96a691c16032ea1f3c959034ef7fda70e59c3ef /security/selinux/ss/hashtab.h
parentselinux: Add xfs quota command types (diff)
downloadwireguard-linux-e0ac568de1fa0a38bea6d3c69a894d913a5ca59d.tar.xz
wireguard-linux-e0ac568de1fa0a38bea6d3c69a894d913a5ca59d.zip
selinux: reduce the use of hard-coded hash sizes
Instead allocate hash tables with just the right size based on the actual number of elements (which is almost always known beforehand, we just need to defer the hashtab allocation to the right time). The only case when we don't know the size (with the current policy format) is the new filename transitions hashtable. Here I just left the existing value. After this patch, the time to load Fedora policy on x86_64 decreases from 790 ms to 167 ms. If the unconfined module is removed, it decreases from 750 ms to 122 ms. It is also likely that other operations are going to be faster, mainly string_to_context_struct() or mls_compute_sid(), but I didn't try to quantify that. The memory usage of all hash table arrays increases from ~58 KB to ~163 KB (with Fedora policy on x86_64). Signed-off-by: Ondrej Mosnacek <omosnace@redhat.com> Acked-by: Stephen Smalley <sds@tycho.nsa.gov> Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/selinux/ss/hashtab.h')
-rw-r--r--security/selinux/ss/hashtab.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/ss/hashtab.h b/security/selinux/ss/hashtab.h
index 3e3e42bfd150..dde54d9ff01c 100644
--- a/security/selinux/ss/hashtab.h
+++ b/security/selinux/ss/hashtab.h
@@ -42,7 +42,7 @@ struct hashtab_info {
*/
struct hashtab *hashtab_create(u32 (*hash_value)(struct hashtab *h, const void *key),
int (*keycmp)(struct hashtab *h, const void *key1, const void *key2),
- u32 size);
+ u32 nel_hint);
/*
* Inserts the specified (key, datum) pair into the specified hash table.