blob: 3cca814348a261e586e8701f1d7e9d77df276d6f [file] [log] [blame]
Steffen Klasserta38f7902011-09-27 07:23:50 +02001/*
2 * Crypto user configuration API.
3 *
4 * Copyright (C) 2011 secunet Security Networks AG
5 * Copyright (C) 2011 Steffen Klassert <steffen.klassert@secunet.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2, as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21#include <linux/module.h>
22#include <linux/crypto.h>
23#include <linux/cryptouser.h>
Steffen Klassert1e122992012-03-29 09:03:47 +020024#include <linux/sched.h>
Steffen Klasserta38f7902011-09-27 07:23:50 +020025#include <net/netlink.h>
26#include <linux/security.h>
27#include <net/net_namespace.h>
Steffen Klassert1e122992012-03-29 09:03:47 +020028#include <crypto/internal/skcipher.h>
Herbert Xu9aa867e2015-06-21 19:11:45 +080029#include <crypto/internal/rng.h>
Tadeusz Struk3c339ab2015-06-16 10:30:55 -070030#include <crypto/akcipher.h>
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +010031#include <crypto/kpp.h>
Steffen Klassert1e122992012-03-29 09:03:47 +020032
Steffen Klasserta38f7902011-09-27 07:23:50 +020033#include "internal.h"
34
Mathias Krause8fd61d32013-02-05 18:19:15 +010035#define null_terminated(x) (strnlen(x, sizeof(x)) < sizeof(x))
36
Jussi Kivilinna66ce0b02012-08-28 16:46:54 +030037static DEFINE_MUTEX(crypto_cfg_mutex);
Steffen Klasserta38f7902011-09-27 07:23:50 +020038
39/* The crypto netlink socket */
40static struct sock *crypto_nlsk;
41
42struct crypto_dump_info {
43 struct sk_buff *in_skb;
44 struct sk_buff *out_skb;
45 u32 nlmsg_seq;
46 u16 nlmsg_flags;
47};
48
49static struct crypto_alg *crypto_alg_match(struct crypto_user_alg *p, int exact)
50{
Steffen Klasserta38f7902011-09-27 07:23:50 +020051 struct crypto_alg *q, *alg = NULL;
52
53 down_read(&crypto_alg_sem);
54
Steffen Klasserta38f7902011-09-27 07:23:50 +020055 list_for_each_entry(q, &crypto_alg_list, cra_list) {
Herbert Xue6ea64e2011-10-21 14:37:10 +020056 int match = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +020057
Eric Biggers015c2052019-07-02 14:17:00 -070058 if (crypto_is_larval(q))
59 continue;
60
Steffen Klasserta38f7902011-09-27 07:23:50 +020061 if ((q->cra_flags ^ p->cru_type) & p->cru_mask)
62 continue;
63
64 if (strlen(p->cru_driver_name))
65 match = !strcmp(q->cra_driver_name,
66 p->cru_driver_name);
67 else if (!exact)
68 match = !strcmp(q->cra_name, p->cru_name);
69
Herbert Xu016baaa2015-04-07 21:27:01 +080070 if (!match)
71 continue;
72
73 if (unlikely(!crypto_mod_get(q)))
74 continue;
75
76 alg = q;
77 break;
Steffen Klasserta38f7902011-09-27 07:23:50 +020078 }
79
80 up_read(&crypto_alg_sem);
81
82 return alg;
83}
84
Steffen Klassert07a5fa42011-09-27 07:48:01 +020085static int crypto_report_cipher(struct sk_buff *skb, struct crypto_alg *alg)
86{
87 struct crypto_report_cipher rcipher;
88
Eric Biggersa0f044f2018-11-03 14:56:00 -070089 strncpy(rcipher.type, "cipher", sizeof(rcipher.type));
Steffen Klassert07a5fa42011-09-27 07:48:01 +020090
91 rcipher.blocksize = alg->cra_blocksize;
92 rcipher.min_keysize = alg->cra_cipher.cia_min_keysize;
93 rcipher.max_keysize = alg->cra_cipher.cia_max_keysize;
94
David S. Miller6662df32012-04-01 20:19:05 -040095 if (nla_put(skb, CRYPTOCFGA_REPORT_CIPHER,
96 sizeof(struct crypto_report_cipher), &rcipher))
97 goto nla_put_failure;
Steffen Klassert07a5fa42011-09-27 07:48:01 +020098 return 0;
99
100nla_put_failure:
101 return -EMSGSIZE;
102}
103
Steffen Klassert540b97c2011-09-27 07:48:48 +0200104static int crypto_report_comp(struct sk_buff *skb, struct crypto_alg *alg)
105{
106 struct crypto_report_comp rcomp;
107
Eric Biggersa0f044f2018-11-03 14:56:00 -0700108 strncpy(rcomp.type, "compression", sizeof(rcomp.type));
David S. Miller6662df32012-04-01 20:19:05 -0400109 if (nla_put(skb, CRYPTOCFGA_REPORT_COMPRESS,
110 sizeof(struct crypto_report_comp), &rcomp))
111 goto nla_put_failure;
Steffen Klassert540b97c2011-09-27 07:48:48 +0200112 return 0;
113
114nla_put_failure:
115 return -EMSGSIZE;
116}
117
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100118static int crypto_report_acomp(struct sk_buff *skb, struct crypto_alg *alg)
119{
120 struct crypto_report_acomp racomp;
121
Eric Biggersa0f044f2018-11-03 14:56:00 -0700122 strncpy(racomp.type, "acomp", sizeof(racomp.type));
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100123
124 if (nla_put(skb, CRYPTOCFGA_REPORT_ACOMP,
125 sizeof(struct crypto_report_acomp), &racomp))
126 goto nla_put_failure;
127 return 0;
128
129nla_put_failure:
130 return -EMSGSIZE;
131}
132
Tadeusz Struk3c339ab2015-06-16 10:30:55 -0700133static int crypto_report_akcipher(struct sk_buff *skb, struct crypto_alg *alg)
134{
135 struct crypto_report_akcipher rakcipher;
136
Eric Biggersa0f044f2018-11-03 14:56:00 -0700137 strncpy(rakcipher.type, "akcipher", sizeof(rakcipher.type));
Tadeusz Struk3c339ab2015-06-16 10:30:55 -0700138
139 if (nla_put(skb, CRYPTOCFGA_REPORT_AKCIPHER,
140 sizeof(struct crypto_report_akcipher), &rakcipher))
141 goto nla_put_failure;
142 return 0;
143
144nla_put_failure:
145 return -EMSGSIZE;
146}
147
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100148static int crypto_report_kpp(struct sk_buff *skb, struct crypto_alg *alg)
149{
150 struct crypto_report_kpp rkpp;
151
Eric Biggersa0f044f2018-11-03 14:56:00 -0700152 strncpy(rkpp.type, "kpp", sizeof(rkpp.type));
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100153
154 if (nla_put(skb, CRYPTOCFGA_REPORT_KPP,
155 sizeof(struct crypto_report_kpp), &rkpp))
156 goto nla_put_failure;
157 return 0;
158
159nla_put_failure:
160 return -EMSGSIZE;
161}
162
Steffen Klasserta38f7902011-09-27 07:23:50 +0200163static int crypto_report_one(struct crypto_alg *alg,
164 struct crypto_user_alg *ualg, struct sk_buff *skb)
165{
Eric Biggersa0f044f2018-11-03 14:56:00 -0700166 strncpy(ualg->cru_name, alg->cra_name, sizeof(ualg->cru_name));
167 strncpy(ualg->cru_driver_name, alg->cra_driver_name,
Mathias Krause9a5467b2013-02-05 18:19:13 +0100168 sizeof(ualg->cru_driver_name));
Eric Biggersa0f044f2018-11-03 14:56:00 -0700169 strncpy(ualg->cru_module_name, module_name(alg->cra_module),
Mathias Krause9a5467b2013-02-05 18:19:13 +0100170 sizeof(ualg->cru_module_name));
Steffen Klasserta38f7902011-09-27 07:23:50 +0200171
Mathias Krause9a5467b2013-02-05 18:19:13 +0100172 ualg->cru_type = 0;
173 ualg->cru_mask = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200174 ualg->cru_flags = alg->cra_flags;
Eric Biggersce8614a2017-12-29 10:00:46 -0600175 ualg->cru_refcnt = refcount_read(&alg->cra_refcnt);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200176
David S. Miller6662df32012-04-01 20:19:05 -0400177 if (nla_put_u32(skb, CRYPTOCFGA_PRIORITY_VAL, alg->cra_priority))
178 goto nla_put_failure;
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200179 if (alg->cra_flags & CRYPTO_ALG_LARVAL) {
180 struct crypto_report_larval rl;
181
Eric Biggersa0f044f2018-11-03 14:56:00 -0700182 strncpy(rl.type, "larval", sizeof(rl.type));
David S. Miller6662df32012-04-01 20:19:05 -0400183 if (nla_put(skb, CRYPTOCFGA_REPORT_LARVAL,
184 sizeof(struct crypto_report_larval), &rl))
185 goto nla_put_failure;
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200186 goto out;
187 }
188
Steffen Klassertb6aa63c2011-09-27 07:24:29 +0200189 if (alg->cra_type && alg->cra_type->report) {
190 if (alg->cra_type->report(skb, alg))
191 goto nla_put_failure;
Steffen Klassert07a5fa42011-09-27 07:48:01 +0200192
193 goto out;
194 }
195
196 switch (alg->cra_flags & (CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_LARVAL)) {
197 case CRYPTO_ALG_TYPE_CIPHER:
198 if (crypto_report_cipher(skb, alg))
199 goto nla_put_failure;
200
201 break;
Steffen Klassert540b97c2011-09-27 07:48:48 +0200202 case CRYPTO_ALG_TYPE_COMPRESS:
203 if (crypto_report_comp(skb, alg))
204 goto nla_put_failure;
205
206 break;
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100207 case CRYPTO_ALG_TYPE_ACOMPRESS:
208 if (crypto_report_acomp(skb, alg))
209 goto nla_put_failure;
Tadeusz Struk3c339ab2015-06-16 10:30:55 -0700210
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100211 break;
Tadeusz Struk3c339ab2015-06-16 10:30:55 -0700212 case CRYPTO_ALG_TYPE_AKCIPHER:
213 if (crypto_report_akcipher(skb, alg))
214 goto nla_put_failure;
215
216 break;
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100217 case CRYPTO_ALG_TYPE_KPP:
218 if (crypto_report_kpp(skb, alg))
219 goto nla_put_failure;
220 break;
Steffen Klassertb6aa63c2011-09-27 07:24:29 +0200221 }
222
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200223out:
Steffen Klasserta38f7902011-09-27 07:23:50 +0200224 return 0;
225
226nla_put_failure:
227 return -EMSGSIZE;
228}
229
230static int crypto_report_alg(struct crypto_alg *alg,
231 struct crypto_dump_info *info)
232{
233 struct sk_buff *in_skb = info->in_skb;
234 struct sk_buff *skb = info->out_skb;
235 struct nlmsghdr *nlh;
236 struct crypto_user_alg *ualg;
237 int err = 0;
238
Eric W. Biederman15e47302012-09-07 20:12:54 +0000239 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, info->nlmsg_seq,
Steffen Klasserta38f7902011-09-27 07:23:50 +0200240 CRYPTO_MSG_GETALG, sizeof(*ualg), info->nlmsg_flags);
241 if (!nlh) {
242 err = -EMSGSIZE;
243 goto out;
244 }
245
246 ualg = nlmsg_data(nlh);
247
248 err = crypto_report_one(alg, ualg, skb);
249 if (err) {
250 nlmsg_cancel(skb, nlh);
251 goto out;
252 }
253
254 nlmsg_end(skb, nlh);
255
256out:
257 return err;
258}
259
260static int crypto_report(struct sk_buff *in_skb, struct nlmsghdr *in_nlh,
261 struct nlattr **attrs)
262{
263 struct crypto_user_alg *p = nlmsg_data(in_nlh);
264 struct crypto_alg *alg;
265 struct sk_buff *skb;
266 struct crypto_dump_info info;
267 int err;
268
Mathias Krause8fd61d32013-02-05 18:19:15 +0100269 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
270 return -EINVAL;
271
Herbert Xu5d4a5e72014-11-20 12:44:32 +0800272 alg = crypto_alg_match(p, 0);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200273 if (!alg)
274 return -ENOENT;
275
Herbert Xu016baaa2015-04-07 21:27:01 +0800276 err = -ENOMEM;
Jia-Ju Bai9a69b7a2018-01-25 18:06:02 +0800277 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200278 if (!skb)
Herbert Xu016baaa2015-04-07 21:27:01 +0800279 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200280
281 info.in_skb = in_skb;
282 info.out_skb = skb;
283 info.nlmsg_seq = in_nlh->nlmsg_seq;
284 info.nlmsg_flags = 0;
285
286 err = crypto_report_alg(alg, &info);
Herbert Xu016baaa2015-04-07 21:27:01 +0800287
288drop_alg:
289 crypto_mod_put(alg);
290
Steffen Klasserta38f7902011-09-27 07:23:50 +0200291 if (err)
292 return err;
293
Eric W. Biederman15e47302012-09-07 20:12:54 +0000294 return nlmsg_unicast(crypto_nlsk, skb, NETLINK_CB(in_skb).portid);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200295}
296
297static int crypto_dump_report(struct sk_buff *skb, struct netlink_callback *cb)
298{
299 struct crypto_alg *alg;
300 struct crypto_dump_info info;
301 int err;
302
303 if (cb->args[0])
304 goto out;
305
306 cb->args[0] = 1;
307
308 info.in_skb = cb->skb;
309 info.out_skb = skb;
310 info.nlmsg_seq = cb->nlh->nlmsg_seq;
311 info.nlmsg_flags = NLM_F_MULTI;
312
313 list_for_each_entry(alg, &crypto_alg_list, cra_list) {
314 err = crypto_report_alg(alg, &info);
315 if (err)
316 goto out_err;
317 }
318
319out:
320 return skb->len;
321out_err:
322 return err;
323}
324
325static int crypto_dump_report_done(struct netlink_callback *cb)
326{
327 return 0;
328}
329
330static int crypto_update_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
331 struct nlattr **attrs)
332{
333 struct crypto_alg *alg;
334 struct crypto_user_alg *p = nlmsg_data(nlh);
335 struct nlattr *priority = attrs[CRYPTOCFGA_PRIORITY_VAL];
336 LIST_HEAD(list);
337
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700338 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800339 return -EPERM;
340
Mathias Krause8fd61d32013-02-05 18:19:15 +0100341 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
342 return -EINVAL;
343
Steffen Klasserta38f7902011-09-27 07:23:50 +0200344 if (priority && !strlen(p->cru_driver_name))
345 return -EINVAL;
346
347 alg = crypto_alg_match(p, 1);
348 if (!alg)
349 return -ENOENT;
350
351 down_write(&crypto_alg_sem);
352
353 crypto_remove_spawns(alg, &list, NULL);
354
355 if (priority)
356 alg->cra_priority = nla_get_u32(priority);
357
358 up_write(&crypto_alg_sem);
359
Herbert Xu016baaa2015-04-07 21:27:01 +0800360 crypto_mod_put(alg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200361 crypto_remove_final(&list);
362
363 return 0;
364}
365
366static int crypto_del_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
367 struct nlattr **attrs)
368{
369 struct crypto_alg *alg;
370 struct crypto_user_alg *p = nlmsg_data(nlh);
Herbert Xu016baaa2015-04-07 21:27:01 +0800371 int err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200372
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700373 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800374 return -EPERM;
375
Mathias Krause8fd61d32013-02-05 18:19:15 +0100376 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
377 return -EINVAL;
378
Steffen Klasserta38f7902011-09-27 07:23:50 +0200379 alg = crypto_alg_match(p, 1);
380 if (!alg)
381 return -ENOENT;
382
383 /* We can not unregister core algorithms such as aes-generic.
384 * We would loose the reference in the crypto_alg_list to this algorithm
385 * if we try to unregister. Unregistering such an algorithm without
386 * removing the module is not possible, so we restrict to crypto
387 * instances that are build from templates. */
Herbert Xu016baaa2015-04-07 21:27:01 +0800388 err = -EINVAL;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200389 if (!(alg->cra_flags & CRYPTO_ALG_INSTANCE))
Herbert Xu016baaa2015-04-07 21:27:01 +0800390 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200391
Herbert Xu016baaa2015-04-07 21:27:01 +0800392 err = -EBUSY;
Eric Biggersce8614a2017-12-29 10:00:46 -0600393 if (refcount_read(&alg->cra_refcnt) > 2)
Herbert Xu016baaa2015-04-07 21:27:01 +0800394 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200395
Herbert Xu016baaa2015-04-07 21:27:01 +0800396 err = crypto_unregister_instance((struct crypto_instance *)alg);
397
398drop_alg:
399 crypto_mod_put(alg);
400 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200401}
402
403static int crypto_add_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
404 struct nlattr **attrs)
405{
Jesper Juhl0cfdec72012-01-29 23:39:22 +0100406 int exact = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200407 const char *name;
408 struct crypto_alg *alg;
409 struct crypto_user_alg *p = nlmsg_data(nlh);
410 struct nlattr *priority = attrs[CRYPTOCFGA_PRIORITY_VAL];
411
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700412 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800413 return -EPERM;
414
Mathias Krause8fd61d32013-02-05 18:19:15 +0100415 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
416 return -EINVAL;
417
Steffen Klasserta38f7902011-09-27 07:23:50 +0200418 if (strlen(p->cru_driver_name))
419 exact = 1;
420
421 if (priority && !exact)
422 return -EINVAL;
423
424 alg = crypto_alg_match(p, exact);
Herbert Xu016baaa2015-04-07 21:27:01 +0800425 if (alg) {
426 crypto_mod_put(alg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200427 return -EEXIST;
Herbert Xu016baaa2015-04-07 21:27:01 +0800428 }
Steffen Klasserta38f7902011-09-27 07:23:50 +0200429
430 if (strlen(p->cru_driver_name))
431 name = p->cru_driver_name;
432 else
433 name = p->cru_name;
434
Herbert Xu6cf80a22016-07-12 13:17:49 +0800435 alg = crypto_alg_mod_lookup(name, p->cru_type, p->cru_mask);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200436 if (IS_ERR(alg))
437 return PTR_ERR(alg);
438
439 down_write(&crypto_alg_sem);
440
441 if (priority)
442 alg->cra_priority = nla_get_u32(priority);
443
444 up_write(&crypto_alg_sem);
445
446 crypto_mod_put(alg);
447
448 return 0;
449}
450
Herbert Xu9aa867e2015-06-21 19:11:45 +0800451static int crypto_del_rng(struct sk_buff *skb, struct nlmsghdr *nlh,
452 struct nlattr **attrs)
453{
454 if (!netlink_capable(skb, CAP_NET_ADMIN))
455 return -EPERM;
456 return crypto_del_default_rng();
457}
458
Steffen Klasserta38f7902011-09-27 07:23:50 +0200459#define MSGSIZE(type) sizeof(struct type)
460
461static const int crypto_msg_min[CRYPTO_NR_MSGTYPES] = {
462 [CRYPTO_MSG_NEWALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
463 [CRYPTO_MSG_DELALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
464 [CRYPTO_MSG_UPDATEALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
Mathias Krause055ddaa2016-06-22 20:29:37 +0200465 [CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
Herbert Xu9aa867e2015-06-21 19:11:45 +0800466 [CRYPTO_MSG_DELRNG - CRYPTO_MSG_BASE] = 0,
Steffen Klasserta38f7902011-09-27 07:23:50 +0200467};
468
469static const struct nla_policy crypto_policy[CRYPTOCFGA_MAX+1] = {
470 [CRYPTOCFGA_PRIORITY_VAL] = { .type = NLA_U32},
471};
472
473#undef MSGSIZE
474
Mathias Krausea84fb792013-02-24 14:09:12 +0100475static const struct crypto_link {
Steffen Klasserta38f7902011-09-27 07:23:50 +0200476 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
477 int (*dump)(struct sk_buff *, struct netlink_callback *);
478 int (*done)(struct netlink_callback *);
479} crypto_dispatch[CRYPTO_NR_MSGTYPES] = {
480 [CRYPTO_MSG_NEWALG - CRYPTO_MSG_BASE] = { .doit = crypto_add_alg},
481 [CRYPTO_MSG_DELALG - CRYPTO_MSG_BASE] = { .doit = crypto_del_alg},
482 [CRYPTO_MSG_UPDATEALG - CRYPTO_MSG_BASE] = { .doit = crypto_update_alg},
483 [CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE] = { .doit = crypto_report,
484 .dump = crypto_dump_report,
485 .done = crypto_dump_report_done},
Herbert Xu9aa867e2015-06-21 19:11:45 +0800486 [CRYPTO_MSG_DELRNG - CRYPTO_MSG_BASE] = { .doit = crypto_del_rng },
Steffen Klasserta38f7902011-09-27 07:23:50 +0200487};
488
Johannes Berg2d4bc932017-04-12 14:34:04 +0200489static int crypto_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
490 struct netlink_ext_ack *extack)
Steffen Klasserta38f7902011-09-27 07:23:50 +0200491{
492 struct nlattr *attrs[CRYPTOCFGA_MAX+1];
Mathias Krausea84fb792013-02-24 14:09:12 +0100493 const struct crypto_link *link;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200494 int type, err;
495
496 type = nlh->nlmsg_type;
497 if (type > CRYPTO_MSG_MAX)
498 return -EINVAL;
499
500 type -= CRYPTO_MSG_BASE;
501 link = &crypto_dispatch[type];
502
Steffen Klasserta38f7902011-09-27 07:23:50 +0200503 if ((type == (CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE) &&
504 (nlh->nlmsg_flags & NLM_F_DUMP))) {
Steffen Klassert5219a532012-03-29 09:04:46 +0200505 struct crypto_alg *alg;
506 u16 dump_alloc = 0;
507
Steffen Klasserta38f7902011-09-27 07:23:50 +0200508 if (link->dump == NULL)
509 return -EINVAL;
Steffen Klassert5219a532012-03-29 09:04:46 +0200510
Mathias Krause63e41eb2016-02-01 14:27:30 +0100511 down_read(&crypto_alg_sem);
Steffen Klassert5219a532012-03-29 09:04:46 +0200512 list_for_each_entry(alg, &crypto_alg_list, cra_list)
513 dump_alloc += CRYPTO_REPORT_MAXSIZE;
514
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000515 {
516 struct netlink_dump_control c = {
517 .dump = link->dump,
518 .done = link->done,
Steffen Klassert5219a532012-03-29 09:04:46 +0200519 .min_dump_alloc = dump_alloc,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000520 };
Mathias Krause63e41eb2016-02-01 14:27:30 +0100521 err = netlink_dump_start(crypto_nlsk, skb, nlh, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000522 }
Mathias Krause63e41eb2016-02-01 14:27:30 +0100523 up_read(&crypto_alg_sem);
524
525 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200526 }
527
Herbert Xufd2efd92016-06-23 18:06:02 +0800528 err = nlmsg_parse(nlh, crypto_msg_min[type], attrs, CRYPTOCFGA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +0200529 crypto_policy, extack);
Herbert Xufd2efd92016-06-23 18:06:02 +0800530 if (err < 0)
531 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200532
533 if (link->doit == NULL)
534 return -EINVAL;
535
536 return link->doit(skb, nlh, attrs);
537}
538
539static void crypto_netlink_rcv(struct sk_buff *skb)
540{
541 mutex_lock(&crypto_cfg_mutex);
542 netlink_rcv_skb(skb, &crypto_user_rcv_msg);
543 mutex_unlock(&crypto_cfg_mutex);
544}
545
546static int __init crypto_user_init(void)
547{
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000548 struct netlink_kernel_cfg cfg = {
549 .input = crypto_netlink_rcv,
550 };
551
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000552 crypto_nlsk = netlink_kernel_create(&init_net, NETLINK_CRYPTO, &cfg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200553 if (!crypto_nlsk)
554 return -ENOMEM;
555
556 return 0;
557}
558
559static void __exit crypto_user_exit(void)
560{
561 netlink_kernel_release(crypto_nlsk);
562}
563
564module_init(crypto_user_init);
565module_exit(crypto_user_exit);
566MODULE_LICENSE("GPL");
567MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
568MODULE_DESCRIPTION("Crypto userspace configuration API");
Stephan Mueller476c7fe2014-11-24 17:12:45 +0100569MODULE_ALIAS("net-pf-16-proto-21");