blob: e41f6cc33fff49f2b35ad52504742ba79c70c3b8 [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>
Corentin Labbecac58182018-09-19 10:10:54 +000032#include <crypto/internal/cryptouser.h>
Steffen Klassert1e122992012-03-29 09:03:47 +020033
Steffen Klasserta38f7902011-09-27 07:23:50 +020034#include "internal.h"
35
Mathias Krause8fd61d32013-02-05 18:19:15 +010036#define null_terminated(x) (strnlen(x, sizeof(x)) < sizeof(x))
37
Jussi Kivilinna66ce0b02012-08-28 16:46:54 +030038static DEFINE_MUTEX(crypto_cfg_mutex);
Steffen Klasserta38f7902011-09-27 07:23:50 +020039
40/* The crypto netlink socket */
Corentin Labbecac58182018-09-19 10:10:54 +000041struct sock *crypto_nlsk;
Steffen Klasserta38f7902011-09-27 07:23:50 +020042
43struct crypto_dump_info {
44 struct sk_buff *in_skb;
45 struct sk_buff *out_skb;
46 u32 nlmsg_seq;
47 u16 nlmsg_flags;
48};
49
Corentin Labbecac58182018-09-19 10:10:54 +000050struct crypto_alg *crypto_alg_match(struct crypto_user_alg *p, int exact)
Steffen Klasserta38f7902011-09-27 07:23:50 +020051{
Steffen Klasserta38f7902011-09-27 07:23:50 +020052 struct crypto_alg *q, *alg = NULL;
53
54 down_read(&crypto_alg_sem);
55
Steffen Klasserta38f7902011-09-27 07:23:50 +020056 list_for_each_entry(q, &crypto_alg_list, cra_list) {
Herbert Xue6ea64e2011-10-21 14:37:10 +020057 int match = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +020058
59 if ((q->cra_flags ^ p->cru_type) & p->cru_mask)
60 continue;
61
62 if (strlen(p->cru_driver_name))
63 match = !strcmp(q->cra_driver_name,
64 p->cru_driver_name);
65 else if (!exact)
66 match = !strcmp(q->cra_name, p->cru_name);
67
Herbert Xu016baaa2015-04-07 21:27:01 +080068 if (!match)
69 continue;
70
71 if (unlikely(!crypto_mod_get(q)))
72 continue;
73
74 alg = q;
75 break;
Steffen Klasserta38f7902011-09-27 07:23:50 +020076 }
77
78 up_read(&crypto_alg_sem);
79
80 return alg;
81}
82
Steffen Klassert07a5fa42011-09-27 07:48:01 +020083static int crypto_report_cipher(struct sk_buff *skb, struct crypto_alg *alg)
84{
85 struct crypto_report_cipher rcipher;
86
Herbert Xu44737102017-04-06 16:16:08 +080087 strlcpy(rcipher.type, "cipher", sizeof(rcipher.type));
Steffen Klassert07a5fa42011-09-27 07:48:01 +020088
89 rcipher.blocksize = alg->cra_blocksize;
90 rcipher.min_keysize = alg->cra_cipher.cia_min_keysize;
91 rcipher.max_keysize = alg->cra_cipher.cia_max_keysize;
92
David S. Miller6662df32012-04-01 20:19:05 -040093 if (nla_put(skb, CRYPTOCFGA_REPORT_CIPHER,
94 sizeof(struct crypto_report_cipher), &rcipher))
95 goto nla_put_failure;
Steffen Klassert07a5fa42011-09-27 07:48:01 +020096 return 0;
97
98nla_put_failure:
99 return -EMSGSIZE;
100}
101
Steffen Klassert540b97c2011-09-27 07:48:48 +0200102static int crypto_report_comp(struct sk_buff *skb, struct crypto_alg *alg)
103{
104 struct crypto_report_comp rcomp;
105
Herbert Xu44737102017-04-06 16:16:08 +0800106 strlcpy(rcomp.type, "compression", sizeof(rcomp.type));
David S. Miller6662df32012-04-01 20:19:05 -0400107 if (nla_put(skb, CRYPTOCFGA_REPORT_COMPRESS,
108 sizeof(struct crypto_report_comp), &rcomp))
109 goto nla_put_failure;
Steffen Klassert540b97c2011-09-27 07:48:48 +0200110 return 0;
111
112nla_put_failure:
113 return -EMSGSIZE;
114}
115
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100116static int crypto_report_acomp(struct sk_buff *skb, struct crypto_alg *alg)
117{
118 struct crypto_report_acomp racomp;
119
Herbert Xu44737102017-04-06 16:16:08 +0800120 strlcpy(racomp.type, "acomp", sizeof(racomp.type));
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100121
122 if (nla_put(skb, CRYPTOCFGA_REPORT_ACOMP,
123 sizeof(struct crypto_report_acomp), &racomp))
124 goto nla_put_failure;
125 return 0;
126
127nla_put_failure:
128 return -EMSGSIZE;
129}
130
Tadeusz Struk3c339ab2015-06-16 10:30:55 -0700131static int crypto_report_akcipher(struct sk_buff *skb, struct crypto_alg *alg)
132{
133 struct crypto_report_akcipher rakcipher;
134
Herbert Xu44737102017-04-06 16:16:08 +0800135 strlcpy(rakcipher.type, "akcipher", sizeof(rakcipher.type));
Tadeusz Struk3c339ab2015-06-16 10:30:55 -0700136
137 if (nla_put(skb, CRYPTOCFGA_REPORT_AKCIPHER,
138 sizeof(struct crypto_report_akcipher), &rakcipher))
139 goto nla_put_failure;
140 return 0;
141
142nla_put_failure:
143 return -EMSGSIZE;
144}
145
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100146static int crypto_report_kpp(struct sk_buff *skb, struct crypto_alg *alg)
147{
148 struct crypto_report_kpp rkpp;
149
Herbert Xu44737102017-04-06 16:16:08 +0800150 strlcpy(rkpp.type, "kpp", sizeof(rkpp.type));
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100151
152 if (nla_put(skb, CRYPTOCFGA_REPORT_KPP,
153 sizeof(struct crypto_report_kpp), &rkpp))
154 goto nla_put_failure;
155 return 0;
156
157nla_put_failure:
158 return -EMSGSIZE;
159}
160
Steffen Klasserta38f7902011-09-27 07:23:50 +0200161static int crypto_report_one(struct crypto_alg *alg,
162 struct crypto_user_alg *ualg, struct sk_buff *skb)
163{
Herbert Xu44737102017-04-06 16:16:08 +0800164 strlcpy(ualg->cru_name, alg->cra_name, sizeof(ualg->cru_name));
165 strlcpy(ualg->cru_driver_name, alg->cra_driver_name,
Mathias Krause9a5467b2013-02-05 18:19:13 +0100166 sizeof(ualg->cru_driver_name));
Herbert Xu44737102017-04-06 16:16:08 +0800167 strlcpy(ualg->cru_module_name, module_name(alg->cra_module),
Mathias Krause9a5467b2013-02-05 18:19:13 +0100168 sizeof(ualg->cru_module_name));
Steffen Klasserta38f7902011-09-27 07:23:50 +0200169
Mathias Krause9a5467b2013-02-05 18:19:13 +0100170 ualg->cru_type = 0;
171 ualg->cru_mask = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200172 ualg->cru_flags = alg->cra_flags;
Eric Biggersce8614a2017-12-29 10:00:46 -0600173 ualg->cru_refcnt = refcount_read(&alg->cra_refcnt);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200174
David S. Miller6662df32012-04-01 20:19:05 -0400175 if (nla_put_u32(skb, CRYPTOCFGA_PRIORITY_VAL, alg->cra_priority))
176 goto nla_put_failure;
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200177 if (alg->cra_flags & CRYPTO_ALG_LARVAL) {
178 struct crypto_report_larval rl;
179
Herbert Xu44737102017-04-06 16:16:08 +0800180 strlcpy(rl.type, "larval", sizeof(rl.type));
David S. Miller6662df32012-04-01 20:19:05 -0400181 if (nla_put(skb, CRYPTOCFGA_REPORT_LARVAL,
182 sizeof(struct crypto_report_larval), &rl))
183 goto nla_put_failure;
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200184 goto out;
185 }
186
Steffen Klassertb6aa63c2011-09-27 07:24:29 +0200187 if (alg->cra_type && alg->cra_type->report) {
188 if (alg->cra_type->report(skb, alg))
189 goto nla_put_failure;
Steffen Klassert07a5fa42011-09-27 07:48:01 +0200190
191 goto out;
192 }
193
194 switch (alg->cra_flags & (CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_LARVAL)) {
195 case CRYPTO_ALG_TYPE_CIPHER:
196 if (crypto_report_cipher(skb, alg))
197 goto nla_put_failure;
198
199 break;
Steffen Klassert540b97c2011-09-27 07:48:48 +0200200 case CRYPTO_ALG_TYPE_COMPRESS:
201 if (crypto_report_comp(skb, alg))
202 goto nla_put_failure;
203
204 break;
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100205 case CRYPTO_ALG_TYPE_ACOMPRESS:
206 if (crypto_report_acomp(skb, alg))
207 goto nla_put_failure;
Tadeusz Struk3c339ab2015-06-16 10:30:55 -0700208
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100209 break;
Tadeusz Struk3c339ab2015-06-16 10:30:55 -0700210 case CRYPTO_ALG_TYPE_AKCIPHER:
211 if (crypto_report_akcipher(skb, alg))
212 goto nla_put_failure;
213
214 break;
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100215 case CRYPTO_ALG_TYPE_KPP:
216 if (crypto_report_kpp(skb, alg))
217 goto nla_put_failure;
218 break;
Steffen Klassertb6aa63c2011-09-27 07:24:29 +0200219 }
220
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200221out:
Steffen Klasserta38f7902011-09-27 07:23:50 +0200222 return 0;
223
224nla_put_failure:
225 return -EMSGSIZE;
226}
227
228static int crypto_report_alg(struct crypto_alg *alg,
229 struct crypto_dump_info *info)
230{
231 struct sk_buff *in_skb = info->in_skb;
232 struct sk_buff *skb = info->out_skb;
233 struct nlmsghdr *nlh;
234 struct crypto_user_alg *ualg;
235 int err = 0;
236
Eric W. Biederman15e47302012-09-07 20:12:54 +0000237 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, info->nlmsg_seq,
Steffen Klasserta38f7902011-09-27 07:23:50 +0200238 CRYPTO_MSG_GETALG, sizeof(*ualg), info->nlmsg_flags);
239 if (!nlh) {
240 err = -EMSGSIZE;
241 goto out;
242 }
243
244 ualg = nlmsg_data(nlh);
245
246 err = crypto_report_one(alg, ualg, skb);
247 if (err) {
248 nlmsg_cancel(skb, nlh);
249 goto out;
250 }
251
252 nlmsg_end(skb, nlh);
253
254out:
255 return err;
256}
257
258static int crypto_report(struct sk_buff *in_skb, struct nlmsghdr *in_nlh,
259 struct nlattr **attrs)
260{
261 struct crypto_user_alg *p = nlmsg_data(in_nlh);
262 struct crypto_alg *alg;
263 struct sk_buff *skb;
264 struct crypto_dump_info info;
265 int err;
266
Mathias Krause8fd61d32013-02-05 18:19:15 +0100267 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
268 return -EINVAL;
269
Herbert Xu5d4a5e72014-11-20 12:44:32 +0800270 alg = crypto_alg_match(p, 0);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200271 if (!alg)
272 return -ENOENT;
273
Herbert Xu016baaa2015-04-07 21:27:01 +0800274 err = -ENOMEM;
Jia-Ju Bai9a69b7a2018-01-25 18:06:02 +0800275 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200276 if (!skb)
Herbert Xu016baaa2015-04-07 21:27:01 +0800277 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200278
279 info.in_skb = in_skb;
280 info.out_skb = skb;
281 info.nlmsg_seq = in_nlh->nlmsg_seq;
282 info.nlmsg_flags = 0;
283
284 err = crypto_report_alg(alg, &info);
Herbert Xu016baaa2015-04-07 21:27:01 +0800285
286drop_alg:
287 crypto_mod_put(alg);
288
Steffen Klasserta38f7902011-09-27 07:23:50 +0200289 if (err)
290 return err;
291
Eric W. Biederman15e47302012-09-07 20:12:54 +0000292 return nlmsg_unicast(crypto_nlsk, skb, NETLINK_CB(in_skb).portid);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200293}
294
295static int crypto_dump_report(struct sk_buff *skb, struct netlink_callback *cb)
296{
297 struct crypto_alg *alg;
298 struct crypto_dump_info info;
299 int err;
300
301 if (cb->args[0])
302 goto out;
303
304 cb->args[0] = 1;
305
306 info.in_skb = cb->skb;
307 info.out_skb = skb;
308 info.nlmsg_seq = cb->nlh->nlmsg_seq;
309 info.nlmsg_flags = NLM_F_MULTI;
310
311 list_for_each_entry(alg, &crypto_alg_list, cra_list) {
312 err = crypto_report_alg(alg, &info);
313 if (err)
314 goto out_err;
315 }
316
317out:
318 return skb->len;
319out_err:
320 return err;
321}
322
323static int crypto_dump_report_done(struct netlink_callback *cb)
324{
325 return 0;
326}
327
328static int crypto_update_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
329 struct nlattr **attrs)
330{
331 struct crypto_alg *alg;
332 struct crypto_user_alg *p = nlmsg_data(nlh);
333 struct nlattr *priority = attrs[CRYPTOCFGA_PRIORITY_VAL];
334 LIST_HEAD(list);
335
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700336 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800337 return -EPERM;
338
Mathias Krause8fd61d32013-02-05 18:19:15 +0100339 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
340 return -EINVAL;
341
Steffen Klasserta38f7902011-09-27 07:23:50 +0200342 if (priority && !strlen(p->cru_driver_name))
343 return -EINVAL;
344
345 alg = crypto_alg_match(p, 1);
346 if (!alg)
347 return -ENOENT;
348
349 down_write(&crypto_alg_sem);
350
351 crypto_remove_spawns(alg, &list, NULL);
352
353 if (priority)
354 alg->cra_priority = nla_get_u32(priority);
355
356 up_write(&crypto_alg_sem);
357
Herbert Xu016baaa2015-04-07 21:27:01 +0800358 crypto_mod_put(alg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200359 crypto_remove_final(&list);
360
361 return 0;
362}
363
364static int crypto_del_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
365 struct nlattr **attrs)
366{
367 struct crypto_alg *alg;
368 struct crypto_user_alg *p = nlmsg_data(nlh);
Herbert Xu016baaa2015-04-07 21:27:01 +0800369 int err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200370
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700371 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800372 return -EPERM;
373
Mathias Krause8fd61d32013-02-05 18:19:15 +0100374 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
375 return -EINVAL;
376
Steffen Klasserta38f7902011-09-27 07:23:50 +0200377 alg = crypto_alg_match(p, 1);
378 if (!alg)
379 return -ENOENT;
380
381 /* We can not unregister core algorithms such as aes-generic.
382 * We would loose the reference in the crypto_alg_list to this algorithm
383 * if we try to unregister. Unregistering such an algorithm without
384 * removing the module is not possible, so we restrict to crypto
385 * instances that are build from templates. */
Herbert Xu016baaa2015-04-07 21:27:01 +0800386 err = -EINVAL;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200387 if (!(alg->cra_flags & CRYPTO_ALG_INSTANCE))
Herbert Xu016baaa2015-04-07 21:27:01 +0800388 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200389
Herbert Xu016baaa2015-04-07 21:27:01 +0800390 err = -EBUSY;
Eric Biggersce8614a2017-12-29 10:00:46 -0600391 if (refcount_read(&alg->cra_refcnt) > 2)
Herbert Xu016baaa2015-04-07 21:27:01 +0800392 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200393
Herbert Xu016baaa2015-04-07 21:27:01 +0800394 err = crypto_unregister_instance((struct crypto_instance *)alg);
395
396drop_alg:
397 crypto_mod_put(alg);
398 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200399}
400
401static int crypto_add_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
402 struct nlattr **attrs)
403{
Jesper Juhl0cfdec72012-01-29 23:39:22 +0100404 int exact = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200405 const char *name;
406 struct crypto_alg *alg;
407 struct crypto_user_alg *p = nlmsg_data(nlh);
408 struct nlattr *priority = attrs[CRYPTOCFGA_PRIORITY_VAL];
409
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700410 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800411 return -EPERM;
412
Mathias Krause8fd61d32013-02-05 18:19:15 +0100413 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
414 return -EINVAL;
415
Steffen Klasserta38f7902011-09-27 07:23:50 +0200416 if (strlen(p->cru_driver_name))
417 exact = 1;
418
419 if (priority && !exact)
420 return -EINVAL;
421
422 alg = crypto_alg_match(p, exact);
Herbert Xu016baaa2015-04-07 21:27:01 +0800423 if (alg) {
424 crypto_mod_put(alg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200425 return -EEXIST;
Herbert Xu016baaa2015-04-07 21:27:01 +0800426 }
Steffen Klasserta38f7902011-09-27 07:23:50 +0200427
428 if (strlen(p->cru_driver_name))
429 name = p->cru_driver_name;
430 else
431 name = p->cru_name;
432
Herbert Xu6cf80a22016-07-12 13:17:49 +0800433 alg = crypto_alg_mod_lookup(name, p->cru_type, p->cru_mask);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200434 if (IS_ERR(alg))
435 return PTR_ERR(alg);
436
437 down_write(&crypto_alg_sem);
438
439 if (priority)
440 alg->cra_priority = nla_get_u32(priority);
441
442 up_write(&crypto_alg_sem);
443
444 crypto_mod_put(alg);
445
446 return 0;
447}
448
Herbert Xu9aa867e2015-06-21 19:11:45 +0800449static int crypto_del_rng(struct sk_buff *skb, struct nlmsghdr *nlh,
450 struct nlattr **attrs)
451{
452 if (!netlink_capable(skb, CAP_NET_ADMIN))
453 return -EPERM;
454 return crypto_del_default_rng();
455}
456
Steffen Klasserta38f7902011-09-27 07:23:50 +0200457#define MSGSIZE(type) sizeof(struct type)
458
459static const int crypto_msg_min[CRYPTO_NR_MSGTYPES] = {
460 [CRYPTO_MSG_NEWALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
461 [CRYPTO_MSG_DELALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
462 [CRYPTO_MSG_UPDATEALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
Mathias Krause055ddaa2016-06-22 20:29:37 +0200463 [CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
Herbert Xu9aa867e2015-06-21 19:11:45 +0800464 [CRYPTO_MSG_DELRNG - CRYPTO_MSG_BASE] = 0,
Corentin Labbecac58182018-09-19 10:10:54 +0000465 [CRYPTO_MSG_GETSTAT - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
Steffen Klasserta38f7902011-09-27 07:23:50 +0200466};
467
468static const struct nla_policy crypto_policy[CRYPTOCFGA_MAX+1] = {
469 [CRYPTOCFGA_PRIORITY_VAL] = { .type = NLA_U32},
470};
471
472#undef MSGSIZE
473
Mathias Krausea84fb792013-02-24 14:09:12 +0100474static const struct crypto_link {
Steffen Klasserta38f7902011-09-27 07:23:50 +0200475 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
476 int (*dump)(struct sk_buff *, struct netlink_callback *);
477 int (*done)(struct netlink_callback *);
478} crypto_dispatch[CRYPTO_NR_MSGTYPES] = {
479 [CRYPTO_MSG_NEWALG - CRYPTO_MSG_BASE] = { .doit = crypto_add_alg},
480 [CRYPTO_MSG_DELALG - CRYPTO_MSG_BASE] = { .doit = crypto_del_alg},
481 [CRYPTO_MSG_UPDATEALG - CRYPTO_MSG_BASE] = { .doit = crypto_update_alg},
482 [CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE] = { .doit = crypto_report,
483 .dump = crypto_dump_report,
484 .done = crypto_dump_report_done},
Herbert Xu9aa867e2015-06-21 19:11:45 +0800485 [CRYPTO_MSG_DELRNG - CRYPTO_MSG_BASE] = { .doit = crypto_del_rng },
Corentin Labbecac58182018-09-19 10:10:54 +0000486 [CRYPTO_MSG_GETSTAT - CRYPTO_MSG_BASE] = { .doit = crypto_reportstat,
487 .dump = crypto_dump_reportstat,
488 .done = crypto_dump_reportstat_done},
Steffen Klasserta38f7902011-09-27 07:23:50 +0200489};
490
Johannes Berg2d4bc932017-04-12 14:34:04 +0200491static int crypto_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
492 struct netlink_ext_ack *extack)
Steffen Klasserta38f7902011-09-27 07:23:50 +0200493{
494 struct nlattr *attrs[CRYPTOCFGA_MAX+1];
Mathias Krausea84fb792013-02-24 14:09:12 +0100495 const struct crypto_link *link;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200496 int type, err;
497
498 type = nlh->nlmsg_type;
499 if (type > CRYPTO_MSG_MAX)
500 return -EINVAL;
501
502 type -= CRYPTO_MSG_BASE;
503 link = &crypto_dispatch[type];
504
Steffen Klasserta38f7902011-09-27 07:23:50 +0200505 if ((type == (CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE) &&
506 (nlh->nlmsg_flags & NLM_F_DUMP))) {
Steffen Klassert5219a532012-03-29 09:04:46 +0200507 struct crypto_alg *alg;
508 u16 dump_alloc = 0;
509
Steffen Klasserta38f7902011-09-27 07:23:50 +0200510 if (link->dump == NULL)
511 return -EINVAL;
Steffen Klassert5219a532012-03-29 09:04:46 +0200512
Mathias Krause63e41eb2016-02-01 14:27:30 +0100513 down_read(&crypto_alg_sem);
Steffen Klassert5219a532012-03-29 09:04:46 +0200514 list_for_each_entry(alg, &crypto_alg_list, cra_list)
515 dump_alloc += CRYPTO_REPORT_MAXSIZE;
516
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000517 {
518 struct netlink_dump_control c = {
519 .dump = link->dump,
520 .done = link->done,
Steffen Klassert5219a532012-03-29 09:04:46 +0200521 .min_dump_alloc = dump_alloc,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000522 };
Mathias Krause63e41eb2016-02-01 14:27:30 +0100523 err = netlink_dump_start(crypto_nlsk, skb, nlh, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000524 }
Mathias Krause63e41eb2016-02-01 14:27:30 +0100525 up_read(&crypto_alg_sem);
526
527 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200528 }
529
Herbert Xufd2efd92016-06-23 18:06:02 +0800530 err = nlmsg_parse(nlh, crypto_msg_min[type], attrs, CRYPTOCFGA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +0200531 crypto_policy, extack);
Herbert Xufd2efd92016-06-23 18:06:02 +0800532 if (err < 0)
533 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200534
535 if (link->doit == NULL)
536 return -EINVAL;
537
538 return link->doit(skb, nlh, attrs);
539}
540
541static void crypto_netlink_rcv(struct sk_buff *skb)
542{
543 mutex_lock(&crypto_cfg_mutex);
544 netlink_rcv_skb(skb, &crypto_user_rcv_msg);
545 mutex_unlock(&crypto_cfg_mutex);
546}
547
548static int __init crypto_user_init(void)
549{
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000550 struct netlink_kernel_cfg cfg = {
551 .input = crypto_netlink_rcv,
552 };
553
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000554 crypto_nlsk = netlink_kernel_create(&init_net, NETLINK_CRYPTO, &cfg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200555 if (!crypto_nlsk)
556 return -ENOMEM;
557
558 return 0;
559}
560
561static void __exit crypto_user_exit(void)
562{
563 netlink_kernel_release(crypto_nlsk);
564}
565
566module_init(crypto_user_init);
567module_exit(crypto_user_exit);
568MODULE_LICENSE("GPL");
569MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
570MODULE_DESCRIPTION("Crypto userspace configuration API");
Stephan Mueller476c7fe2014-11-24 17:12:45 +0100571MODULE_ALIAS("net-pf-16-proto-21");