|
@@ -4,6 +4,7 @@
|
|
* RNG operations.
|
|
* RNG operations.
|
|
*
|
|
*
|
|
* Copyright (c) 2008 Neil Horman <nhorman@tuxdriver.com>
|
|
* Copyright (c) 2008 Neil Horman <nhorman@tuxdriver.com>
|
|
|
|
+ * Copyright (c) 2015 Herbert Xu <herbert@gondor.apana.org.au>
|
|
*
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
@@ -36,39 +37,6 @@ static inline struct crypto_rng *__crypto_rng_cast(struct crypto_tfm *tfm)
|
|
return container_of(tfm, struct crypto_rng, base);
|
|
return container_of(tfm, struct crypto_rng, base);
|
|
}
|
|
}
|
|
|
|
|
|
-static inline struct old_rng_alg *crypto_old_rng_alg(struct crypto_rng *tfm)
|
|
|
|
-{
|
|
|
|
- return &crypto_rng_tfm(tfm)->__crt_alg->cra_rng;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-static int generate(struct crypto_rng *tfm, const u8 *src, unsigned int slen,
|
|
|
|
- u8 *dst, unsigned int dlen)
|
|
|
|
-{
|
|
|
|
- return crypto_old_rng_alg(tfm)->rng_make_random(tfm, dst, dlen);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-static int rngapi_reset(struct crypto_rng *tfm, const u8 *seed,
|
|
|
|
- unsigned int slen)
|
|
|
|
-{
|
|
|
|
- u8 *buf = NULL;
|
|
|
|
- u8 *src = (u8 *)seed;
|
|
|
|
- int err;
|
|
|
|
-
|
|
|
|
- if (slen) {
|
|
|
|
- buf = kmalloc(slen, GFP_KERNEL);
|
|
|
|
- if (!buf)
|
|
|
|
- return -ENOMEM;
|
|
|
|
-
|
|
|
|
- memcpy(buf, seed, slen);
|
|
|
|
- src = buf;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- err = crypto_old_rng_alg(tfm)->rng_reset(tfm, src, slen);
|
|
|
|
-
|
|
|
|
- kzfree(buf);
|
|
|
|
- return err;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
int crypto_rng_reset(struct crypto_rng *tfm, const u8 *seed, unsigned int slen)
|
|
int crypto_rng_reset(struct crypto_rng *tfm, const u8 *seed, unsigned int slen)
|
|
{
|
|
{
|
|
u8 *buf = NULL;
|
|
u8 *buf = NULL;
|
|
@@ -83,7 +51,7 @@ int crypto_rng_reset(struct crypto_rng *tfm, const u8 *seed, unsigned int slen)
|
|
seed = buf;
|
|
seed = buf;
|
|
}
|
|
}
|
|
|
|
|
|
- err = tfm->seed(tfm, seed, slen);
|
|
|
|
|
|
+ err = crypto_rng_alg(tfm)->seed(tfm, seed, slen);
|
|
|
|
|
|
kfree(buf);
|
|
kfree(buf);
|
|
return err;
|
|
return err;
|
|
@@ -92,21 +60,6 @@ EXPORT_SYMBOL_GPL(crypto_rng_reset);
|
|
|
|
|
|
static int crypto_rng_init_tfm(struct crypto_tfm *tfm)
|
|
static int crypto_rng_init_tfm(struct crypto_tfm *tfm)
|
|
{
|
|
{
|
|
- struct crypto_rng *rng = __crypto_rng_cast(tfm);
|
|
|
|
- struct rng_alg *alg = crypto_rng_alg(rng);
|
|
|
|
- struct old_rng_alg *oalg = crypto_old_rng_alg(rng);
|
|
|
|
-
|
|
|
|
- if (oalg->rng_make_random) {
|
|
|
|
- rng->generate = generate;
|
|
|
|
- rng->seed = rngapi_reset;
|
|
|
|
- rng->seedsize = oalg->seedsize;
|
|
|
|
- return 0;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- rng->generate = alg->generate;
|
|
|
|
- rng->seed = alg->seed;
|
|
|
|
- rng->seedsize = alg->seedsize;
|
|
|
|
-
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -114,8 +67,7 @@ static unsigned int seedsize(struct crypto_alg *alg)
|
|
{
|
|
{
|
|
struct rng_alg *ralg = container_of(alg, struct rng_alg, base);
|
|
struct rng_alg *ralg = container_of(alg, struct rng_alg, base);
|
|
|
|
|
|
- return alg->cra_rng.rng_make_random ?
|
|
|
|
- alg->cra_rng.seedsize : ralg->seedsize;
|
|
|
|
|
|
+ return ralg->seedsize;
|
|
}
|
|
}
|
|
|
|
|
|
#ifdef CONFIG_NET
|
|
#ifdef CONFIG_NET
|
|
@@ -150,7 +102,7 @@ static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg)
|
|
seq_printf(m, "seedsize : %u\n", seedsize(alg));
|
|
seq_printf(m, "seedsize : %u\n", seedsize(alg));
|
|
}
|
|
}
|
|
|
|
|
|
-const struct crypto_type crypto_rng_type = {
|
|
|
|
|
|
+static const struct crypto_type crypto_rng_type = {
|
|
.extsize = crypto_alg_extsize,
|
|
.extsize = crypto_alg_extsize,
|
|
.init_tfm = crypto_rng_init_tfm,
|
|
.init_tfm = crypto_rng_init_tfm,
|
|
#ifdef CONFIG_PROC_FS
|
|
#ifdef CONFIG_PROC_FS
|
|
@@ -162,7 +114,6 @@ const struct crypto_type crypto_rng_type = {
|
|
.type = CRYPTO_ALG_TYPE_RNG,
|
|
.type = CRYPTO_ALG_TYPE_RNG,
|
|
.tfmsize = offsetof(struct crypto_rng, base),
|
|
.tfmsize = offsetof(struct crypto_rng, base),
|
|
};
|
|
};
|
|
-EXPORT_SYMBOL_GPL(crypto_rng_type);
|
|
|
|
|
|
|
|
struct crypto_rng *crypto_alloc_rng(const char *alg_name, u32 type, u32 mask)
|
|
struct crypto_rng *crypto_alloc_rng(const char *alg_name, u32 type, u32 mask)
|
|
{
|
|
{
|