diff options
Diffstat (limited to 'crypto/rng.c')
-rw-r--r-- | crypto/rng.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/crypto/rng.c b/crypto/rng.c index 45229ae782be..feb7de00f437 100644 --- a/crypto/rng.c +++ b/crypto/rng.c | |||
@@ -21,6 +21,8 @@ | |||
21 | #include <linux/seq_file.h> | 21 | #include <linux/seq_file.h> |
22 | #include <linux/slab.h> | 22 | #include <linux/slab.h> |
23 | #include <linux/string.h> | 23 | #include <linux/string.h> |
24 | #include <linux/cryptouser.h> | ||
25 | #include <net/netlink.h> | ||
24 | 26 | ||
25 | static DEFINE_MUTEX(crypto_default_rng_lock); | 27 | static DEFINE_MUTEX(crypto_default_rng_lock); |
26 | struct crypto_rng *crypto_default_rng; | 28 | struct crypto_rng *crypto_default_rng; |
@@ -58,6 +60,23 @@ static int crypto_init_rng_ops(struct crypto_tfm *tfm, u32 type, u32 mask) | |||
58 | return 0; | 60 | return 0; |
59 | } | 61 | } |
60 | 62 | ||
63 | static int crypto_rng_report(struct sk_buff *skb, struct crypto_alg *alg) | ||
64 | { | ||
65 | struct crypto_report_rng rrng; | ||
66 | |||
67 | snprintf(rrng.type, CRYPTO_MAX_ALG_NAME, "%s", "rng"); | ||
68 | |||
69 | rrng.seedsize = alg->cra_rng.seedsize; | ||
70 | |||
71 | NLA_PUT(skb, CRYPTOCFGA_REPORT_RNG, | ||
72 | sizeof(struct crypto_report_rng), &rrng); | ||
73 | |||
74 | return 0; | ||
75 | |||
76 | nla_put_failure: | ||
77 | return -EMSGSIZE; | ||
78 | } | ||
79 | |||
61 | static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg) | 80 | static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg) |
62 | __attribute__ ((unused)); | 81 | __attribute__ ((unused)); |
63 | static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg) | 82 | static void crypto_rng_show(struct seq_file *m, struct crypto_alg *alg) |
@@ -78,6 +97,7 @@ const struct crypto_type crypto_rng_type = { | |||
78 | #ifdef CONFIG_PROC_FS | 97 | #ifdef CONFIG_PROC_FS |
79 | .show = crypto_rng_show, | 98 | .show = crypto_rng_show, |
80 | #endif | 99 | #endif |
100 | .report = crypto_rng_report, | ||
81 | }; | 101 | }; |
82 | EXPORT_SYMBOL_GPL(crypto_rng_type); | 102 | EXPORT_SYMBOL_GPL(crypto_rng_type); |
83 | 103 | ||