blob: 0dbe2be7f78316b2359f11be09ac24e528f3b8de [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
58 if ((q->cra_flags ^ p->cru_type) & p->cru_mask)
59 continue;
60
61 if (strlen(p->cru_driver_name))
62 match = !strcmp(q->cra_driver_name,
63 p->cru_driver_name);
64 else if (!exact)
65 match = !strcmp(q->cra_name, p->cru_name);
66
Herbert Xu016baaa2015-04-07 21:27:01 +080067 if (!match)
68 continue;
69
70 if (unlikely(!crypto_mod_get(q)))
71 continue;
72
73 alg = q;
74 break;
Steffen Klasserta38f7902011-09-27 07:23:50 +020075 }
76
77 up_read(&crypto_alg_sem);
78
79 return alg;
80}
81
Steffen Klassert07a5fa42011-09-27 07:48:01 +020082static int crypto_report_cipher(struct sk_buff *skb, struct crypto_alg *alg)
83{
84 struct crypto_report_cipher rcipher;
85
Herbert Xu44737102017-04-06 16:16:08 +080086 strlcpy(rcipher.type, "cipher", sizeof(rcipher.type));
Steffen Klassert07a5fa42011-09-27 07:48:01 +020087
88 rcipher.blocksize = alg->cra_blocksize;
89 rcipher.min_keysize = alg->cra_cipher.cia_min_keysize;
90 rcipher.max_keysize = alg->cra_cipher.cia_max_keysize;
91
David S. Miller6662df32012-04-01 20:19:05 -040092 if (nla_put(skb, CRYPTOCFGA_REPORT_CIPHER,
93 sizeof(struct crypto_report_cipher), &rcipher))
94 goto nla_put_failure;
Steffen Klassert07a5fa42011-09-27 07:48:01 +020095 return 0;
96
97nla_put_failure:
98 return -EMSGSIZE;
99}
100
Steffen Klassert540b97c2011-09-27 07:48:48 +0200101static int crypto_report_comp(struct sk_buff *skb, struct crypto_alg *alg)
102{
103 struct crypto_report_comp rcomp;
104
Herbert Xu44737102017-04-06 16:16:08 +0800105 strlcpy(rcomp.type, "compression", sizeof(rcomp.type));
David S. Miller6662df32012-04-01 20:19:05 -0400106 if (nla_put(skb, CRYPTOCFGA_REPORT_COMPRESS,
107 sizeof(struct crypto_report_comp), &rcomp))
108 goto nla_put_failure;
Steffen Klassert540b97c2011-09-27 07:48:48 +0200109 return 0;
110
111nla_put_failure:
112 return -EMSGSIZE;
113}
114
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100115static int crypto_report_acomp(struct sk_buff *skb, struct crypto_alg *alg)
116{
117 struct crypto_report_acomp racomp;
118
Herbert Xu44737102017-04-06 16:16:08 +0800119 strlcpy(racomp.type, "acomp", sizeof(racomp.type));
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100120
121 if (nla_put(skb, CRYPTOCFGA_REPORT_ACOMP,
122 sizeof(struct crypto_report_acomp), &racomp))
123 goto nla_put_failure;
124 return 0;
125
126nla_put_failure:
127 return -EMSGSIZE;
128}
129
Tadeusz Struk3c339ab2015-06-16 10:30:55 -0700130static int crypto_report_akcipher(struct sk_buff *skb, struct crypto_alg *alg)
131{
132 struct crypto_report_akcipher rakcipher;
133
Herbert Xu44737102017-04-06 16:16:08 +0800134 strlcpy(rakcipher.type, "akcipher", sizeof(rakcipher.type));
Tadeusz Struk3c339ab2015-06-16 10:30:55 -0700135
136 if (nla_put(skb, CRYPTOCFGA_REPORT_AKCIPHER,
137 sizeof(struct crypto_report_akcipher), &rakcipher))
138 goto nla_put_failure;
139 return 0;
140
141nla_put_failure:
142 return -EMSGSIZE;
143}
144
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100145static int crypto_report_kpp(struct sk_buff *skb, struct crypto_alg *alg)
146{
147 struct crypto_report_kpp rkpp;
148
Herbert Xu44737102017-04-06 16:16:08 +0800149 strlcpy(rkpp.type, "kpp", sizeof(rkpp.type));
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100150
151 if (nla_put(skb, CRYPTOCFGA_REPORT_KPP,
152 sizeof(struct crypto_report_kpp), &rkpp))
153 goto nla_put_failure;
154 return 0;
155
156nla_put_failure:
157 return -EMSGSIZE;
158}
159
Steffen Klasserta38f7902011-09-27 07:23:50 +0200160static int crypto_report_one(struct crypto_alg *alg,
161 struct crypto_user_alg *ualg, struct sk_buff *skb)
162{
Herbert Xu44737102017-04-06 16:16:08 +0800163 strlcpy(ualg->cru_name, alg->cra_name, sizeof(ualg->cru_name));
164 strlcpy(ualg->cru_driver_name, alg->cra_driver_name,
Mathias Krause9a5467b2013-02-05 18:19:13 +0100165 sizeof(ualg->cru_driver_name));
Herbert Xu44737102017-04-06 16:16:08 +0800166 strlcpy(ualg->cru_module_name, module_name(alg->cra_module),
Mathias Krause9a5467b2013-02-05 18:19:13 +0100167 sizeof(ualg->cru_module_name));
Steffen Klasserta38f7902011-09-27 07:23:50 +0200168
Mathias Krause9a5467b2013-02-05 18:19:13 +0100169 ualg->cru_type = 0;
170 ualg->cru_mask = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200171 ualg->cru_flags = alg->cra_flags;
172 ualg->cru_refcnt = atomic_read(&alg->cra_refcnt);
173
David S. Miller6662df32012-04-01 20:19:05 -0400174 if (nla_put_u32(skb, CRYPTOCFGA_PRIORITY_VAL, alg->cra_priority))
175 goto nla_put_failure;
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200176 if (alg->cra_flags & CRYPTO_ALG_LARVAL) {
177 struct crypto_report_larval rl;
178
Herbert Xu44737102017-04-06 16:16:08 +0800179 strlcpy(rl.type, "larval", sizeof(rl.type));
David S. Miller6662df32012-04-01 20:19:05 -0400180 if (nla_put(skb, CRYPTOCFGA_REPORT_LARVAL,
181 sizeof(struct crypto_report_larval), &rl))
182 goto nla_put_failure;
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200183 goto out;
184 }
185
Steffen Klassertb6aa63c2011-09-27 07:24:29 +0200186 if (alg->cra_type && alg->cra_type->report) {
187 if (alg->cra_type->report(skb, alg))
188 goto nla_put_failure;
Steffen Klassert07a5fa42011-09-27 07:48:01 +0200189
190 goto out;
191 }
192
193 switch (alg->cra_flags & (CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_LARVAL)) {
194 case CRYPTO_ALG_TYPE_CIPHER:
195 if (crypto_report_cipher(skb, alg))
196 goto nla_put_failure;
197
198 break;
Steffen Klassert540b97c2011-09-27 07:48:48 +0200199 case CRYPTO_ALG_TYPE_COMPRESS:
200 if (crypto_report_comp(skb, alg))
201 goto nla_put_failure;
202
203 break;
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100204 case CRYPTO_ALG_TYPE_ACOMPRESS:
205 if (crypto_report_acomp(skb, alg))
206 goto nla_put_failure;
Tadeusz Struk3c339ab2015-06-16 10:30:55 -0700207
Giovanni Cabiddu2ebda742016-10-21 13:19:47 +0100208 break;
Tadeusz Struk3c339ab2015-06-16 10:30:55 -0700209 case CRYPTO_ALG_TYPE_AKCIPHER:
210 if (crypto_report_akcipher(skb, alg))
211 goto nla_put_failure;
212
213 break;
Salvatore Benedetto4e5f2c42016-06-22 17:49:13 +0100214 case CRYPTO_ALG_TYPE_KPP:
215 if (crypto_report_kpp(skb, alg))
216 goto nla_put_failure;
217 break;
Steffen Klassertb6aa63c2011-09-27 07:24:29 +0200218 }
219
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200220out:
Steffen Klasserta38f7902011-09-27 07:23:50 +0200221 return 0;
222
223nla_put_failure:
224 return -EMSGSIZE;
225}
226
227static int crypto_report_alg(struct crypto_alg *alg,
228 struct crypto_dump_info *info)
229{
230 struct sk_buff *in_skb = info->in_skb;
231 struct sk_buff *skb = info->out_skb;
232 struct nlmsghdr *nlh;
233 struct crypto_user_alg *ualg;
234 int err = 0;
235
Eric W. Biederman15e47302012-09-07 20:12:54 +0000236 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, info->nlmsg_seq,
Steffen Klasserta38f7902011-09-27 07:23:50 +0200237 CRYPTO_MSG_GETALG, sizeof(*ualg), info->nlmsg_flags);
238 if (!nlh) {
239 err = -EMSGSIZE;
240 goto out;
241 }
242
243 ualg = nlmsg_data(nlh);
244
245 err = crypto_report_one(alg, ualg, skb);
246 if (err) {
247 nlmsg_cancel(skb, nlh);
248 goto out;
249 }
250
251 nlmsg_end(skb, nlh);
252
253out:
254 return err;
255}
256
257static int crypto_report(struct sk_buff *in_skb, struct nlmsghdr *in_nlh,
258 struct nlattr **attrs)
259{
260 struct crypto_user_alg *p = nlmsg_data(in_nlh);
261 struct crypto_alg *alg;
262 struct sk_buff *skb;
263 struct crypto_dump_info info;
264 int err;
265
Mathias Krause8fd61d32013-02-05 18:19:15 +0100266 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
267 return -EINVAL;
268
Herbert Xu5d4a5e72014-11-20 12:44:32 +0800269 alg = crypto_alg_match(p, 0);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200270 if (!alg)
271 return -ENOENT;
272
Herbert Xu016baaa2015-04-07 21:27:01 +0800273 err = -ENOMEM;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200274 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
275 if (!skb)
Herbert Xu016baaa2015-04-07 21:27:01 +0800276 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200277
278 info.in_skb = in_skb;
279 info.out_skb = skb;
280 info.nlmsg_seq = in_nlh->nlmsg_seq;
281 info.nlmsg_flags = 0;
282
283 err = crypto_report_alg(alg, &info);
Herbert Xu016baaa2015-04-07 21:27:01 +0800284
285drop_alg:
286 crypto_mod_put(alg);
287
Steffen Klasserta38f7902011-09-27 07:23:50 +0200288 if (err)
289 return err;
290
Eric W. Biederman15e47302012-09-07 20:12:54 +0000291 return nlmsg_unicast(crypto_nlsk, skb, NETLINK_CB(in_skb).portid);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200292}
293
294static int crypto_dump_report(struct sk_buff *skb, struct netlink_callback *cb)
295{
296 struct crypto_alg *alg;
297 struct crypto_dump_info info;
298 int err;
299
300 if (cb->args[0])
301 goto out;
302
303 cb->args[0] = 1;
304
305 info.in_skb = cb->skb;
306 info.out_skb = skb;
307 info.nlmsg_seq = cb->nlh->nlmsg_seq;
308 info.nlmsg_flags = NLM_F_MULTI;
309
310 list_for_each_entry(alg, &crypto_alg_list, cra_list) {
311 err = crypto_report_alg(alg, &info);
312 if (err)
313 goto out_err;
314 }
315
316out:
317 return skb->len;
318out_err:
319 return err;
320}
321
322static int crypto_dump_report_done(struct netlink_callback *cb)
323{
324 return 0;
325}
326
327static int crypto_update_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
328 struct nlattr **attrs)
329{
330 struct crypto_alg *alg;
331 struct crypto_user_alg *p = nlmsg_data(nlh);
332 struct nlattr *priority = attrs[CRYPTOCFGA_PRIORITY_VAL];
333 LIST_HEAD(list);
334
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700335 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800336 return -EPERM;
337
Mathias Krause8fd61d32013-02-05 18:19:15 +0100338 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
339 return -EINVAL;
340
Steffen Klasserta38f7902011-09-27 07:23:50 +0200341 if (priority && !strlen(p->cru_driver_name))
342 return -EINVAL;
343
344 alg = crypto_alg_match(p, 1);
345 if (!alg)
346 return -ENOENT;
347
348 down_write(&crypto_alg_sem);
349
350 crypto_remove_spawns(alg, &list, NULL);
351
352 if (priority)
353 alg->cra_priority = nla_get_u32(priority);
354
355 up_write(&crypto_alg_sem);
356
Herbert Xu016baaa2015-04-07 21:27:01 +0800357 crypto_mod_put(alg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200358 crypto_remove_final(&list);
359
360 return 0;
361}
362
363static int crypto_del_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
364 struct nlattr **attrs)
365{
366 struct crypto_alg *alg;
367 struct crypto_user_alg *p = nlmsg_data(nlh);
Herbert Xu016baaa2015-04-07 21:27:01 +0800368 int err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200369
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700370 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800371 return -EPERM;
372
Mathias Krause8fd61d32013-02-05 18:19:15 +0100373 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
374 return -EINVAL;
375
Steffen Klasserta38f7902011-09-27 07:23:50 +0200376 alg = crypto_alg_match(p, 1);
377 if (!alg)
378 return -ENOENT;
379
380 /* We can not unregister core algorithms such as aes-generic.
381 * We would loose the reference in the crypto_alg_list to this algorithm
382 * if we try to unregister. Unregistering such an algorithm without
383 * removing the module is not possible, so we restrict to crypto
384 * instances that are build from templates. */
Herbert Xu016baaa2015-04-07 21:27:01 +0800385 err = -EINVAL;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200386 if (!(alg->cra_flags & CRYPTO_ALG_INSTANCE))
Herbert Xu016baaa2015-04-07 21:27:01 +0800387 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200388
Herbert Xu016baaa2015-04-07 21:27:01 +0800389 err = -EBUSY;
390 if (atomic_read(&alg->cra_refcnt) > 2)
391 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200392
Herbert Xu016baaa2015-04-07 21:27:01 +0800393 err = crypto_unregister_instance((struct crypto_instance *)alg);
394
395drop_alg:
396 crypto_mod_put(alg);
397 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200398}
399
400static int crypto_add_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
401 struct nlattr **attrs)
402{
Jesper Juhl0cfdec72012-01-29 23:39:22 +0100403 int exact = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200404 const char *name;
405 struct crypto_alg *alg;
406 struct crypto_user_alg *p = nlmsg_data(nlh);
407 struct nlattr *priority = attrs[CRYPTOCFGA_PRIORITY_VAL];
408
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700409 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800410 return -EPERM;
411
Mathias Krause8fd61d32013-02-05 18:19:15 +0100412 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
413 return -EINVAL;
414
Steffen Klasserta38f7902011-09-27 07:23:50 +0200415 if (strlen(p->cru_driver_name))
416 exact = 1;
417
418 if (priority && !exact)
419 return -EINVAL;
420
421 alg = crypto_alg_match(p, exact);
Herbert Xu016baaa2015-04-07 21:27:01 +0800422 if (alg) {
423 crypto_mod_put(alg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200424 return -EEXIST;
Herbert Xu016baaa2015-04-07 21:27:01 +0800425 }
Steffen Klasserta38f7902011-09-27 07:23:50 +0200426
427 if (strlen(p->cru_driver_name))
428 name = p->cru_driver_name;
429 else
430 name = p->cru_name;
431
Herbert Xu6cf80a22016-07-12 13:17:49 +0800432 alg = crypto_alg_mod_lookup(name, p->cru_type, p->cru_mask);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200433 if (IS_ERR(alg))
434 return PTR_ERR(alg);
435
436 down_write(&crypto_alg_sem);
437
438 if (priority)
439 alg->cra_priority = nla_get_u32(priority);
440
441 up_write(&crypto_alg_sem);
442
443 crypto_mod_put(alg);
444
445 return 0;
446}
447
Herbert Xu9aa867e2015-06-21 19:11:45 +0800448static int crypto_del_rng(struct sk_buff *skb, struct nlmsghdr *nlh,
449 struct nlattr **attrs)
450{
451 if (!netlink_capable(skb, CAP_NET_ADMIN))
452 return -EPERM;
453 return crypto_del_default_rng();
454}
455
Steffen Klasserta38f7902011-09-27 07:23:50 +0200456#define MSGSIZE(type) sizeof(struct type)
457
458static const int crypto_msg_min[CRYPTO_NR_MSGTYPES] = {
459 [CRYPTO_MSG_NEWALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
460 [CRYPTO_MSG_DELALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
461 [CRYPTO_MSG_UPDATEALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
Mathias Krause055ddaa2016-06-22 20:29:37 +0200462 [CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
Herbert Xu9aa867e2015-06-21 19:11:45 +0800463 [CRYPTO_MSG_DELRNG - CRYPTO_MSG_BASE] = 0,
Steffen Klasserta38f7902011-09-27 07:23:50 +0200464};
465
466static const struct nla_policy crypto_policy[CRYPTOCFGA_MAX+1] = {
467 [CRYPTOCFGA_PRIORITY_VAL] = { .type = NLA_U32},
468};
469
470#undef MSGSIZE
471
Mathias Krausea84fb792013-02-24 14:09:12 +0100472static const struct crypto_link {
Steffen Klasserta38f7902011-09-27 07:23:50 +0200473 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
474 int (*dump)(struct sk_buff *, struct netlink_callback *);
475 int (*done)(struct netlink_callback *);
476} crypto_dispatch[CRYPTO_NR_MSGTYPES] = {
477 [CRYPTO_MSG_NEWALG - CRYPTO_MSG_BASE] = { .doit = crypto_add_alg},
478 [CRYPTO_MSG_DELALG - CRYPTO_MSG_BASE] = { .doit = crypto_del_alg},
479 [CRYPTO_MSG_UPDATEALG - CRYPTO_MSG_BASE] = { .doit = crypto_update_alg},
480 [CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE] = { .doit = crypto_report,
481 .dump = crypto_dump_report,
482 .done = crypto_dump_report_done},
Herbert Xu9aa867e2015-06-21 19:11:45 +0800483 [CRYPTO_MSG_DELRNG - CRYPTO_MSG_BASE] = { .doit = crypto_del_rng },
Steffen Klasserta38f7902011-09-27 07:23:50 +0200484};
485
Johannes Berg2d4bc932017-04-12 14:34:04 +0200486static int crypto_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
487 struct netlink_ext_ack *extack)
Steffen Klasserta38f7902011-09-27 07:23:50 +0200488{
489 struct nlattr *attrs[CRYPTOCFGA_MAX+1];
Mathias Krausea84fb792013-02-24 14:09:12 +0100490 const struct crypto_link *link;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200491 int type, err;
492
493 type = nlh->nlmsg_type;
494 if (type > CRYPTO_MSG_MAX)
495 return -EINVAL;
496
497 type -= CRYPTO_MSG_BASE;
498 link = &crypto_dispatch[type];
499
Steffen Klasserta38f7902011-09-27 07:23:50 +0200500 if ((type == (CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE) &&
501 (nlh->nlmsg_flags & NLM_F_DUMP))) {
Steffen Klassert5219a532012-03-29 09:04:46 +0200502 struct crypto_alg *alg;
503 u16 dump_alloc = 0;
504
Steffen Klasserta38f7902011-09-27 07:23:50 +0200505 if (link->dump == NULL)
506 return -EINVAL;
Steffen Klassert5219a532012-03-29 09:04:46 +0200507
Mathias Krause63e41eb2016-02-01 14:27:30 +0100508 down_read(&crypto_alg_sem);
Steffen Klassert5219a532012-03-29 09:04:46 +0200509 list_for_each_entry(alg, &crypto_alg_list, cra_list)
510 dump_alloc += CRYPTO_REPORT_MAXSIZE;
511
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000512 {
513 struct netlink_dump_control c = {
514 .dump = link->dump,
515 .done = link->done,
Steffen Klassert5219a532012-03-29 09:04:46 +0200516 .min_dump_alloc = dump_alloc,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000517 };
Mathias Krause63e41eb2016-02-01 14:27:30 +0100518 err = netlink_dump_start(crypto_nlsk, skb, nlh, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000519 }
Mathias Krause63e41eb2016-02-01 14:27:30 +0100520 up_read(&crypto_alg_sem);
521
522 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200523 }
524
Herbert Xufd2efd92016-06-23 18:06:02 +0800525 err = nlmsg_parse(nlh, crypto_msg_min[type], attrs, CRYPTOCFGA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +0200526 crypto_policy, extack);
Herbert Xufd2efd92016-06-23 18:06:02 +0800527 if (err < 0)
528 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200529
530 if (link->doit == NULL)
531 return -EINVAL;
532
533 return link->doit(skb, nlh, attrs);
534}
535
536static void crypto_netlink_rcv(struct sk_buff *skb)
537{
538 mutex_lock(&crypto_cfg_mutex);
539 netlink_rcv_skb(skb, &crypto_user_rcv_msg);
540 mutex_unlock(&crypto_cfg_mutex);
541}
542
543static int __init crypto_user_init(void)
544{
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000545 struct netlink_kernel_cfg cfg = {
546 .input = crypto_netlink_rcv,
547 };
548
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000549 crypto_nlsk = netlink_kernel_create(&init_net, NETLINK_CRYPTO, &cfg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200550 if (!crypto_nlsk)
551 return -ENOMEM;
552
553 return 0;
554}
555
556static void __exit crypto_user_exit(void)
557{
558 netlink_kernel_release(crypto_nlsk);
559}
560
561module_init(crypto_user_init);
562module_exit(crypto_user_exit);
563MODULE_LICENSE("GPL");
564MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
565MODULE_DESCRIPTION("Crypto userspace configuration API");
Stephan Mueller476c7fe2014-11-24 17:12:45 +0100566MODULE_ALIAS("net-pf-16-proto-21");