blob: f93b691f8045297a41c420d5a9899e61e32abef9 [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
Eric Biggers21d41202019-07-02 14:17:00 -070059 if (crypto_is_larval(q))
60 continue;
61
Steffen Klasserta38f7902011-09-27 07:23:50 +020062 if ((q->cra_flags ^ p->cru_type) & p->cru_mask)
63 continue;
64
65 if (strlen(p->cru_driver_name))
66 match = !strcmp(q->cra_driver_name,
67 p->cru_driver_name);
68 else if (!exact)
69 match = !strcmp(q->cra_name, p->cru_name);
70
Herbert Xu016baaa2015-04-07 21:27:01 +080071 if (!match)
72 continue;
73
74 if (unlikely(!crypto_mod_get(q)))
75 continue;
76
77 alg = q;
78 break;
Steffen Klasserta38f7902011-09-27 07:23:50 +020079 }
80
81 up_read(&crypto_alg_sem);
82
83 return alg;
84}
85
Steffen Klassert07a5fa42011-09-27 07:48:01 +020086static int crypto_report_cipher(struct sk_buff *skb, struct crypto_alg *alg)
87{
88 struct crypto_report_cipher rcipher;
89
Eric Biggers37db69e2018-11-03 14:56:03 -070090 memset(&rcipher, 0, sizeof(rcipher));
91
92 strscpy(rcipher.type, "cipher", sizeof(rcipher.type));
Steffen Klassert07a5fa42011-09-27 07:48:01 +020093
94 rcipher.blocksize = alg->cra_blocksize;
95 rcipher.min_keysize = alg->cra_cipher.cia_min_keysize;
96 rcipher.max_keysize = alg->cra_cipher.cia_max_keysize;
97
Eric Biggers37db69e2018-11-03 14:56:03 -070098 return nla_put(skb, CRYPTOCFGA_REPORT_CIPHER,
99 sizeof(rcipher), &rcipher);
Steffen Klassert07a5fa42011-09-27 07:48:01 +0200100}
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
Eric Biggers37db69e2018-11-03 14:56:03 -0700106 memset(&rcomp, 0, sizeof(rcomp));
Steffen Klassert540b97c2011-09-27 07:48:48 +0200107
Eric Biggers37db69e2018-11-03 14:56:03 -0700108 strscpy(rcomp.type, "compression", sizeof(rcomp.type));
109
110 return nla_put(skb, CRYPTOCFGA_REPORT_COMPRESS, sizeof(rcomp), &rcomp);
Steffen Klassert540b97c2011-09-27 07:48:48 +0200111}
112
Steffen Klasserta38f7902011-09-27 07:23:50 +0200113static int crypto_report_one(struct crypto_alg *alg,
114 struct crypto_user_alg *ualg, struct sk_buff *skb)
115{
Eric Biggers37db69e2018-11-03 14:56:03 -0700116 memset(ualg, 0, sizeof(*ualg));
117
118 strscpy(ualg->cru_name, alg->cra_name, sizeof(ualg->cru_name));
119 strscpy(ualg->cru_driver_name, alg->cra_driver_name,
Mathias Krause9a5467bf2013-02-05 18:19:13 +0100120 sizeof(ualg->cru_driver_name));
Eric Biggers37db69e2018-11-03 14:56:03 -0700121 strscpy(ualg->cru_module_name, module_name(alg->cra_module),
Mathias Krause9a5467bf2013-02-05 18:19:13 +0100122 sizeof(ualg->cru_module_name));
Steffen Klasserta38f7902011-09-27 07:23:50 +0200123
Mathias Krause9a5467bf2013-02-05 18:19:13 +0100124 ualg->cru_type = 0;
125 ualg->cru_mask = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200126 ualg->cru_flags = alg->cra_flags;
Eric Biggersce8614a2017-12-29 10:00:46 -0600127 ualg->cru_refcnt = refcount_read(&alg->cra_refcnt);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200128
David S. Miller6662df32012-04-01 20:19:05 -0400129 if (nla_put_u32(skb, CRYPTOCFGA_PRIORITY_VAL, alg->cra_priority))
130 goto nla_put_failure;
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200131 if (alg->cra_flags & CRYPTO_ALG_LARVAL) {
132 struct crypto_report_larval rl;
133
Eric Biggers37db69e2018-11-03 14:56:03 -0700134 memset(&rl, 0, sizeof(rl));
135 strscpy(rl.type, "larval", sizeof(rl.type));
136 if (nla_put(skb, CRYPTOCFGA_REPORT_LARVAL, sizeof(rl), &rl))
David S. Miller6662df32012-04-01 20:19:05 -0400137 goto nla_put_failure;
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200138 goto out;
139 }
140
Steffen Klassertb6aa63c2011-09-27 07:24:29 +0200141 if (alg->cra_type && alg->cra_type->report) {
142 if (alg->cra_type->report(skb, alg))
143 goto nla_put_failure;
Steffen Klassert07a5fa42011-09-27 07:48:01 +0200144
145 goto out;
146 }
147
148 switch (alg->cra_flags & (CRYPTO_ALG_TYPE_MASK | CRYPTO_ALG_LARVAL)) {
149 case CRYPTO_ALG_TYPE_CIPHER:
150 if (crypto_report_cipher(skb, alg))
151 goto nla_put_failure;
152
153 break;
Steffen Klassert540b97c2011-09-27 07:48:48 +0200154 case CRYPTO_ALG_TYPE_COMPRESS:
155 if (crypto_report_comp(skb, alg))
156 goto nla_put_failure;
157
158 break;
Steffen Klassertb6aa63c2011-09-27 07:24:29 +0200159 }
160
Steffen Klassert6c5a86f52011-09-27 07:25:05 +0200161out:
Steffen Klasserta38f7902011-09-27 07:23:50 +0200162 return 0;
163
164nla_put_failure:
165 return -EMSGSIZE;
166}
167
168static int crypto_report_alg(struct crypto_alg *alg,
169 struct crypto_dump_info *info)
170{
171 struct sk_buff *in_skb = info->in_skb;
172 struct sk_buff *skb = info->out_skb;
173 struct nlmsghdr *nlh;
174 struct crypto_user_alg *ualg;
175 int err = 0;
176
Eric W. Biederman15e47302012-09-07 20:12:54 +0000177 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, info->nlmsg_seq,
Steffen Klasserta38f7902011-09-27 07:23:50 +0200178 CRYPTO_MSG_GETALG, sizeof(*ualg), info->nlmsg_flags);
179 if (!nlh) {
180 err = -EMSGSIZE;
181 goto out;
182 }
183
184 ualg = nlmsg_data(nlh);
185
186 err = crypto_report_one(alg, ualg, skb);
187 if (err) {
188 nlmsg_cancel(skb, nlh);
189 goto out;
190 }
191
192 nlmsg_end(skb, nlh);
193
194out:
195 return err;
196}
197
198static int crypto_report(struct sk_buff *in_skb, struct nlmsghdr *in_nlh,
199 struct nlattr **attrs)
200{
201 struct crypto_user_alg *p = nlmsg_data(in_nlh);
202 struct crypto_alg *alg;
203 struct sk_buff *skb;
204 struct crypto_dump_info info;
205 int err;
206
Mathias Krause8fd61d32013-02-05 18:19:15 +0100207 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
208 return -EINVAL;
209
Herbert Xu5d4a5e72014-11-20 12:44:32 +0800210 alg = crypto_alg_match(p, 0);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200211 if (!alg)
212 return -ENOENT;
213
Herbert Xu016baaa2015-04-07 21:27:01 +0800214 err = -ENOMEM;
Jia-Ju Bai9a69b7a2018-01-25 18:06:02 +0800215 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200216 if (!skb)
Herbert Xu016baaa2015-04-07 21:27:01 +0800217 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200218
219 info.in_skb = in_skb;
220 info.out_skb = skb;
221 info.nlmsg_seq = in_nlh->nlmsg_seq;
222 info.nlmsg_flags = 0;
223
224 err = crypto_report_alg(alg, &info);
Herbert Xu016baaa2015-04-07 21:27:01 +0800225
226drop_alg:
227 crypto_mod_put(alg);
228
Steffen Klasserta38f7902011-09-27 07:23:50 +0200229 if (err)
230 return err;
231
Eric W. Biederman15e47302012-09-07 20:12:54 +0000232 return nlmsg_unicast(crypto_nlsk, skb, NETLINK_CB(in_skb).portid);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200233}
234
235static int crypto_dump_report(struct sk_buff *skb, struct netlink_callback *cb)
236{
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800237 const size_t start_pos = cb->args[0];
238 size_t pos = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200239 struct crypto_dump_info info;
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800240 struct crypto_alg *alg;
241 int res;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200242
243 info.in_skb = cb->skb;
244 info.out_skb = skb;
245 info.nlmsg_seq = cb->nlh->nlmsg_seq;
246 info.nlmsg_flags = NLM_F_MULTI;
247
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800248 down_read(&crypto_alg_sem);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200249 list_for_each_entry(alg, &crypto_alg_list, cra_list) {
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800250 if (pos >= start_pos) {
251 res = crypto_report_alg(alg, &info);
252 if (res == -EMSGSIZE)
253 break;
254 if (res)
255 goto out;
256 }
257 pos++;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200258 }
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800259 cb->args[0] = pos;
260 res = skb->len;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200261out:
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800262 up_read(&crypto_alg_sem);
263 return res;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200264}
265
266static int crypto_dump_report_done(struct netlink_callback *cb)
267{
268 return 0;
269}
270
271static int crypto_update_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
272 struct nlattr **attrs)
273{
274 struct crypto_alg *alg;
275 struct crypto_user_alg *p = nlmsg_data(nlh);
276 struct nlattr *priority = attrs[CRYPTOCFGA_PRIORITY_VAL];
277 LIST_HEAD(list);
278
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700279 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800280 return -EPERM;
281
Mathias Krause8fd61d32013-02-05 18:19:15 +0100282 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
283 return -EINVAL;
284
Steffen Klasserta38f7902011-09-27 07:23:50 +0200285 if (priority && !strlen(p->cru_driver_name))
286 return -EINVAL;
287
288 alg = crypto_alg_match(p, 1);
289 if (!alg)
290 return -ENOENT;
291
292 down_write(&crypto_alg_sem);
293
294 crypto_remove_spawns(alg, &list, NULL);
295
296 if (priority)
297 alg->cra_priority = nla_get_u32(priority);
298
299 up_write(&crypto_alg_sem);
300
Herbert Xu016baaa2015-04-07 21:27:01 +0800301 crypto_mod_put(alg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200302 crypto_remove_final(&list);
303
304 return 0;
305}
306
307static int crypto_del_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
308 struct nlattr **attrs)
309{
310 struct crypto_alg *alg;
311 struct crypto_user_alg *p = nlmsg_data(nlh);
Herbert Xu016baaa2015-04-07 21:27:01 +0800312 int err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200313
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700314 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800315 return -EPERM;
316
Mathias Krause8fd61d32013-02-05 18:19:15 +0100317 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
318 return -EINVAL;
319
Steffen Klasserta38f7902011-09-27 07:23:50 +0200320 alg = crypto_alg_match(p, 1);
321 if (!alg)
322 return -ENOENT;
323
324 /* We can not unregister core algorithms such as aes-generic.
325 * We would loose the reference in the crypto_alg_list to this algorithm
326 * if we try to unregister. Unregistering such an algorithm without
327 * removing the module is not possible, so we restrict to crypto
328 * instances that are build from templates. */
Herbert Xu016baaa2015-04-07 21:27:01 +0800329 err = -EINVAL;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200330 if (!(alg->cra_flags & CRYPTO_ALG_INSTANCE))
Herbert Xu016baaa2015-04-07 21:27:01 +0800331 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200332
Herbert Xu016baaa2015-04-07 21:27:01 +0800333 err = -EBUSY;
Eric Biggersce8614a2017-12-29 10:00:46 -0600334 if (refcount_read(&alg->cra_refcnt) > 2)
Herbert Xu016baaa2015-04-07 21:27:01 +0800335 goto drop_alg;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200336
Herbert Xu016baaa2015-04-07 21:27:01 +0800337 err = crypto_unregister_instance((struct crypto_instance *)alg);
338
339drop_alg:
340 crypto_mod_put(alg);
341 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200342}
343
344static int crypto_add_alg(struct sk_buff *skb, struct nlmsghdr *nlh,
345 struct nlattr **attrs)
346{
Jesper Juhl0cfdec72012-01-29 23:39:22 +0100347 int exact = 0;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200348 const char *name;
349 struct crypto_alg *alg;
350 struct crypto_user_alg *p = nlmsg_data(nlh);
351 struct nlattr *priority = attrs[CRYPTOCFGA_PRIORITY_VAL];
352
Linus Torvalds639b4ac2014-06-07 19:44:40 -0700353 if (!netlink_capable(skb, CAP_NET_ADMIN))
Matthias-Christian Ottc5683982014-05-08 21:58:12 +0800354 return -EPERM;
355
Mathias Krause8fd61d32013-02-05 18:19:15 +0100356 if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name))
357 return -EINVAL;
358
Steffen Klasserta38f7902011-09-27 07:23:50 +0200359 if (strlen(p->cru_driver_name))
360 exact = 1;
361
362 if (priority && !exact)
363 return -EINVAL;
364
365 alg = crypto_alg_match(p, exact);
Herbert Xu016baaa2015-04-07 21:27:01 +0800366 if (alg) {
367 crypto_mod_put(alg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200368 return -EEXIST;
Herbert Xu016baaa2015-04-07 21:27:01 +0800369 }
Steffen Klasserta38f7902011-09-27 07:23:50 +0200370
371 if (strlen(p->cru_driver_name))
372 name = p->cru_driver_name;
373 else
374 name = p->cru_name;
375
Herbert Xu6cf80a22016-07-12 13:17:49 +0800376 alg = crypto_alg_mod_lookup(name, p->cru_type, p->cru_mask);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200377 if (IS_ERR(alg))
378 return PTR_ERR(alg);
379
380 down_write(&crypto_alg_sem);
381
382 if (priority)
383 alg->cra_priority = nla_get_u32(priority);
384
385 up_write(&crypto_alg_sem);
386
387 crypto_mod_put(alg);
388
389 return 0;
390}
391
Herbert Xu9aa867e2015-06-21 19:11:45 +0800392static int crypto_del_rng(struct sk_buff *skb, struct nlmsghdr *nlh,
393 struct nlattr **attrs)
394{
395 if (!netlink_capable(skb, CAP_NET_ADMIN))
396 return -EPERM;
397 return crypto_del_default_rng();
398}
399
Steffen Klasserta38f7902011-09-27 07:23:50 +0200400#define MSGSIZE(type) sizeof(struct type)
401
402static const int crypto_msg_min[CRYPTO_NR_MSGTYPES] = {
403 [CRYPTO_MSG_NEWALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
404 [CRYPTO_MSG_DELALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
405 [CRYPTO_MSG_UPDATEALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
Mathias Krause055ddaa2016-06-22 20:29:37 +0200406 [CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
Herbert Xu9aa867e2015-06-21 19:11:45 +0800407 [CRYPTO_MSG_DELRNG - CRYPTO_MSG_BASE] = 0,
Corentin Labbecac58182018-09-19 10:10:54 +0000408 [CRYPTO_MSG_GETSTAT - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg),
Steffen Klasserta38f7902011-09-27 07:23:50 +0200409};
410
411static const struct nla_policy crypto_policy[CRYPTOCFGA_MAX+1] = {
412 [CRYPTOCFGA_PRIORITY_VAL] = { .type = NLA_U32},
413};
414
415#undef MSGSIZE
416
Mathias Krausea84fb792013-02-24 14:09:12 +0100417static const struct crypto_link {
Steffen Klasserta38f7902011-09-27 07:23:50 +0200418 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
419 int (*dump)(struct sk_buff *, struct netlink_callback *);
420 int (*done)(struct netlink_callback *);
421} crypto_dispatch[CRYPTO_NR_MSGTYPES] = {
422 [CRYPTO_MSG_NEWALG - CRYPTO_MSG_BASE] = { .doit = crypto_add_alg},
423 [CRYPTO_MSG_DELALG - CRYPTO_MSG_BASE] = { .doit = crypto_del_alg},
424 [CRYPTO_MSG_UPDATEALG - CRYPTO_MSG_BASE] = { .doit = crypto_update_alg},
425 [CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE] = { .doit = crypto_report,
426 .dump = crypto_dump_report,
427 .done = crypto_dump_report_done},
Herbert Xu9aa867e2015-06-21 19:11:45 +0800428 [CRYPTO_MSG_DELRNG - CRYPTO_MSG_BASE] = { .doit = crypto_del_rng },
Corentin Labbe0c99c2a2018-12-13 08:36:37 +0000429 [CRYPTO_MSG_GETSTAT - CRYPTO_MSG_BASE] = { .doit = crypto_reportstat},
Steffen Klasserta38f7902011-09-27 07:23:50 +0200430};
431
Johannes Berg2d4bc932017-04-12 14:34:04 +0200432static int crypto_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
433 struct netlink_ext_ack *extack)
Steffen Klasserta38f7902011-09-27 07:23:50 +0200434{
435 struct nlattr *attrs[CRYPTOCFGA_MAX+1];
Mathias Krausea84fb792013-02-24 14:09:12 +0100436 const struct crypto_link *link;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200437 int type, err;
438
439 type = nlh->nlmsg_type;
440 if (type > CRYPTO_MSG_MAX)
441 return -EINVAL;
442
443 type -= CRYPTO_MSG_BASE;
444 link = &crypto_dispatch[type];
445
Steffen Klasserta38f7902011-09-27 07:23:50 +0200446 if ((type == (CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE) &&
447 (nlh->nlmsg_flags & NLM_F_DUMP))) {
Steffen Klassert5219a532012-03-29 09:04:46 +0200448 struct crypto_alg *alg;
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800449 unsigned long dump_alloc = 0;
Steffen Klassert5219a532012-03-29 09:04:46 +0200450
Steffen Klasserta38f7902011-09-27 07:23:50 +0200451 if (link->dump == NULL)
452 return -EINVAL;
Steffen Klassert5219a532012-03-29 09:04:46 +0200453
Mathias Krause63e41eb2016-02-01 14:27:30 +0100454 down_read(&crypto_alg_sem);
Steffen Klassert5219a532012-03-29 09:04:46 +0200455 list_for_each_entry(alg, &crypto_alg_list, cra_list)
456 dump_alloc += CRYPTO_REPORT_MAXSIZE;
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800457 up_read(&crypto_alg_sem);
Steffen Klassert5219a532012-03-29 09:04:46 +0200458
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000459 {
460 struct netlink_dump_control c = {
461 .dump = link->dump,
462 .done = link->done,
Eric Biggers0ac6b8f2018-12-06 15:55:41 -0800463 .min_dump_alloc = min(dump_alloc, 65535UL),
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000464 };
Mathias Krause63e41eb2016-02-01 14:27:30 +0100465 err = netlink_dump_start(crypto_nlsk, skb, nlh, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000466 }
Mathias Krause63e41eb2016-02-01 14:27:30 +0100467
468 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200469 }
470
Herbert Xufd2efd92016-06-23 18:06:02 +0800471 err = nlmsg_parse(nlh, crypto_msg_min[type], attrs, CRYPTOCFGA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +0200472 crypto_policy, extack);
Herbert Xufd2efd92016-06-23 18:06:02 +0800473 if (err < 0)
474 return err;
Steffen Klasserta38f7902011-09-27 07:23:50 +0200475
476 if (link->doit == NULL)
477 return -EINVAL;
478
479 return link->doit(skb, nlh, attrs);
480}
481
482static void crypto_netlink_rcv(struct sk_buff *skb)
483{
484 mutex_lock(&crypto_cfg_mutex);
485 netlink_rcv_skb(skb, &crypto_user_rcv_msg);
486 mutex_unlock(&crypto_cfg_mutex);
487}
488
489static int __init crypto_user_init(void)
490{
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +0000491 struct netlink_kernel_cfg cfg = {
492 .input = crypto_netlink_rcv,
493 };
494
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +0000495 crypto_nlsk = netlink_kernel_create(&init_net, NETLINK_CRYPTO, &cfg);
Steffen Klasserta38f7902011-09-27 07:23:50 +0200496 if (!crypto_nlsk)
497 return -ENOMEM;
498
499 return 0;
500}
501
502static void __exit crypto_user_exit(void)
503{
504 netlink_kernel_release(crypto_nlsk);
505}
506
507module_init(crypto_user_init);
508module_exit(crypto_user_exit);
509MODULE_LICENSE("GPL");
510MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
511MODULE_DESCRIPTION("Crypto userspace configuration API");
Stephan Mueller476c7fe2014-11-24 17:12:45 +0100512MODULE_ALIAS("net-pf-16-proto-21");