blob: 87fa2f4933b0555d6059b1a516fa079c77e6eebf [file] [log] [blame]
Neil Horman17f0f4a2008-08-14 22:15:52 +10001/*
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
Arun Sharma600634972011-07-26 16:09:06 -070015#include <linux/atomic.h>
Neil Horman17f0f4a2008-08-14 22:15:52 +100016#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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Neil Horman17f0f4a2008-08-14 22:15:52 +100023#include <linux/string.h>
Steffen Klassert792608e2011-09-27 07:47:11 +020024#include <linux/cryptouser.h>
25#include <net/netlink.h>
Neil Horman17f0f4a2008-08-14 22:15:52 +100026
Herbert Xud0e83052015-04-20 13:39:03 +080027#include "internal.h"
28
Neil Horman17f0f4a2008-08-14 22:15:52 +100029static 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
Herbert Xud0e83052015-04-20 13:39:03 +080034static inline struct crypto_rng *__crypto_rng_cast(struct crypto_tfm *tfm)
35{
36 return container_of(tfm, struct crypto_rng, base);
37}
38
Neil Horman17f0f4a2008-08-14 22:15:52 +100039static 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
Herbert Xud0e83052015-04-20 13:39:03 +080059static int crypto_rng_init_tfm(struct crypto_tfm *tfm)
Neil Horman17f0f4a2008-08-14 22:15:52 +100060{
Herbert Xud0e83052015-04-20 13:39:03 +080061 struct crypto_rng *rng = __crypto_rng_cast(tfm);
Neil Horman17f0f4a2008-08-14 22:15:52 +100062 struct rng_alg *alg = &tfm->__crt_alg->cra_rng;
Neil Horman17f0f4a2008-08-14 22:15:52 +100063
Herbert Xud0e83052015-04-20 13:39:03 +080064 rng->generate = alg->rng_make_random;
65 rng->seed = rngapi_reset;
Neil Horman17f0f4a2008-08-14 22:15:52 +100066
67 return 0;
68}
69
Herbert Xu3acc8472011-11-03 23:46:07 +110070#ifdef CONFIG_NET
Steffen Klassert792608e2011-09-27 07:47:11 +020071static int crypto_rng_report(struct sk_buff *skb, struct crypto_alg *alg)
72{
73 struct crypto_report_rng rrng;
74
Mathias Krause9a5467bf2013-02-05 18:19:13 +010075 strncpy(rrng.type, "rng", sizeof(rrng.type));
Steffen Klassert792608e2011-09-27 07:47:11 +020076
77 rrng.seedsize = alg->cra_rng.seedsize;
78
David S. Miller6662df32012-04-01 20:19:05 -040079 if (nla_put(skb, CRYPTOCFGA_REPORT_RNG,
80 sizeof(struct crypto_report_rng), &rrng))
81 goto nla_put_failure;
Steffen Klassert792608e2011-09-27 07:47:11 +020082 return 0;
83
84nla_put_failure:
85 return -EMSGSIZE;
86}
Herbert Xu3acc8472011-11-03 23:46:07 +110087#else
88static int crypto_rng_report(struct sk_buff *skb, struct crypto_alg *alg)
89{
90 return -ENOSYS;
91}
92#endif
Steffen Klassert792608e2011-09-27 07:47:11 +020093
Neil Horman17f0f4a2008-08-14 22:15:52 +100094static 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
Neil Horman17f0f4a2008-08-14 22:15:52 +1000102const struct crypto_type crypto_rng_type = {
Herbert Xud0e83052015-04-20 13:39:03 +0800103 .extsize = crypto_alg_extsize,
104 .init_tfm = crypto_rng_init_tfm,
Neil Horman17f0f4a2008-08-14 22:15:52 +1000105#ifdef CONFIG_PROC_FS
106 .show = crypto_rng_show,
107#endif
Steffen Klassert792608e2011-09-27 07:47:11 +0200108 .report = crypto_rng_report,
Herbert Xud0e83052015-04-20 13:39:03 +0800109 .maskclear = ~CRYPTO_ALG_TYPE_MASK,
110 .maskset = CRYPTO_ALG_TYPE_MASK,
111 .type = CRYPTO_ALG_TYPE_RNG,
112 .tfmsize = offsetof(struct crypto_rng, base),
Neil Horman17f0f4a2008-08-14 22:15:52 +1000113};
114EXPORT_SYMBOL_GPL(crypto_rng_type);
115
Herbert Xud0e83052015-04-20 13:39:03 +0800116struct 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
Neil Horman17f0f4a2008-08-14 22:15:52 +1000122int 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");
Christian Kujaua8ccc392009-08-13 11:53:56 +1000165MODULE_DESCRIPTION("Random Number Generator");