Skip to content

Commit

Permalink
nfsd: Use shash
Browse files Browse the repository at this point in the history
This patch replaces uses of the long obsolete hash interface with
shash.

Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
herbertx committed Jan 27, 2016
1 parent 69110e3 commit 1edb82d
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions fs/nfsd/nfs4recover.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
*
*/

#include <crypto/hash.h>
#include <linux/file.h>
#include <linux/slab.h>
#include <linux/namei.h>
#include <linux/crypto.h>
#include <linux/sched.h>
#include <linux/fs.h>
#include <linux/module.h>
Expand Down Expand Up @@ -104,29 +104,35 @@ static int
nfs4_make_rec_clidname(char *dname, const struct xdr_netobj *clname)
{
struct xdr_netobj cksum;
struct hash_desc desc;
struct scatterlist sg;
struct crypto_shash *tfm;
int status;

dprintk("NFSD: nfs4_make_rec_clidname for %.*s\n",
clname->len, clname->data);
desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
desc.tfm = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
if (IS_ERR(desc.tfm)) {
status = PTR_ERR(desc.tfm);
tfm = crypto_alloc_shash("md5", 0, 0);
if (IS_ERR(tfm)) {
status = PTR_ERR(tfm);
goto out_no_tfm;
}

cksum.len = crypto_hash_digestsize(desc.tfm);
cksum.len = crypto_shash_digestsize(tfm);
cksum.data = kmalloc(cksum.len, GFP_KERNEL);
if (cksum.data == NULL) {
status = -ENOMEM;
goto out;
}

sg_init_one(&sg, clname->data, clname->len);
{
SHASH_DESC_ON_STACK(desc, tfm);

desc->tfm = tfm;
desc->flags = CRYPTO_TFM_REQ_MAY_SLEEP;

status = crypto_shash_digest(desc, clname->data, clname->len,
cksum.data);
shash_desc_zero(desc);
}

status = crypto_hash_digest(&desc, &sg, sg.length, cksum.data);
if (status)
goto out;

Expand All @@ -135,7 +141,7 @@ nfs4_make_rec_clidname(char *dname, const struct xdr_netobj *clname)
status = 0;
out:
kfree(cksum.data);
crypto_free_hash(desc.tfm);
crypto_free_shash(tfm);
out_no_tfm:
return status;
}
Expand Down

0 comments on commit 1edb82d

Please sign in to comment.