1 // SPDX-License-Identifier: GPL-2.0-only
3 * Crypto user configuration API.
5 * Copyright (C) 2011 secunet Security Networks AG
6 * Copyright (C) 2011 Steffen Klassert <steffen.klassert@secunet.com>
9 #include <linux/module.h>
10 #include <linux/crypto.h>
11 #include <linux/cryptouser.h>
12 #include <linux/sched.h>
13 #include <linux/security.h>
14 #include <net/netlink.h>
15 #include <net/net_namespace.h>
17 #include <crypto/internal/skcipher.h>
18 #include <crypto/internal/rng.h>
19 #include <crypto/akcipher.h>
20 #include <crypto/kpp.h>
24 #define null_terminated(x) (strnlen(x, sizeof(x)) < sizeof(x))
26 static DEFINE_MUTEX(crypto_cfg_mutex
);
28 struct crypto_dump_info
{
29 struct sk_buff
*in_skb
;
30 struct sk_buff
*out_skb
;
35 static struct crypto_alg
*crypto_alg_match(struct crypto_user_alg
*p
, int exact
)
37 struct crypto_alg
*q
, *alg
= NULL
;
39 down_read(&crypto_alg_sem
);
41 list_for_each_entry(q
, &crypto_alg_list
, cra_list
) {
44 if (crypto_is_larval(q
))
47 if ((q
->cra_flags
^ p
->cru_type
) & p
->cru_mask
)
50 if (strlen(p
->cru_driver_name
))
51 match
= !strcmp(q
->cra_driver_name
,
54 match
= !strcmp(q
->cra_name
, p
->cru_name
);
59 if (unlikely(!crypto_mod_get(q
)))
66 up_read(&crypto_alg_sem
);
71 static int crypto_report_cipher(struct sk_buff
*skb
, struct crypto_alg
*alg
)
73 struct crypto_report_cipher rcipher
;
75 memset(&rcipher
, 0, sizeof(rcipher
));
77 strscpy(rcipher
.type
, "cipher", sizeof(rcipher
.type
));
79 rcipher
.blocksize
= alg
->cra_blocksize
;
80 rcipher
.min_keysize
= alg
->cra_cipher
.cia_min_keysize
;
81 rcipher
.max_keysize
= alg
->cra_cipher
.cia_max_keysize
;
83 return nla_put(skb
, CRYPTOCFGA_REPORT_CIPHER
,
84 sizeof(rcipher
), &rcipher
);
87 static int crypto_report_comp(struct sk_buff
*skb
, struct crypto_alg
*alg
)
89 struct crypto_report_comp rcomp
;
91 memset(&rcomp
, 0, sizeof(rcomp
));
93 strscpy(rcomp
.type
, "compression", sizeof(rcomp
.type
));
95 return nla_put(skb
, CRYPTOCFGA_REPORT_COMPRESS
, sizeof(rcomp
), &rcomp
);
98 static int crypto_report_one(struct crypto_alg
*alg
,
99 struct crypto_user_alg
*ualg
, struct sk_buff
*skb
)
101 memset(ualg
, 0, sizeof(*ualg
));
103 strscpy(ualg
->cru_name
, alg
->cra_name
, sizeof(ualg
->cru_name
));
104 strscpy(ualg
->cru_driver_name
, alg
->cra_driver_name
,
105 sizeof(ualg
->cru_driver_name
));
106 strscpy(ualg
->cru_module_name
, module_name(alg
->cra_module
),
107 sizeof(ualg
->cru_module_name
));
111 ualg
->cru_flags
= alg
->cra_flags
;
112 ualg
->cru_refcnt
= refcount_read(&alg
->cra_refcnt
);
114 if (nla_put_u32(skb
, CRYPTOCFGA_PRIORITY_VAL
, alg
->cra_priority
))
115 goto nla_put_failure
;
116 if (alg
->cra_flags
& CRYPTO_ALG_LARVAL
) {
117 struct crypto_report_larval rl
;
119 memset(&rl
, 0, sizeof(rl
));
120 strscpy(rl
.type
, "larval", sizeof(rl
.type
));
121 if (nla_put(skb
, CRYPTOCFGA_REPORT_LARVAL
, sizeof(rl
), &rl
))
122 goto nla_put_failure
;
126 if (alg
->cra_type
&& alg
->cra_type
->report
) {
127 if (alg
->cra_type
->report(skb
, alg
))
128 goto nla_put_failure
;
133 switch (alg
->cra_flags
& (CRYPTO_ALG_TYPE_MASK
| CRYPTO_ALG_LARVAL
)) {
134 case CRYPTO_ALG_TYPE_CIPHER
:
135 if (crypto_report_cipher(skb
, alg
))
136 goto nla_put_failure
;
139 case CRYPTO_ALG_TYPE_COMPRESS
:
140 if (crypto_report_comp(skb
, alg
))
141 goto nla_put_failure
;
153 static int crypto_report_alg(struct crypto_alg
*alg
,
154 struct crypto_dump_info
*info
)
156 struct sk_buff
*in_skb
= info
->in_skb
;
157 struct sk_buff
*skb
= info
->out_skb
;
158 struct nlmsghdr
*nlh
;
159 struct crypto_user_alg
*ualg
;
162 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).portid
, info
->nlmsg_seq
,
163 CRYPTO_MSG_GETALG
, sizeof(*ualg
), info
->nlmsg_flags
);
169 ualg
= nlmsg_data(nlh
);
171 err
= crypto_report_one(alg
, ualg
, skb
);
173 nlmsg_cancel(skb
, nlh
);
183 static int crypto_report(struct sk_buff
*in_skb
, struct nlmsghdr
*in_nlh
,
184 struct nlattr
**attrs
)
186 struct net
*net
= sock_net(in_skb
->sk
);
187 struct crypto_user_alg
*p
= nlmsg_data(in_nlh
);
188 struct crypto_alg
*alg
;
190 struct crypto_dump_info info
;
193 if (!null_terminated(p
->cru_name
) || !null_terminated(p
->cru_driver_name
))
196 alg
= crypto_alg_match(p
, 0);
201 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
205 info
.in_skb
= in_skb
;
207 info
.nlmsg_seq
= in_nlh
->nlmsg_seq
;
208 info
.nlmsg_flags
= 0;
210 err
= crypto_report_alg(alg
, &info
);
220 return nlmsg_unicast(net
->crypto_nlsk
, skb
, NETLINK_CB(in_skb
).portid
);
223 static int crypto_dump_report(struct sk_buff
*skb
, struct netlink_callback
*cb
)
225 const size_t start_pos
= cb
->args
[0];
227 struct crypto_dump_info info
;
228 struct crypto_alg
*alg
;
231 info
.in_skb
= cb
->skb
;
233 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
234 info
.nlmsg_flags
= NLM_F_MULTI
;
236 down_read(&crypto_alg_sem
);
237 list_for_each_entry(alg
, &crypto_alg_list
, cra_list
) {
238 if (pos
>= start_pos
) {
239 res
= crypto_report_alg(alg
, &info
);
240 if (res
== -EMSGSIZE
)
250 up_read(&crypto_alg_sem
);
254 static int crypto_dump_report_done(struct netlink_callback
*cb
)
259 static int crypto_update_alg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
260 struct nlattr
**attrs
)
262 struct crypto_alg
*alg
;
263 struct crypto_user_alg
*p
= nlmsg_data(nlh
);
264 struct nlattr
*priority
= attrs
[CRYPTOCFGA_PRIORITY_VAL
];
267 if (!netlink_capable(skb
, CAP_NET_ADMIN
))
270 if (!null_terminated(p
->cru_name
) || !null_terminated(p
->cru_driver_name
))
273 if (priority
&& !strlen(p
->cru_driver_name
))
276 alg
= crypto_alg_match(p
, 1);
280 down_write(&crypto_alg_sem
);
282 crypto_remove_spawns(alg
, &list
, NULL
);
285 alg
->cra_priority
= nla_get_u32(priority
);
287 up_write(&crypto_alg_sem
);
290 crypto_remove_final(&list
);
295 static int crypto_del_alg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
296 struct nlattr
**attrs
)
298 struct crypto_alg
*alg
;
299 struct crypto_user_alg
*p
= nlmsg_data(nlh
);
302 if (!netlink_capable(skb
, CAP_NET_ADMIN
))
305 if (!null_terminated(p
->cru_name
) || !null_terminated(p
->cru_driver_name
))
308 alg
= crypto_alg_match(p
, 1);
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. */
318 if (!(alg
->cra_flags
& CRYPTO_ALG_INSTANCE
))
322 if (refcount_read(&alg
->cra_refcnt
) > 2)
325 crypto_unregister_instance((struct crypto_instance
*)alg
);
333 static int crypto_add_alg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
334 struct nlattr
**attrs
)
338 struct crypto_alg
*alg
;
339 struct crypto_user_alg
*p
= nlmsg_data(nlh
);
340 struct nlattr
*priority
= attrs
[CRYPTOCFGA_PRIORITY_VAL
];
342 if (!netlink_capable(skb
, CAP_NET_ADMIN
))
345 if (!null_terminated(p
->cru_name
) || !null_terminated(p
->cru_driver_name
))
348 if (strlen(p
->cru_driver_name
))
351 if (priority
&& !exact
)
354 alg
= crypto_alg_match(p
, exact
);
360 if (strlen(p
->cru_driver_name
))
361 name
= p
->cru_driver_name
;
365 alg
= crypto_alg_mod_lookup(name
, p
->cru_type
, p
->cru_mask
);
369 down_write(&crypto_alg_sem
);
372 alg
->cra_priority
= nla_get_u32(priority
);
374 up_write(&crypto_alg_sem
);
381 static int crypto_del_rng(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
382 struct nlattr
**attrs
)
384 if (!netlink_capable(skb
, CAP_NET_ADMIN
))
386 return crypto_del_default_rng();
389 static int crypto_reportstat(struct sk_buff
*in_skb
, struct nlmsghdr
*in_nlh
,
390 struct nlattr
**attrs
)
392 /* No longer supported */
396 #define MSGSIZE(type) sizeof(struct type)
398 static const int crypto_msg_min
[CRYPTO_NR_MSGTYPES
] = {
399 [CRYPTO_MSG_NEWALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
400 [CRYPTO_MSG_DELALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
401 [CRYPTO_MSG_UPDATEALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
402 [CRYPTO_MSG_GETALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
403 [CRYPTO_MSG_DELRNG
- CRYPTO_MSG_BASE
] = 0,
404 [CRYPTO_MSG_GETSTAT
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
407 static const struct nla_policy crypto_policy
[CRYPTOCFGA_MAX
+1] = {
408 [CRYPTOCFGA_PRIORITY_VAL
] = { .type
= NLA_U32
},
413 static const struct crypto_link
{
414 int (*doit
)(struct sk_buff
*, struct nlmsghdr
*, struct nlattr
**);
415 int (*dump
)(struct sk_buff
*, struct netlink_callback
*);
416 int (*done
)(struct netlink_callback
*);
417 } crypto_dispatch
[CRYPTO_NR_MSGTYPES
] = {
418 [CRYPTO_MSG_NEWALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_add_alg
},
419 [CRYPTO_MSG_DELALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_del_alg
},
420 [CRYPTO_MSG_UPDATEALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_update_alg
},
421 [CRYPTO_MSG_GETALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_report
,
422 .dump
= crypto_dump_report
,
423 .done
= crypto_dump_report_done
},
424 [CRYPTO_MSG_DELRNG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_del_rng
},
425 [CRYPTO_MSG_GETSTAT
- CRYPTO_MSG_BASE
] = { .doit
= crypto_reportstat
},
428 static int crypto_user_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
429 struct netlink_ext_ack
*extack
)
431 struct net
*net
= sock_net(skb
->sk
);
432 struct nlattr
*attrs
[CRYPTOCFGA_MAX
+1];
433 const struct crypto_link
*link
;
436 type
= nlh
->nlmsg_type
;
437 if (type
> CRYPTO_MSG_MAX
)
440 type
-= CRYPTO_MSG_BASE
;
441 link
= &crypto_dispatch
[type
];
443 if ((type
== (CRYPTO_MSG_GETALG
- CRYPTO_MSG_BASE
) &&
444 (nlh
->nlmsg_flags
& NLM_F_DUMP
))) {
445 struct crypto_alg
*alg
;
446 unsigned long dump_alloc
= 0;
448 if (link
->dump
== NULL
)
451 down_read(&crypto_alg_sem
);
452 list_for_each_entry(alg
, &crypto_alg_list
, cra_list
)
453 dump_alloc
+= CRYPTO_REPORT_MAXSIZE
;
454 up_read(&crypto_alg_sem
);
457 struct netlink_dump_control c
= {
460 .min_dump_alloc
= min(dump_alloc
, 65535UL),
462 err
= netlink_dump_start(net
->crypto_nlsk
, skb
, nlh
, &c
);
468 err
= nlmsg_parse_deprecated(nlh
, crypto_msg_min
[type
], attrs
,
469 CRYPTOCFGA_MAX
, crypto_policy
, extack
);
473 if (link
->doit
== NULL
)
476 return link
->doit(skb
, nlh
, attrs
);
479 static void crypto_netlink_rcv(struct sk_buff
*skb
)
481 mutex_lock(&crypto_cfg_mutex
);
482 netlink_rcv_skb(skb
, &crypto_user_rcv_msg
);
483 mutex_unlock(&crypto_cfg_mutex
);
486 static int __net_init
crypto_netlink_init(struct net
*net
)
488 struct netlink_kernel_cfg cfg
= {
489 .input
= crypto_netlink_rcv
,
492 net
->crypto_nlsk
= netlink_kernel_create(net
, NETLINK_CRYPTO
, &cfg
);
493 return net
->crypto_nlsk
== NULL
? -ENOMEM
: 0;
496 static void __net_exit
crypto_netlink_exit(struct net
*net
)
498 netlink_kernel_release(net
->crypto_nlsk
);
499 net
->crypto_nlsk
= NULL
;
502 static struct pernet_operations crypto_netlink_net_ops
= {
503 .init
= crypto_netlink_init
,
504 .exit
= crypto_netlink_exit
,
507 static int __init
crypto_user_init(void)
509 return register_pernet_subsys(&crypto_netlink_net_ops
);
512 static void __exit
crypto_user_exit(void)
514 unregister_pernet_subsys(&crypto_netlink_net_ops
);
517 module_init(crypto_user_init
);
518 module_exit(crypto_user_exit
);
519 MODULE_LICENSE("GPL");
520 MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
521 MODULE_DESCRIPTION("Crypto userspace configuration API");
522 MODULE_ALIAS("net-pf-16-proto-21");