]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - crypto/rng.c
crypto: rng - Convert crypto_rng to new style crypto_type
[mirror_ubuntu-zesty-kernel.git] / crypto / rng.c
CommitLineData
17f0f4a4
NH
1/*
2 * Cryptographic API.
3 *
4 * RNG operations.
5 *
6 * Copyright (c) 2008 Neil Horman <nhorman@tuxdriver.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 *
13 */
14
60063497 15#include <linux/atomic.h>
17f0f4a4
NH
16#include <crypto/internal/rng.h>
17#include <linux/err.h>
18#include <linux/module.h>
19#include <linux/mutex.h>
20#include <linux/random.h>
21#include <linux/seq_file.h>
5a0e3ad6 22#include <linux/slab.h>
17f0f4a4 23#include <linux/string.h>
792608e9
SK
24#include <linux/cryptouser.h>
25#include <net/netlink.h>
17f0f4a4 26
d0e83059
HX
27#include "internal.h"
28
17f0f4a4
NH
29static DEFINE_MUTEX(crypto_default_rng_lock);
30struct crypto_rng *crypto_default_rng;
31EXPORT_SYMBOL_GPL(crypto_default_rng);
32static int crypto_default_rng_refcnt;
33
d0e83059
HX
34static inline struct crypto_rng *__crypto_rng_cast(struct crypto_tfm *tfm)
35{
36 return container_of(tfm, struct crypto_rng, base);
37}
38
17f0f4a4
NH
39static int rngapi_reset(struct crypto_rng *tfm, u8 *seed, unsigned int slen)
40{
41 u8 *buf = NULL;
42 int err;
43
44 if (!seed && slen) {
45 buf = kmalloc(slen, GFP_KERNEL);
46 if (!buf)
47 return -ENOMEM;
48
49 get_random_bytes(buf, slen);
50 seed = buf;
51 }
52
53 err = crypto_rng_alg(tfm)->rng_reset(tfm, seed, slen);
54
55 kfree(buf);
56 return err;
57}
58
d0e83059 59static int crypto_rng_init_tfm(struct crypto_tfm *tfm)
17f0f4a4 60{
d0e83059 61 struct crypto_rng *rng = __crypto_rng_cast(tfm);
17f0f4a4 62 struct rng_alg *alg = &tfm->__crt_alg->cra_rng;
17f0f4a4 63
d0e83059
HX
64 rng->generate = alg->rng_make_random;
65 rng->seed = rngapi_reset;
17f0f4a4
NH
66
67 return 0;
68}
69
3acc8473 70#ifdef CONFIG_NET
792608e9
SK
71static int crypto_rng_report(struct sk_buff *skb, struct crypto_alg *alg)
72{
73 struct crypto_report_rng rrng;
74
9a5467bf 75 strncpy(rrng.type, "rng", sizeof(rrng.type));
792608e9
SK
76
77 rrng.seedsize = alg->cra_rng.seedsize;
78
6662df33
DM
79 if (nla_put(skb, CRYPTOCFGA_REPORT_RNG,
80 sizeof(struct crypto_report_rng), &rrng))
81 goto nla_put_failure;
792608e9
SK
82 return 0;
83
84nla_put_failure:
85 return -EMSGSIZE;
86}
3acc8473
HX
87#else
88static int crypto_rng_report(struct sk_buff *skb, struct crypto_alg *alg)
89{
90 return -ENOSYS;
91}
92#endif
792608e9 93
17f0f4a4
NH
94static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg)
95 __attribute__ ((unused));
96static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg)
97{
98 seq_printf(m, "type : rng\n");
99 seq_printf(m, "seedsize : %u\n", alg->cra_rng.seedsize);
100}
101
17f0f4a4 102const struct crypto_type crypto_rng_type = {
d0e83059
HX
103 .extsize = crypto_alg_extsize,
104 .init_tfm = crypto_rng_init_tfm,
17f0f4a4
NH
105#ifdef CONFIG_PROC_FS
106 .show = crypto_rng_show,
107#endif
792608e9 108 .report = crypto_rng_report,
d0e83059
HX
109 .maskclear = ~CRYPTO_ALG_TYPE_MASK,
110 .maskset = CRYPTO_ALG_TYPE_MASK,
111 .type = CRYPTO_ALG_TYPE_RNG,
112 .tfmsize = offsetof(struct crypto_rng, base),
17f0f4a4
NH
113};
114EXPORT_SYMBOL_GPL(crypto_rng_type);
115
d0e83059
HX
116struct crypto_rng *crypto_alloc_rng(const char *alg_name, u32 type, u32 mask)
117{
118 return crypto_alloc_tfm(alg_name, &crypto_rng_type, type, mask);
119}
120EXPORT_SYMBOL_GPL(crypto_alloc_rng);
121
17f0f4a4
NH
122int crypto_get_default_rng(void)
123{
124 struct crypto_rng *rng;
125 int err;
126
127 mutex_lock(&crypto_default_rng_lock);
128 if (!crypto_default_rng) {
129 rng = crypto_alloc_rng("stdrng", 0, 0);
130 err = PTR_ERR(rng);
131 if (IS_ERR(rng))
132 goto unlock;
133
134 err = crypto_rng_reset(rng, NULL, crypto_rng_seedsize(rng));
135 if (err) {
136 crypto_free_rng(rng);
137 goto unlock;
138 }
139
140 crypto_default_rng = rng;
141 }
142
143 crypto_default_rng_refcnt++;
144 err = 0;
145
146unlock:
147 mutex_unlock(&crypto_default_rng_lock);
148
149 return err;
150}
151EXPORT_SYMBOL_GPL(crypto_get_default_rng);
152
153void crypto_put_default_rng(void)
154{
155 mutex_lock(&crypto_default_rng_lock);
156 if (!--crypto_default_rng_refcnt) {
157 crypto_free_rng(crypto_default_rng);
158 crypto_default_rng = NULL;
159 }
160 mutex_unlock(&crypto_default_rng_lock);
161}
162EXPORT_SYMBOL_GPL(crypto_put_default_rng);
163
164MODULE_LICENSE("GPL");
a8ccc393 165MODULE_DESCRIPTION("Random Number Generator");