1 // SPDX-License-Identifier: GPL-2.0
3 * Crypto user configuration API.
5 * Copyright (C) 2017-2018 Corentin Labbe <clabbe@baylibre.com>
9 #include <linux/crypto.h>
10 #include <linux/cryptouser.h>
11 #include <linux/sched.h>
12 #include <net/netlink.h>
13 #include <crypto/internal/skcipher.h>
14 #include <crypto/internal/rng.h>
15 #include <crypto/akcipher.h>
16 #include <crypto/kpp.h>
17 #include <crypto/internal/cryptouser.h>
21 #define null_terminated(x) (strnlen(x, sizeof(x)) < sizeof(x))
23 struct crypto_dump_info
{
24 struct sk_buff
*in_skb
;
25 struct sk_buff
*out_skb
;
30 static int crypto_report_aead(struct sk_buff
*skb
, struct crypto_alg
*alg
)
32 struct crypto_stat_aead raead
;
34 memset(&raead
, 0, sizeof(raead
));
36 strscpy(raead
.type
, "aead", sizeof(raead
.type
));
38 raead
.stat_encrypt_cnt
= atomic64_read(&alg
->stats
.aead
.encrypt_cnt
);
39 raead
.stat_encrypt_tlen
= atomic64_read(&alg
->stats
.aead
.encrypt_tlen
);
40 raead
.stat_decrypt_cnt
= atomic64_read(&alg
->stats
.aead
.decrypt_cnt
);
41 raead
.stat_decrypt_tlen
= atomic64_read(&alg
->stats
.aead
.decrypt_tlen
);
42 raead
.stat_err_cnt
= atomic64_read(&alg
->stats
.aead
.err_cnt
);
44 return nla_put(skb
, CRYPTOCFGA_STAT_AEAD
, sizeof(raead
), &raead
);
47 static int crypto_report_cipher(struct sk_buff
*skb
, struct crypto_alg
*alg
)
49 struct crypto_stat_cipher rcipher
;
51 memset(&rcipher
, 0, sizeof(rcipher
));
53 strscpy(rcipher
.type
, "cipher", sizeof(rcipher
.type
));
55 rcipher
.stat_encrypt_cnt
= atomic64_read(&alg
->stats
.cipher
.encrypt_cnt
);
56 rcipher
.stat_encrypt_tlen
= atomic64_read(&alg
->stats
.cipher
.encrypt_tlen
);
57 rcipher
.stat_decrypt_cnt
= atomic64_read(&alg
->stats
.cipher
.decrypt_cnt
);
58 rcipher
.stat_decrypt_tlen
= atomic64_read(&alg
->stats
.cipher
.decrypt_tlen
);
59 rcipher
.stat_err_cnt
= atomic64_read(&alg
->stats
.cipher
.err_cnt
);
61 return nla_put(skb
, CRYPTOCFGA_STAT_CIPHER
, sizeof(rcipher
), &rcipher
);
64 static int crypto_report_comp(struct sk_buff
*skb
, struct crypto_alg
*alg
)
66 struct crypto_stat_compress rcomp
;
68 memset(&rcomp
, 0, sizeof(rcomp
));
70 strscpy(rcomp
.type
, "compression", sizeof(rcomp
.type
));
71 rcomp
.stat_compress_cnt
= atomic64_read(&alg
->stats
.compress
.compress_cnt
);
72 rcomp
.stat_compress_tlen
= atomic64_read(&alg
->stats
.compress
.compress_tlen
);
73 rcomp
.stat_decompress_cnt
= atomic64_read(&alg
->stats
.compress
.decompress_cnt
);
74 rcomp
.stat_decompress_tlen
= atomic64_read(&alg
->stats
.compress
.decompress_tlen
);
75 rcomp
.stat_err_cnt
= atomic64_read(&alg
->stats
.compress
.err_cnt
);
77 return nla_put(skb
, CRYPTOCFGA_STAT_COMPRESS
, sizeof(rcomp
), &rcomp
);
80 static int crypto_report_acomp(struct sk_buff
*skb
, struct crypto_alg
*alg
)
82 struct crypto_stat_compress racomp
;
84 memset(&racomp
, 0, sizeof(racomp
));
86 strscpy(racomp
.type
, "acomp", sizeof(racomp
.type
));
87 racomp
.stat_compress_cnt
= atomic64_read(&alg
->stats
.compress
.compress_cnt
);
88 racomp
.stat_compress_tlen
= atomic64_read(&alg
->stats
.compress
.compress_tlen
);
89 racomp
.stat_decompress_cnt
= atomic64_read(&alg
->stats
.compress
.decompress_cnt
);
90 racomp
.stat_decompress_tlen
= atomic64_read(&alg
->stats
.compress
.decompress_tlen
);
91 racomp
.stat_err_cnt
= atomic64_read(&alg
->stats
.compress
.err_cnt
);
93 return nla_put(skb
, CRYPTOCFGA_STAT_ACOMP
, sizeof(racomp
), &racomp
);
96 static int crypto_report_akcipher(struct sk_buff
*skb
, struct crypto_alg
*alg
)
98 struct crypto_stat_akcipher rakcipher
;
100 memset(&rakcipher
, 0, sizeof(rakcipher
));
102 strscpy(rakcipher
.type
, "akcipher", sizeof(rakcipher
.type
));
103 rakcipher
.stat_encrypt_cnt
= atomic64_read(&alg
->stats
.akcipher
.encrypt_cnt
);
104 rakcipher
.stat_encrypt_tlen
= atomic64_read(&alg
->stats
.akcipher
.encrypt_tlen
);
105 rakcipher
.stat_decrypt_cnt
= atomic64_read(&alg
->stats
.akcipher
.decrypt_cnt
);
106 rakcipher
.stat_decrypt_tlen
= atomic64_read(&alg
->stats
.akcipher
.decrypt_tlen
);
107 rakcipher
.stat_sign_cnt
= atomic64_read(&alg
->stats
.akcipher
.sign_cnt
);
108 rakcipher
.stat_verify_cnt
= atomic64_read(&alg
->stats
.akcipher
.verify_cnt
);
109 rakcipher
.stat_err_cnt
= atomic64_read(&alg
->stats
.akcipher
.err_cnt
);
111 return nla_put(skb
, CRYPTOCFGA_STAT_AKCIPHER
,
112 sizeof(rakcipher
), &rakcipher
);
115 static int crypto_report_kpp(struct sk_buff
*skb
, struct crypto_alg
*alg
)
117 struct crypto_stat_kpp rkpp
;
119 memset(&rkpp
, 0, sizeof(rkpp
));
121 strscpy(rkpp
.type
, "kpp", sizeof(rkpp
.type
));
123 rkpp
.stat_setsecret_cnt
= atomic64_read(&alg
->stats
.kpp
.setsecret_cnt
);
124 rkpp
.stat_generate_public_key_cnt
= atomic64_read(&alg
->stats
.kpp
.generate_public_key_cnt
);
125 rkpp
.stat_compute_shared_secret_cnt
= atomic64_read(&alg
->stats
.kpp
.compute_shared_secret_cnt
);
126 rkpp
.stat_err_cnt
= atomic64_read(&alg
->stats
.kpp
.err_cnt
);
128 return nla_put(skb
, CRYPTOCFGA_STAT_KPP
, sizeof(rkpp
), &rkpp
);
131 static int crypto_report_ahash(struct sk_buff
*skb
, struct crypto_alg
*alg
)
133 struct crypto_stat_hash rhash
;
135 memset(&rhash
, 0, sizeof(rhash
));
137 strscpy(rhash
.type
, "ahash", sizeof(rhash
.type
));
139 rhash
.stat_hash_cnt
= atomic64_read(&alg
->stats
.hash
.hash_cnt
);
140 rhash
.stat_hash_tlen
= atomic64_read(&alg
->stats
.hash
.hash_tlen
);
141 rhash
.stat_err_cnt
= atomic64_read(&alg
->stats
.hash
.err_cnt
);
143 return nla_put(skb
, CRYPTOCFGA_STAT_HASH
, sizeof(rhash
), &rhash
);
146 static int crypto_report_shash(struct sk_buff
*skb
, struct crypto_alg
*alg
)
148 struct crypto_stat_hash rhash
;
150 memset(&rhash
, 0, sizeof(rhash
));
152 strscpy(rhash
.type
, "shash", sizeof(rhash
.type
));
154 rhash
.stat_hash_cnt
= atomic64_read(&alg
->stats
.hash
.hash_cnt
);
155 rhash
.stat_hash_tlen
= atomic64_read(&alg
->stats
.hash
.hash_tlen
);
156 rhash
.stat_err_cnt
= atomic64_read(&alg
->stats
.hash
.err_cnt
);
158 return nla_put(skb
, CRYPTOCFGA_STAT_HASH
, sizeof(rhash
), &rhash
);
161 static int crypto_report_rng(struct sk_buff
*skb
, struct crypto_alg
*alg
)
163 struct crypto_stat_rng rrng
;
165 memset(&rrng
, 0, sizeof(rrng
));
167 strscpy(rrng
.type
, "rng", sizeof(rrng
.type
));
169 rrng
.stat_generate_cnt
= atomic64_read(&alg
->stats
.rng
.generate_cnt
);
170 rrng
.stat_generate_tlen
= atomic64_read(&alg
->stats
.rng
.generate_tlen
);
171 rrng
.stat_seed_cnt
= atomic64_read(&alg
->stats
.rng
.seed_cnt
);
172 rrng
.stat_err_cnt
= atomic64_read(&alg
->stats
.rng
.err_cnt
);
174 return nla_put(skb
, CRYPTOCFGA_STAT_RNG
, sizeof(rrng
), &rrng
);
177 static int crypto_reportstat_one(struct crypto_alg
*alg
,
178 struct crypto_user_alg
*ualg
,
181 memset(ualg
, 0, sizeof(*ualg
));
183 strscpy(ualg
->cru_name
, alg
->cra_name
, sizeof(ualg
->cru_name
));
184 strscpy(ualg
->cru_driver_name
, alg
->cra_driver_name
,
185 sizeof(ualg
->cru_driver_name
));
186 strscpy(ualg
->cru_module_name
, module_name(alg
->cra_module
),
187 sizeof(ualg
->cru_module_name
));
191 ualg
->cru_flags
= alg
->cra_flags
;
192 ualg
->cru_refcnt
= refcount_read(&alg
->cra_refcnt
);
194 if (nla_put_u32(skb
, CRYPTOCFGA_PRIORITY_VAL
, alg
->cra_priority
))
195 goto nla_put_failure
;
196 if (alg
->cra_flags
& CRYPTO_ALG_LARVAL
) {
197 struct crypto_stat_larval rl
;
199 memset(&rl
, 0, sizeof(rl
));
200 strscpy(rl
.type
, "larval", sizeof(rl
.type
));
201 if (nla_put(skb
, CRYPTOCFGA_STAT_LARVAL
, sizeof(rl
), &rl
))
202 goto nla_put_failure
;
206 switch (alg
->cra_flags
& (CRYPTO_ALG_TYPE_MASK
| CRYPTO_ALG_LARVAL
)) {
207 case CRYPTO_ALG_TYPE_AEAD
:
208 if (crypto_report_aead(skb
, alg
))
209 goto nla_put_failure
;
211 case CRYPTO_ALG_TYPE_SKCIPHER
:
212 if (crypto_report_cipher(skb
, alg
))
213 goto nla_put_failure
;
215 case CRYPTO_ALG_TYPE_BLKCIPHER
:
216 if (crypto_report_cipher(skb
, alg
))
217 goto nla_put_failure
;
219 case CRYPTO_ALG_TYPE_CIPHER
:
220 if (crypto_report_cipher(skb
, alg
))
221 goto nla_put_failure
;
223 case CRYPTO_ALG_TYPE_COMPRESS
:
224 if (crypto_report_comp(skb
, alg
))
225 goto nla_put_failure
;
227 case CRYPTO_ALG_TYPE_ACOMPRESS
:
228 if (crypto_report_acomp(skb
, alg
))
229 goto nla_put_failure
;
231 case CRYPTO_ALG_TYPE_SCOMPRESS
:
232 if (crypto_report_acomp(skb
, alg
))
233 goto nla_put_failure
;
235 case CRYPTO_ALG_TYPE_AKCIPHER
:
236 if (crypto_report_akcipher(skb
, alg
))
237 goto nla_put_failure
;
239 case CRYPTO_ALG_TYPE_KPP
:
240 if (crypto_report_kpp(skb
, alg
))
241 goto nla_put_failure
;
243 case CRYPTO_ALG_TYPE_AHASH
:
244 if (crypto_report_ahash(skb
, alg
))
245 goto nla_put_failure
;
247 case CRYPTO_ALG_TYPE_HASH
:
248 if (crypto_report_shash(skb
, alg
))
249 goto nla_put_failure
;
251 case CRYPTO_ALG_TYPE_RNG
:
252 if (crypto_report_rng(skb
, alg
))
253 goto nla_put_failure
;
256 pr_err("ERROR: Unhandled alg %d in %s\n",
257 alg
->cra_flags
& (CRYPTO_ALG_TYPE_MASK
| CRYPTO_ALG_LARVAL
),
268 static int crypto_reportstat_alg(struct crypto_alg
*alg
,
269 struct crypto_dump_info
*info
)
271 struct sk_buff
*in_skb
= info
->in_skb
;
272 struct sk_buff
*skb
= info
->out_skb
;
273 struct nlmsghdr
*nlh
;
274 struct crypto_user_alg
*ualg
;
277 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).portid
, info
->nlmsg_seq
,
278 CRYPTO_MSG_GETSTAT
, sizeof(*ualg
), info
->nlmsg_flags
);
284 ualg
= nlmsg_data(nlh
);
286 err
= crypto_reportstat_one(alg
, ualg
, skb
);
288 nlmsg_cancel(skb
, nlh
);
298 int crypto_reportstat(struct sk_buff
*in_skb
, struct nlmsghdr
*in_nlh
,
299 struct nlattr
**attrs
)
301 struct crypto_user_alg
*p
= nlmsg_data(in_nlh
);
302 struct crypto_alg
*alg
;
304 struct crypto_dump_info info
;
307 if (!null_terminated(p
->cru_name
) || !null_terminated(p
->cru_driver_name
))
310 alg
= crypto_alg_match(p
, 0);
315 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
319 info
.in_skb
= in_skb
;
321 info
.nlmsg_seq
= in_nlh
->nlmsg_seq
;
322 info
.nlmsg_flags
= 0;
324 err
= crypto_reportstat_alg(alg
, &info
);
332 return nlmsg_unicast(crypto_nlsk
, skb
, NETLINK_CB(in_skb
).portid
);
335 MODULE_LICENSE("GPL");