diff options
author | Steffen Klassert <steffen.klassert@secunet.com> | 2011-09-27 01:45:44 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2011-10-21 08:24:06 -0400 |
commit | b735d0a91556fd9fd5bbeeebd7d327c2d92c36c8 (patch) | |
tree | bf8f85b7dc0cc12d51cfd22562c8084ff7032e3d /crypto | |
parent | 6ad414fe710d4fd3a8c8c6c2ad8fefcfcc207968 (diff) |
crypto: Add userspace report for nivaead type algorithms
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/aead.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/crypto/aead.c b/crypto/aead.c index bb641bd0285b..701556ffaaef 100644 --- a/crypto/aead.c +++ b/crypto/aead.c | |||
@@ -190,6 +190,28 @@ static int crypto_init_nivaead_ops(struct crypto_tfm *tfm, u32 type, u32 mask) | |||
190 | return 0; | 190 | return 0; |
191 | } | 191 | } |
192 | 192 | ||
193 | static int crypto_nivaead_report(struct sk_buff *skb, struct crypto_alg *alg) | ||
194 | { | ||
195 | struct crypto_report_aead raead; | ||
196 | struct aead_alg *aead = &alg->cra_aead; | ||
197 | |||
198 | snprintf(raead.type, CRYPTO_MAX_ALG_NAME, "%s", "nivaead"); | ||
199 | snprintf(raead.geniv, CRYPTO_MAX_ALG_NAME, "%s", aead->geniv); | ||
200 | |||
201 | raead.blocksize = alg->cra_blocksize; | ||
202 | raead.maxauthsize = aead->maxauthsize; | ||
203 | raead.ivsize = aead->ivsize; | ||
204 | |||
205 | NLA_PUT(skb, CRYPTOCFGA_REPORT_AEAD, | ||
206 | sizeof(struct crypto_report_aead), &raead); | ||
207 | |||
208 | return 0; | ||
209 | |||
210 | nla_put_failure: | ||
211 | return -EMSGSIZE; | ||
212 | } | ||
213 | |||
214 | |||
193 | static void crypto_nivaead_show(struct seq_file *m, struct crypto_alg *alg) | 215 | static void crypto_nivaead_show(struct seq_file *m, struct crypto_alg *alg) |
194 | __attribute__ ((unused)); | 216 | __attribute__ ((unused)); |
195 | static void crypto_nivaead_show(struct seq_file *m, struct crypto_alg *alg) | 217 | static void crypto_nivaead_show(struct seq_file *m, struct crypto_alg *alg) |
@@ -211,6 +233,7 @@ const struct crypto_type crypto_nivaead_type = { | |||
211 | #ifdef CONFIG_PROC_FS | 233 | #ifdef CONFIG_PROC_FS |
212 | .show = crypto_nivaead_show, | 234 | .show = crypto_nivaead_show, |
213 | #endif | 235 | #endif |
236 | .report = crypto_nivaead_report, | ||
214 | }; | 237 | }; |
215 | EXPORT_SYMBOL_GPL(crypto_nivaead_type); | 238 | EXPORT_SYMBOL_GPL(crypto_nivaead_type); |
216 | 239 | ||