]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
cifs: set a timeout on keys in cifs.idmap cache
authorJeff Layton <jlayton@redhat.com>
Fri, 19 Oct 2012 15:24:44 +0000 (11:24 -0400)
committerJeff Layton <jlayton@redhat.com>
Fri, 19 Oct 2012 15:24:44 +0000 (11:24 -0400)
We want to allow unused idmap keys to eventually be purged from the
cache. Implement that by simply setting a timeout on the key whenever we
use it. We use the same default timeout as the NFS idmap cache, and add
a module parm to make it tunable.

Reviewed-by: Shirish Pargaonkar <shirishpargaonkar@gmail.com>
Signed-off-by: Jeff Layton <jlayton@redhat.com>
fs/cifs/cifsacl.c

index 12d70ee87b4bbd5dd97fd02030068cf188db82ef..0c0a5942a5ac52b86779fd79f0a53fa832ad5be6 100644 (file)
@@ -26,6 +26,7 @@
 #include <linux/string.h>
 #include <linux/keyctl.h>
 #include <linux/key-type.h>
+#include <linux/moduleparam.h>
 #include <keys/user-type.h>
 #include "cifspdu.h"
 #include "cifsglob.h"
@@ -44,6 +45,11 @@ static const struct cifs_sid sid_user = {1, 2 , {0, 0, 0, 0, 0, 5}, {} };
 
 static const struct cred *root_cred;
 
+static unsigned int cifs_idmap_cache_timeout = 600;
+module_param(cifs_idmap_cache_timeout, uint, 0644);
+MODULE_PARM_DESC(cifs_idmap_cache_timeout, "Number of seconds that ID mappings "
+                       "stay in cache. (default=600)");
+
 static int
 cifs_idmap_key_instantiate(struct key *key, struct key_preparsed_payload *prep)
 {
@@ -214,6 +220,7 @@ id_to_sid(unsigned int cid, uint sidtype, struct cifs_sid *ssid)
                goto out_key_put;
        }
        cifs_copy_sid(ssid, (struct cifs_sid *)sidkey->payload.data);
+       key_set_timeout(sidkey, cifs_idmap_cache_timeout);
 out_key_put:
        key_put(sidkey);
 out_revert_creds:
@@ -272,6 +279,7 @@ sid_to_id(struct cifs_sb_info *cifs_sb, struct cifs_sid *psid,
        else
                fgid = (gid_t)sidkey->payload.value;
 
+       key_set_timeout(sidkey, cifs_idmap_cache_timeout);
 out_key_put:
        key_put(sidkey);
 out_revert_creds: