blob: c65e39005ce2a3268270eedeb9fd8289aa49efef [file] [log] [blame]
Thomas Gleixnera61127c2019-05-29 16:57:49 -07001// SPDX-License-Identifier: GPL-2.0-only
Steffen Klasserta38f7902011-09-27 07:23:50 +02002/*
3 * Crypto user configuration API.
4 *
5 * Copyright (C) 2011 secunet Security Networks AG
6 * Copyright (C) 2011 Steffen Klassert <steffen.klassert@secunet.com>
Steffen Klasserta38f7902011-09-27 07:23:50 +02007 */
8
9#include <linux/module.h>
10#include <linux/crypto.h>
11#include <linux/cryptouser.h>
Steffen Klassert1e122992012-03-29 09:03:47 +020012#include <linux/sched.h>
Steffen Klasserta38f7902011-09-27 07:23:50 +020013#include <net/netlink.h>
14#include <linux/security.h>
15#include <net/net_namespace.h>
Steffen Klassert1e122992012-03-29 09:03:47 +020016#include <crypto/internal/skcipher.h>
Herbert Xu9aa867e2015-06-21 19:11:45 +080017#include <crypto/internal/rng.h>
Tadeusz Struk3c339ab2015-06-16 10:30:55 -070018#include <crypto/akcipher.h>
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +010019#include <crypto/kpp.h>
Corentin Labbecac58182018-09-19 10:10:54 +000020#include <crypto/internal/cryptouser.h>
Steffen Klassert1e122992012-03-29 09:03:47 +020021
Steffen Klasserta38f7902011-09-27 07:23:50 +020022#include "internal.h"
23
Mathias Krause8fd61d32013-02-05 18:19:15 +010024#define null_terminated(x) (strnlen(x, sizeof(x)) < sizeof(x))
25
Jussi Kivilinna66ce0b02012-08-28 16:46:54 +030026static DEFINE_MUTEX(crypto_cfg_mutex);
Steffen Klasserta38f7902011-09-27 07:23:50 +020027
28/* The crypto netlink socket */
Corentin Labbecac58182018-09-19 10:10:54 +000029struct sock *crypto_nlsk;
Steffen Klasserta38f7902011-09-27 07:23:50 +020030
31struct crypto_dump_info {
32 struct sk_buff *in_skb;
33 struct sk_buff *out_skb;
34 u32 nlmsg_seq;
35 u16 nlmsg_flags;
36};
37
Corentin Labbecac58182018-09-19 10:10:54 +000038struct crypto_alg *crypto_alg_match(struct crypto_user_alg *p, int exact)
Steffen Klasserta38f7902011-09-27 07:23:50 +020039{
Steffen Klasserta38f7902011-09-27 07:23:50 +020040 struct crypto_alg *q, *alg = NULL;
41
42 down_read(&crypto_alg_sem);
43
Steffen Klasserta38f7902011-09-27 07:23:50 +020044 list_for_each_entry(q, &crypto_alg_list, cra_list) {
Herbert Xue6ea64e2011-10-21 14:37:10 +020045 int match = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +020046
Eric Biggers21d41202019-07-02 14:17:00 -070047 if (crypto_is_larval(q))
48 continue;
49
Steffen Klasserta38f7902011-09-27 07:23:50 +020050 if ((q->cra_flags ^ p->cru_type) & p->cru_mask)
51 continue;
52
53 if (strlen(p->cru_driver_name))
54 match = !strcmp(q->cra_driver_name,
55 p->cru_driver_name);
56 else if (!exact)
57 match = !strcmp(q->cra_name, p->cru_name);
58
Herbert Xu016baaa2015-04-07 21:27:01 +080059 if (!match)
60 continue;
61
62 if (unlikely(!crypto_mod_get(q)))
63 continue;
64
65 alg = q;
66 break;
Steffen Klasserta38f7902011-09-27 07:23:50 +020067 }
68
69 up_read(&crypto_alg_sem);
70
71 return alg;
72}
73
Steffen Klassert07a5fa42011-09-27 07:48:01 +020074static int crypto_report_cipher(struct sk_buff *skb, struct crypto_alg *alg)
75{
76 struct crypto_report_cipher rcipher;
77
Eric Biggers37db69e2018-11-03 14:56:03 -070078 memset(&rcipher, 0, sizeof(rcipher));
79
80 strscpy(rcipher.type, "cipher", sizeof(rcipher.type));
Steffen Klassert07a5fa42011-09-27 07:48:01 +020081
82 rcipher.blocksize = alg->cra_blocksize;
83 rcipher.min_keysize = alg->cra_cipher.cia_min_keysize;
84 rcipher.max_keysize = alg->cra_cipher.cia_max_keysize;
85
Eric Biggers37db69e2018-11-03 14:56:03 -070086 return nla_put(skb, CRYPTOCFGA_REPORT_CIPHER,
87 sizeof(rcipher), &rcipher);
Steffen Klassert07a5fa42011-09-27 07:48:01 +020088}
89
Steffen Klassert540b97c2011-09-27 07:48:48 +020090static int crypto_report_comp(struct sk_buff *skb, struct crypto_alg *alg)
91{
92 struct crypto_report_comp rcomp;
93
Eric Biggers37db69e2018-11-03 14:56:03 -070094 memset(&rcomp, 0, sizeof(rcomp));
Steffen Klassert540b97c2011-09-27 07:48:48 +020095
Eric Biggers37db69e2018-11-03 14:56:03 -070096 strscpy(rcomp.type, "compression", sizeof(rcomp.type));
97
98 return nla_put(skb, CRYPTOCFGA_REPORT_COMPRESS, sizeof(rcomp), &rcomp);
Steffen Klassert540b97c2011-09-27 07:48:48 +020099}
100
Steffen Klasserta38f7902011-09-27 07:23:50 +0200101static int crypto_report_one(struct crypto_alg *alg,
102 struct crypto_user_alg *ualg, struct sk_buff *skb)
103{
Eric Biggers37db69e2018-11-03 14:56:03 -0700104 memset(ualg, 0, sizeof(*ualg));
105
106 strscpy(ualg->cru_name, alg->cra_name, sizeof(ualg->cru_name));
107 strscpy(ualg->cru_driver_name, alg->cra_driver_name,
Mathias Krause9a5467bf2013-02-05 18:19:13 +0100108 sizeof(ualg->cru_driver_name));
Eric Biggers37db69e2018-11-03 14:56:03 -0700109 strscpy(ualg->cru_module_name, module_name(alg->cra_module),
Mathias Krause9a5467bf2013-02-05 18:19:13 +0100110 sizeof(ualg->cru_module_name));
Steffen Klasserta38f7902011-09-27 07:23:50 +0200111
Mathias Krause9a5467bf2013-02-05 18:19:13 +0100112 ualg->cru_type = 0;
113 ualg->cru_mask = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200114 ualg->cru_flags = alg->cra_flags;
Eric Biggersce8614a2017-12-29 10:00:46 -0600115 ualg->cru_refcnt = refcount_read(&alg->cra_refcnt);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200116
David S. Miller6662df32012-04-01 20:19:05 -0400117 if (nla_put_u32(skb, CRYPTOCFGA_PRIORITY_VAL, alg->cra_priority))
118 goto nla_put_failure;
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200119 if (alg->cra_flags & CRYPTO_ALG_LARVAL) {
120 struct crypto_report_larval rl;
121
Eric Biggers37db69e2018-11-03 14:56:03 -0700122 memset(&rl, 0, sizeof(rl));
123 strscpy(rl.type, "larval", sizeof(rl.type));
124 if (nla_put(skb, CRYPTOCFGA_REPORT_LARVAL, sizeof(rl), &rl))
David S. Miller6662df32012-04-01 20:19:05 -0400125 goto nla_put_failure;
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200126 goto out;
127 }
128
Steffen Klassertb6aa63c2011-09-27 07:24:29 +0200129 if (alg->cra_type && alg->cra_type->report) {
130 if (alg->cra_type->report(skb, alg))
131 goto nla_put_failure;
Steffen Klassert07a5fa42011-09-27 07:48:01 +0200132
133 goto out;
134 }
135
136 switch (alg->cra_flags & (CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_LARVAL)) {
137 case CRYPTO_ALG_TYPE_CIPHER:
138 if (crypto_report_cipher(skb, alg))
139 goto nla_put_failure;
140
141 break;
Steffen Klassert540b97c2011-09-27 07:48:48 +0200142 case CRYPTO_ALG_TYPE_COMPRESS:
143 if (crypto_report_comp(skb, alg))
144 goto nla_put_failure;
145
146 break;
Steffen Klassertb6aa63c2011-09-27 07:24:29 +0200147 }
148
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200149out:
Steffen Klasserta38f7902011-09-27 07:23:50 +0200150 return 0;
151
152nla_put_failure:
153 return -EMSGSIZE;
154}
155
156static int crypto_report_alg(struct crypto_alg *alg,
157 struct crypto_dump_info *info)
158{
159 struct sk_buff *in_skb = info->in_skb;
160 struct sk_buff *skb = info->out_skb;
161 struct nlmsghdr *nlh;
162 struct crypto_user_alg *ualg;
163 int err = 0;
164
Eric W. Biederman15e47302012-09-07 20:12:54 +0000165 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, info->nlmsg_seq,
Steffen Klasserta38f7902011-09-27 07:23:50 +0200166 CRYPTO_MSG_GETALG, sizeof(*ualg), info->nlmsg_flags);
167 if (!nlh) {
168 err = -EMSGSIZE;
169 goto out;
170 }
171
172 ualg = nlmsg_data(nlh);
173
174 err = crypto_report_one(alg, ualg, skb);
175 if (err) {
176 nlmsg_cancel(skb, nlh);
177 goto out;
178 }
179
180 nlmsg_end(skb, nlh);
181
182out:
183 return err;
184}
185
186static int crypto_report(struct sk_buff *in_skb, struct nlmsghdr *in_nlh,
187 struct nlattr **attrs)
188{
189 struct crypto_user_alg *p = nlmsg_data(in_nlh);
190 struct crypto_alg *alg;
191 struct sk_buff *skb;
192 struct crypto_dump_info info;
193 int err;
194
Mathias Krause8fd61d32013-02-05 18:19:15 +0100195 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
196 return -EINVAL;
197
Herbert Xu5d4a5e72014-11-20 12:44:32 +0800198 alg = crypto_alg_match(p, 0);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200199 if (!alg)
200 return -ENOENT;
201
Herbert Xu016baaa2015-04-07 21:27:01 +0800202 err = -ENOMEM;
Jia-Ju Bai9a69b7a2018-01-25 18:06:02 +0800203 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200204 if (!skb)
Herbert Xu016baaa2015-04-07 21:27:01 +0800205 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200206
207 info.in_skb = in_skb;
208 info.out_skb = skb;
209 info.nlmsg_seq = in_nlh->nlmsg_seq;
210 info.nlmsg_flags = 0;
211
212 err = crypto_report_alg(alg, &info);
Herbert Xu016baaa2015-04-07 21:27:01 +0800213
214drop_alg:
215 crypto_mod_put(alg);
216
Steffen Klasserta38f7902011-09-27 07:23:50 +0200217 if (err)
218 return err;
219
Eric W. Biederman15e47302012-09-07 20:12:54 +0000220 return nlmsg_unicast(crypto_nlsk, skb, NETLINK_CB(in_skb).portid);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200221}
222
223static int crypto_dump_report(struct sk_buff *skb, struct netlink_callback *cb)
224{
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800225 const size_t start_pos = cb->args[0];
226 size_t pos = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200227 struct crypto_dump_info info;
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800228 struct crypto_alg *alg;
229 int res;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200230
231 info.in_skb = cb->skb;
232 info.out_skb = skb;
233 info.nlmsg_seq = cb->nlh->nlmsg_seq;
234 info.nlmsg_flags = NLM_F_MULTI;
235
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800236 down_read(&crypto_alg_sem);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200237 list_for_each_entry(alg, &crypto_alg_list, cra_list) {
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800238 if (pos >= start_pos) {
239 res = crypto_report_alg(alg, &info);
240 if (res == -EMSGSIZE)
241 break;
242 if (res)
243 goto out;
244 }
245 pos++;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200246 }
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800247 cb->args[0] = pos;
248 res = skb->len;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200249out:
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800250 up_read(&crypto_alg_sem);
251 return res;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200252}
253
254static int crypto_dump_report_done(struct netlink_callback *cb)
255{
256 return 0;
257}
258
259static int crypto_update_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
260 struct nlattr **attrs)
261{
262 struct crypto_alg *alg;
263 struct crypto_user_alg *p = nlmsg_data(nlh);
264 struct nlattr *priority = attrs[CRYPTOCFGA_PRIORITY_VAL];
265 LIST_HEAD(list);
266
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700267 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800268 return -EPERM;
269
Mathias Krause8fd61d32013-02-05 18:19:15 +0100270 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
271 return -EINVAL;
272
Steffen Klasserta38f7902011-09-27 07:23:50 +0200273 if (priority && !strlen(p->cru_driver_name))
274 return -EINVAL;
275
276 alg = crypto_alg_match(p, 1);
277 if (!alg)
278 return -ENOENT;
279
280 down_write(&crypto_alg_sem);
281
282 crypto_remove_spawns(alg, &list, NULL);
283
284 if (priority)
285 alg->cra_priority = nla_get_u32(priority);
286
287 up_write(&crypto_alg_sem);
288
Herbert Xu016baaa2015-04-07 21:27:01 +0800289 crypto_mod_put(alg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200290 crypto_remove_final(&list);
291
292 return 0;
293}
294
295static int crypto_del_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
296 struct nlattr **attrs)
297{
298 struct crypto_alg *alg;
299 struct crypto_user_alg *p = nlmsg_data(nlh);
Herbert Xu016baaa2015-04-07 21:27:01 +0800300 int err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200301
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700302 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800303 return -EPERM;
304
Mathias Krause8fd61d32013-02-05 18:19:15 +0100305 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
306 return -EINVAL;
307
Steffen Klasserta38f7902011-09-27 07:23:50 +0200308 alg = crypto_alg_match(p, 1);
309 if (!alg)
310 return -ENOENT;
311
312 /* We can not unregister core algorithms such as aes-generic.
313 * We would loose the reference in the crypto_alg_list to this algorithm
314 * if we try to unregister. Unregistering such an algorithm without
315 * removing the module is not possible, so we restrict to crypto
316 * instances that are build from templates. */
Herbert Xu016baaa2015-04-07 21:27:01 +0800317 err = -EINVAL;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200318 if (!(alg->cra_flags & CRYPTO_ALG_INSTANCE))
Herbert Xu016baaa2015-04-07 21:27:01 +0800319 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200320
Herbert Xu016baaa2015-04-07 21:27:01 +0800321 err = -EBUSY;
Eric Biggersce8614a2017-12-29 10:00:46 -0600322 if (refcount_read(&alg->cra_refcnt) > 2)
Herbert Xu016baaa2015-04-07 21:27:01 +0800323 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200324
Herbert Xu016baaa2015-04-07 21:27:01 +0800325 err = crypto_unregister_instance((struct crypto_instance *)alg);
326
327drop_alg:
328 crypto_mod_put(alg);
329 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200330}
331
332static int crypto_add_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
333 struct nlattr **attrs)
334{
Jesper Juhl0cfdec72012-01-29 23:39:22 +0100335 int exact = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200336 const char *name;
337 struct crypto_alg *alg;
338 struct crypto_user_alg *p = nlmsg_data(nlh);
339 struct nlattr *priority = attrs[CRYPTOCFGA_PRIORITY_VAL];
340
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700341 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800342 return -EPERM;
343
Mathias Krause8fd61d32013-02-05 18:19:15 +0100344 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
345 return -EINVAL;
346
Steffen Klasserta38f7902011-09-27 07:23:50 +0200347 if (strlen(p->cru_driver_name))
348 exact = 1;
349
350 if (priority && !exact)
351 return -EINVAL;
352
353 alg = crypto_alg_match(p, exact);
Herbert Xu016baaa2015-04-07 21:27:01 +0800354 if (alg) {
355 crypto_mod_put(alg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200356 return -EEXIST;
Herbert Xu016baaa2015-04-07 21:27:01 +0800357 }
Steffen Klasserta38f7902011-09-27 07:23:50 +0200358
359 if (strlen(p->cru_driver_name))
360 name = p->cru_driver_name;
361 else
362 name = p->cru_name;
363
Herbert Xu6cf80a22016-07-12 13:17:49 +0800364 alg = crypto_alg_mod_lookup(name, p->cru_type, p->cru_mask);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200365 if (IS_ERR(alg))
366 return PTR_ERR(alg);
367
368 down_write(&crypto_alg_sem);
369
370 if (priority)
371 alg->cra_priority = nla_get_u32(priority);
372
373 up_write(&crypto_alg_sem);
374
375 crypto_mod_put(alg);
376
377 return 0;
378}
379
Herbert Xu9aa867e2015-06-21 19:11:45 +0800380static int crypto_del_rng(struct sk_buff *skb, struct nlmsghdr *nlh,
381 struct nlattr **attrs)
382{
383 if (!netlink_capable(skb, CAP_NET_ADMIN))
384 return -EPERM;
385 return crypto_del_default_rng();
386}
387
Steffen Klasserta38f7902011-09-27 07:23:50 +0200388#define MSGSIZE(type) sizeof(struct type)
389
390static const int crypto_msg_min[CRYPTO_NR_MSGTYPES] = {
391 [CRYPTO_MSG_NEWALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
392 [CRYPTO_MSG_DELALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
393 [CRYPTO_MSG_UPDATEALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
Mathias Krause055ddaa2016-06-22 20:29:37 +0200394 [CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
Herbert Xu9aa867e2015-06-21 19:11:45 +0800395 [CRYPTO_MSG_DELRNG - CRYPTO_MSG_BASE] = 0,
Corentin Labbecac58182018-09-19 10:10:54 +0000396 [CRYPTO_MSG_GETSTAT - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
Steffen Klasserta38f7902011-09-27 07:23:50 +0200397};
398
399static const struct nla_policy crypto_policy[CRYPTOCFGA_MAX+1] = {
400 [CRYPTOCFGA_PRIORITY_VAL] = { .type = NLA_U32},
401};
402
403#undef MSGSIZE
404
Mathias Krausea84fb792013-02-24 14:09:12 +0100405static const struct crypto_link {
Steffen Klasserta38f7902011-09-27 07:23:50 +0200406 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
407 int (*dump)(struct sk_buff *, struct netlink_callback *);
408 int (*done)(struct netlink_callback *);
409} crypto_dispatch[CRYPTO_NR_MSGTYPES] = {
410 [CRYPTO_MSG_NEWALG - CRYPTO_MSG_BASE] = { .doit = crypto_add_alg},
411 [CRYPTO_MSG_DELALG - CRYPTO_MSG_BASE] = { .doit = crypto_del_alg},
412 [CRYPTO_MSG_UPDATEALG - CRYPTO_MSG_BASE] = { .doit = crypto_update_alg},
413 [CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE] = { .doit = crypto_report,
414 .dump = crypto_dump_report,
415 .done = crypto_dump_report_done},
Herbert Xu9aa867e2015-06-21 19:11:45 +0800416 [CRYPTO_MSG_DELRNG - CRYPTO_MSG_BASE] = { .doit = crypto_del_rng },
Corentin Labbe0c99c2a2018-12-13 08:36:37 +0000417 [CRYPTO_MSG_GETSTAT - CRYPTO_MSG_BASE] = { .doit = crypto_reportstat},
Steffen Klasserta38f7902011-09-27 07:23:50 +0200418};
419
Johannes Berg2d4bc932017-04-12 14:34:04 +0200420static int crypto_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
421 struct netlink_ext_ack *extack)
Steffen Klasserta38f7902011-09-27 07:23:50 +0200422{
423 struct nlattr *attrs[CRYPTOCFGA_MAX+1];
Mathias Krausea84fb792013-02-24 14:09:12 +0100424 const struct crypto_link *link;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200425 int type, err;
426
427 type = nlh->nlmsg_type;
428 if (type > CRYPTO_MSG_MAX)
429 return -EINVAL;
430
431 type -= CRYPTO_MSG_BASE;
432 link = &crypto_dispatch[type];
433
Steffen Klasserta38f7902011-09-27 07:23:50 +0200434 if ((type == (CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE) &&
435 (nlh->nlmsg_flags & NLM_F_DUMP))) {
Steffen Klassert5219a532012-03-29 09:04:46 +0200436 struct crypto_alg *alg;
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800437 unsigned long dump_alloc = 0;
Steffen Klassert5219a532012-03-29 09:04:46 +0200438
Steffen Klasserta38f7902011-09-27 07:23:50 +0200439 if (link->dump == NULL)
440 return -EINVAL;
Steffen Klassert5219a532012-03-29 09:04:46 +0200441
Mathias Krause63e41eb2016-02-01 14:27:30 +0100442 down_read(&crypto_alg_sem);
Steffen Klassert5219a532012-03-29 09:04:46 +0200443 list_for_each_entry(alg, &crypto_alg_list, cra_list)
444 dump_alloc += CRYPTO_REPORT_MAXSIZE;
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800445 up_read(&crypto_alg_sem);
Steffen Klassert5219a532012-03-29 09:04:46 +0200446
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000447 {
448 struct netlink_dump_control c = {
449 .dump = link->dump,
450 .done = link->done,
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800451 .min_dump_alloc = min(dump_alloc, 65535UL),
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000452 };
Mathias Krause63e41eb2016-02-01 14:27:30 +0100453 err = netlink_dump_start(crypto_nlsk, skb, nlh, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000454 }
Mathias Krause63e41eb2016-02-01 14:27:30 +0100455
456 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200457 }
458
Johannes Berg8cb08172019-04-26 14:07:28 +0200459 err = nlmsg_parse_deprecated(nlh, crypto_msg_min[type], attrs,
460 CRYPTOCFGA_MAX, crypto_policy, extack);
Herbert Xufd2efd92016-06-23 18:06:02 +0800461 if (err < 0)
462 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200463
464 if (link->doit == NULL)
465 return -EINVAL;
466
467 return link->doit(skb, nlh, attrs);
468}
469
470static void crypto_netlink_rcv(struct sk_buff *skb)
471{
472 mutex_lock(&crypto_cfg_mutex);
473 netlink_rcv_skb(skb, &crypto_user_rcv_msg);
474 mutex_unlock(&crypto_cfg_mutex);
475}
476
477static int __init crypto_user_init(void)
478{
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000479 struct netlink_kernel_cfg cfg = {
480 .input = crypto_netlink_rcv,
481 };
482
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000483 crypto_nlsk = netlink_kernel_create(&init_net, NETLINK_CRYPTO, &cfg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200484 if (!crypto_nlsk)
485 return -ENOMEM;
486
487 return 0;
488}
489
490static void __exit crypto_user_exit(void)
491{
492 netlink_kernel_release(crypto_nlsk);
493}
494
495module_init(crypto_user_init);
496module_exit(crypto_user_exit);
497MODULE_LICENSE("GPL");
498MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
499MODULE_DESCRIPTION("Crypto userspace configuration API");
Stephan Mueller476c7fe2014-11-24 17:12:45 +0100500MODULE_ALIAS("net-pf-16-proto-21");