]> git.karo-electronics.de Git - linux-beck.git/commitdiff
sunrpc: add RPCSEC_GSS hash_cred() function
authorFrank Sorenson <sorenson@redhat.com>
Thu, 29 Sep 2016 15:44:40 +0000 (10:44 -0500)
committerAnna Schumaker <Anna.Schumaker@Netapp.com>
Fri, 30 Sep 2016 19:47:13 +0000 (15:47 -0400)
Add a hash_cred() function for RPCSEC_GSS, using only the
uid from the auth_cred.

Signed-off-by: Frank Sorenson <sorenson@redhat.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
net/sunrpc/auth_gss/auth_gss.c

index 976c7812bbd520e51d34eb542b15f0e4730034b9..d8bd97a5a7c9d807fd478befe92bea4ea7a40407 100644 (file)
@@ -1298,6 +1298,12 @@ gss_destroy_cred(struct rpc_cred *cred)
        gss_destroy_nullcred(cred);
 }
 
+static int
+gss_hash_cred(struct auth_cred *acred, unsigned int hashbits)
+{
+       return hash_64(from_kuid(&init_user_ns, acred->uid), hashbits);
+}
+
 /*
  * Lookup RPCSEC_GSS cred for the current process
  */
@@ -1982,6 +1988,7 @@ static const struct rpc_authops authgss_ops = {
        .au_name        = "RPCSEC_GSS",
        .create         = gss_create,
        .destroy        = gss_destroy,
+       .hash_cred      = gss_hash_cred,
        .lookup_cred    = gss_lookup_cred,
        .crcreate       = gss_create_cred,
        .list_pseudoflavors = gss_mech_list_pseudoflavors,