summaryrefslogtreecommitdiffstats
path: root/crypto/rng.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2015-04-20 22:46:38 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2015-04-21 21:30:14 -0400
commitacec27ff35af9caf34d76d16ee17ff3b292e7d83 (patch)
treecbbadbe7b3b8ed91da58850cd147145c944b359c /crypto/rng.c
parent3c5d8fa9f56ad0928e7a1f06003e5034f5eedb52 (diff)
crypto: rng - Convert low-level crypto_rng to new style
This patch converts the low-level crypto_rng interface to the "new" style. This allows existing implementations to be converted over one- by-one. Once that is complete we can then remove the old rng interface. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/rng.c')
-rw-r--r--crypto/rng.c56
1 files changed, 50 insertions, 6 deletions
diff --git a/crypto/rng.c b/crypto/rng.c
index f1d64948f6fc..5e0425a24657 100644
--- a/crypto/rng.c
+++ b/crypto/rng.c
@@ -36,10 +36,15 @@ static inline struct crypto_rng *__crypto_rng_cast(struct crypto_tfm *tfm)
36 return container_of(tfm, struct crypto_rng, base); 36 return container_of(tfm, struct crypto_rng, base);
37} 37}
38 38
39static inline struct old_rng_alg *crypto_old_rng_alg(struct crypto_rng *tfm)
40{
41 return &crypto_rng_tfm(tfm)->__crt_alg->cra_rng;
42}
43
39static int generate(struct crypto_rng *tfm, const u8 *src, unsigned int slen, 44static int generate(struct crypto_rng *tfm, const u8 *src, unsigned int slen,
40 u8 *dst, unsigned int dlen) 45 u8 *dst, unsigned int dlen)
41{ 46{
42 return crypto_rng_alg(tfm)->rng_make_random(tfm, dst, dlen); 47 return crypto_old_rng_alg(tfm)->rng_make_random(tfm, dst, dlen);
43} 48}
44 49
45static int rngapi_reset(struct crypto_rng *tfm, const u8 *seed, 50static int rngapi_reset(struct crypto_rng *tfm, const u8 *seed,
@@ -58,7 +63,7 @@ static int rngapi_reset(struct crypto_rng *tfm, const u8 *seed,
58 src = buf; 63 src = buf;
59 } 64 }
60 65
61 err = crypto_rng_alg(tfm)->rng_reset(tfm, src, slen); 66 err = crypto_old_rng_alg(tfm)->rng_reset(tfm, src, slen);
62 67
63 kzfree(buf); 68 kzfree(buf);
64 return err; 69 return err;
@@ -88,13 +93,31 @@ EXPORT_SYMBOL_GPL(crypto_rng_reset);
88static int crypto_rng_init_tfm(struct crypto_tfm *tfm) 93static int crypto_rng_init_tfm(struct crypto_tfm *tfm)
89{ 94{
90 struct crypto_rng *rng = __crypto_rng_cast(tfm); 95 struct crypto_rng *rng = __crypto_rng_cast(tfm);
96 struct rng_alg *alg = crypto_rng_alg(rng);
97 struct old_rng_alg *oalg = crypto_old_rng_alg(rng);
98
99 if (oalg->rng_make_random) {
100 rng->generate = generate;
101 rng->seed = rngapi_reset;
102 rng->seedsize = oalg->seedsize;
103 return 0;
104 }
91 105
92 rng->generate = generate; 106 rng->generate = alg->generate;
93 rng->seed = rngapi_reset; 107 rng->seed = alg->seed;
108 rng->seedsize = alg->seedsize;
94 109
95 return 0; 110 return 0;
96} 111}
97 112
113static unsigned int seedsize(struct crypto_alg *alg)
114{
115 struct rng_alg *ralg = container_of(alg, struct rng_alg, base);
116
117 return alg->cra_rng.rng_make_random ?
118 alg->cra_rng.seedsize : ralg->seedsize;
119}
120
98#ifdef CONFIG_NET 121#ifdef CONFIG_NET
99static int crypto_rng_report(struct sk_buff *skb, struct crypto_alg *alg) 122static int crypto_rng_report(struct sk_buff *skb, struct crypto_alg *alg)
100{ 123{
@@ -102,7 +125,7 @@ static int crypto_rng_report(struct sk_buff *skb, struct crypto_alg *alg)
102 125
103 strncpy(rrng.type, "rng", sizeof(rrng.type)); 126 strncpy(rrng.type, "rng", sizeof(rrng.type));
104 127
105 rrng.seedsize = alg->cra_rng.seedsize; 128 rrng.seedsize = seedsize(alg);
106 129
107 if (nla_put(skb, CRYPTOCFGA_REPORT_RNG, 130 if (nla_put(skb, CRYPTOCFGA_REPORT_RNG,
108 sizeof(struct crypto_report_rng), &rrng)) 131 sizeof(struct crypto_report_rng), &rrng))
@@ -124,7 +147,7 @@ static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg)
124static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg) 147static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg)
125{ 148{
126 seq_printf(m, "type : rng\n"); 149 seq_printf(m, "type : rng\n");
127 seq_printf(m, "seedsize : %u\n", alg->cra_rng.seedsize); 150 seq_printf(m, "seedsize : %u\n", seedsize(alg));
128} 151}
129 152
130const struct crypto_type crypto_rng_type = { 153const struct crypto_type crypto_rng_type = {
@@ -189,5 +212,26 @@ void crypto_put_default_rng(void)
189} 212}
190EXPORT_SYMBOL_GPL(crypto_put_default_rng); 213EXPORT_SYMBOL_GPL(crypto_put_default_rng);
191 214
215int crypto_register_rng(struct rng_alg *alg)
216{
217 struct crypto_alg *base = &alg->base;
218
219 if (alg->seedsize > PAGE_SIZE / 8)
220 return -EINVAL;
221
222 base->cra_type = &crypto_rng_type;
223 base->cra_flags &= ~CRYPTO_ALG_TYPE_MASK;
224 base->cra_flags |= CRYPTO_ALG_TYPE_RNG;
225
226 return crypto_register_alg(base);
227}
228EXPORT_SYMBOL_GPL(crypto_register_rng);
229
230void crypto_unregister_rng(struct rng_alg *alg)
231{
232 crypto_unregister_alg(&alg->base);
233}
234EXPORT_SYMBOL_GPL(crypto_unregister_rng);
235
192MODULE_LICENSE("GPL"); 236MODULE_LICENSE("GPL");
193MODULE_DESCRIPTION("Random Number Generator"); 237MODULE_DESCRIPTION("Random Number Generator");