2 * Crypto user configuration API.
4 * Copyright (C) 2011 secunet Security Networks AG
5 * Copyright (C) 2011 Steffen Klassert <steffen.klassert@secunet.com>
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.
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
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.
21 #include <linux/module.h>
22 #include <linux/crypto.h>
23 #include <linux/cryptouser.h>
24 #include <linux/sched.h>
25 #include <net/netlink.h>
26 #include <linux/security.h>
27 #include <net/net_namespace.h>
28 #include <crypto/internal/aead.h>
29 #include <crypto/internal/skcipher.h>
33 #define null_terminated(x) (strnlen(x, sizeof(x)) < sizeof(x))
35 static DEFINE_MUTEX(crypto_cfg_mutex
);
37 /* The crypto netlink socket */
38 static struct sock
*crypto_nlsk
;
40 struct crypto_dump_info
{
41 struct sk_buff
*in_skb
;
42 struct sk_buff
*out_skb
;
47 static struct crypto_alg
*crypto_alg_match(struct crypto_user_alg
*p
, int exact
)
49 struct crypto_alg
*q
, *alg
= NULL
;
51 down_read(&crypto_alg_sem
);
53 list_for_each_entry(q
, &crypto_alg_list
, cra_list
) {
56 if ((q
->cra_flags
^ p
->cru_type
) & p
->cru_mask
)
59 if (strlen(p
->cru_driver_name
))
60 match
= !strcmp(q
->cra_driver_name
,
63 match
= !strcmp(q
->cra_name
, p
->cru_name
);
68 if (unlikely(!crypto_mod_get(q
)))
75 up_read(&crypto_alg_sem
);
80 static int crypto_report_cipher(struct sk_buff
*skb
, struct crypto_alg
*alg
)
82 struct crypto_report_cipher rcipher
;
84 strncpy(rcipher
.type
, "cipher", sizeof(rcipher
.type
));
86 rcipher
.blocksize
= alg
->cra_blocksize
;
87 rcipher
.min_keysize
= alg
->cra_cipher
.cia_min_keysize
;
88 rcipher
.max_keysize
= alg
->cra_cipher
.cia_max_keysize
;
90 if (nla_put(skb
, CRYPTOCFGA_REPORT_CIPHER
,
91 sizeof(struct crypto_report_cipher
), &rcipher
))
99 static int crypto_report_comp(struct sk_buff
*skb
, struct crypto_alg
*alg
)
101 struct crypto_report_comp rcomp
;
103 strncpy(rcomp
.type
, "compression", sizeof(rcomp
.type
));
104 if (nla_put(skb
, CRYPTOCFGA_REPORT_COMPRESS
,
105 sizeof(struct crypto_report_comp
), &rcomp
))
106 goto nla_put_failure
;
113 static int crypto_report_one(struct crypto_alg
*alg
,
114 struct crypto_user_alg
*ualg
, struct sk_buff
*skb
)
116 strncpy(ualg
->cru_name
, alg
->cra_name
, sizeof(ualg
->cru_name
));
117 strncpy(ualg
->cru_driver_name
, alg
->cra_driver_name
,
118 sizeof(ualg
->cru_driver_name
));
119 strncpy(ualg
->cru_module_name
, module_name(alg
->cra_module
),
120 sizeof(ualg
->cru_module_name
));
124 ualg
->cru_flags
= alg
->cra_flags
;
125 ualg
->cru_refcnt
= atomic_read(&alg
->cra_refcnt
);
127 if (nla_put_u32(skb
, CRYPTOCFGA_PRIORITY_VAL
, alg
->cra_priority
))
128 goto nla_put_failure
;
129 if (alg
->cra_flags
& CRYPTO_ALG_LARVAL
) {
130 struct crypto_report_larval rl
;
132 strncpy(rl
.type
, "larval", sizeof(rl
.type
));
133 if (nla_put(skb
, CRYPTOCFGA_REPORT_LARVAL
,
134 sizeof(struct crypto_report_larval
), &rl
))
135 goto nla_put_failure
;
139 if (alg
->cra_type
&& alg
->cra_type
->report
) {
140 if (alg
->cra_type
->report(skb
, alg
))
141 goto nla_put_failure
;
146 switch (alg
->cra_flags
& (CRYPTO_ALG_TYPE_MASK
| CRYPTO_ALG_LARVAL
)) {
147 case CRYPTO_ALG_TYPE_CIPHER
:
148 if (crypto_report_cipher(skb
, alg
))
149 goto nla_put_failure
;
152 case CRYPTO_ALG_TYPE_COMPRESS
:
153 if (crypto_report_comp(skb
, alg
))
154 goto nla_put_failure
;
166 static int crypto_report_alg(struct crypto_alg
*alg
,
167 struct crypto_dump_info
*info
)
169 struct sk_buff
*in_skb
= info
->in_skb
;
170 struct sk_buff
*skb
= info
->out_skb
;
171 struct nlmsghdr
*nlh
;
172 struct crypto_user_alg
*ualg
;
175 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).portid
, info
->nlmsg_seq
,
176 CRYPTO_MSG_GETALG
, sizeof(*ualg
), info
->nlmsg_flags
);
182 ualg
= nlmsg_data(nlh
);
184 err
= crypto_report_one(alg
, ualg
, skb
);
186 nlmsg_cancel(skb
, nlh
);
196 static int crypto_report(struct sk_buff
*in_skb
, struct nlmsghdr
*in_nlh
,
197 struct nlattr
**attrs
)
199 struct crypto_user_alg
*p
= nlmsg_data(in_nlh
);
200 struct crypto_alg
*alg
;
202 struct crypto_dump_info info
;
205 if (!null_terminated(p
->cru_name
) || !null_terminated(p
->cru_driver_name
))
208 alg
= crypto_alg_match(p
, 0);
213 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
217 info
.in_skb
= in_skb
;
219 info
.nlmsg_seq
= in_nlh
->nlmsg_seq
;
220 info
.nlmsg_flags
= 0;
222 err
= crypto_report_alg(alg
, &info
);
230 return nlmsg_unicast(crypto_nlsk
, skb
, NETLINK_CB(in_skb
).portid
);
233 static int crypto_dump_report(struct sk_buff
*skb
, struct netlink_callback
*cb
)
235 struct crypto_alg
*alg
;
236 struct crypto_dump_info info
;
244 info
.in_skb
= cb
->skb
;
246 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
247 info
.nlmsg_flags
= NLM_F_MULTI
;
249 list_for_each_entry(alg
, &crypto_alg_list
, cra_list
) {
250 err
= crypto_report_alg(alg
, &info
);
261 static int crypto_dump_report_done(struct netlink_callback
*cb
)
266 static int crypto_update_alg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
267 struct nlattr
**attrs
)
269 struct crypto_alg
*alg
;
270 struct crypto_user_alg
*p
= nlmsg_data(nlh
);
271 struct nlattr
*priority
= attrs
[CRYPTOCFGA_PRIORITY_VAL
];
274 if (!netlink_capable(skb
, CAP_NET_ADMIN
))
277 if (!null_terminated(p
->cru_name
) || !null_terminated(p
->cru_driver_name
))
280 if (priority
&& !strlen(p
->cru_driver_name
))
283 alg
= crypto_alg_match(p
, 1);
287 down_write(&crypto_alg_sem
);
289 crypto_remove_spawns(alg
, &list
, NULL
);
292 alg
->cra_priority
= nla_get_u32(priority
);
294 up_write(&crypto_alg_sem
);
297 crypto_remove_final(&list
);
302 static int crypto_del_alg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
303 struct nlattr
**attrs
)
305 struct crypto_alg
*alg
;
306 struct crypto_user_alg
*p
= nlmsg_data(nlh
);
309 if (!netlink_capable(skb
, CAP_NET_ADMIN
))
312 if (!null_terminated(p
->cru_name
) || !null_terminated(p
->cru_driver_name
))
315 alg
= crypto_alg_match(p
, 1);
319 /* We can not unregister core algorithms such as aes-generic.
320 * We would loose the reference in the crypto_alg_list to this algorithm
321 * if we try to unregister. Unregistering such an algorithm without
322 * removing the module is not possible, so we restrict to crypto
323 * instances that are build from templates. */
325 if (!(alg
->cra_flags
& CRYPTO_ALG_INSTANCE
))
329 if (atomic_read(&alg
->cra_refcnt
) > 2)
332 err
= crypto_unregister_instance((struct crypto_instance
*)alg
);
339 static struct crypto_alg
*crypto_user_skcipher_alg(const char *name
, u32 type
,
343 struct crypto_alg
*alg
;
345 type
= crypto_skcipher_type(type
);
346 mask
= crypto_skcipher_mask(mask
);
349 alg
= crypto_lookup_skcipher(name
, type
, mask
);
356 if (signal_pending(current
)) {
365 static struct crypto_alg
*crypto_user_aead_alg(const char *name
, u32 type
,
369 struct crypto_alg
*alg
;
371 type
&= ~(CRYPTO_ALG_TYPE_MASK
| CRYPTO_ALG_GENIV
);
372 type
|= CRYPTO_ALG_TYPE_AEAD
;
373 mask
&= ~(CRYPTO_ALG_TYPE_MASK
| CRYPTO_ALG_GENIV
);
374 mask
|= CRYPTO_ALG_TYPE_MASK
;
377 alg
= crypto_lookup_aead(name
, type
, mask
);
384 if (signal_pending(current
)) {
393 static int crypto_add_alg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
394 struct nlattr
**attrs
)
398 struct crypto_alg
*alg
;
399 struct crypto_user_alg
*p
= nlmsg_data(nlh
);
400 struct nlattr
*priority
= attrs
[CRYPTOCFGA_PRIORITY_VAL
];
402 if (!netlink_capable(skb
, CAP_NET_ADMIN
))
405 if (!null_terminated(p
->cru_name
) || !null_terminated(p
->cru_driver_name
))
408 if (strlen(p
->cru_driver_name
))
411 if (priority
&& !exact
)
414 alg
= crypto_alg_match(p
, exact
);
420 if (strlen(p
->cru_driver_name
))
421 name
= p
->cru_driver_name
;
425 switch (p
->cru_type
& p
->cru_mask
& CRYPTO_ALG_TYPE_MASK
) {
426 case CRYPTO_ALG_TYPE_AEAD
:
427 alg
= crypto_user_aead_alg(name
, p
->cru_type
, p
->cru_mask
);
429 case CRYPTO_ALG_TYPE_GIVCIPHER
:
430 case CRYPTO_ALG_TYPE_BLKCIPHER
:
431 case CRYPTO_ALG_TYPE_ABLKCIPHER
:
432 alg
= crypto_user_skcipher_alg(name
, p
->cru_type
, p
->cru_mask
);
435 alg
= crypto_alg_mod_lookup(name
, p
->cru_type
, p
->cru_mask
);
441 down_write(&crypto_alg_sem
);
444 alg
->cra_priority
= nla_get_u32(priority
);
446 up_write(&crypto_alg_sem
);
453 #define MSGSIZE(type) sizeof(struct type)
455 static const int crypto_msg_min
[CRYPTO_NR_MSGTYPES
] = {
456 [CRYPTO_MSG_NEWALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
457 [CRYPTO_MSG_DELALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
458 [CRYPTO_MSG_UPDATEALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
459 [CRYPTO_MSG_GETALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
462 static const struct nla_policy crypto_policy
[CRYPTOCFGA_MAX
+1] = {
463 [CRYPTOCFGA_PRIORITY_VAL
] = { .type
= NLA_U32
},
468 static const struct crypto_link
{
469 int (*doit
)(struct sk_buff
*, struct nlmsghdr
*, struct nlattr
**);
470 int (*dump
)(struct sk_buff
*, struct netlink_callback
*);
471 int (*done
)(struct netlink_callback
*);
472 } crypto_dispatch
[CRYPTO_NR_MSGTYPES
] = {
473 [CRYPTO_MSG_NEWALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_add_alg
},
474 [CRYPTO_MSG_DELALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_del_alg
},
475 [CRYPTO_MSG_UPDATEALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_update_alg
},
476 [CRYPTO_MSG_GETALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_report
,
477 .dump
= crypto_dump_report
,
478 .done
= crypto_dump_report_done
},
481 static int crypto_user_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
483 struct nlattr
*attrs
[CRYPTOCFGA_MAX
+1];
484 const struct crypto_link
*link
;
487 type
= nlh
->nlmsg_type
;
488 if (type
> CRYPTO_MSG_MAX
)
491 type
-= CRYPTO_MSG_BASE
;
492 link
= &crypto_dispatch
[type
];
494 if ((type
== (CRYPTO_MSG_GETALG
- CRYPTO_MSG_BASE
) &&
495 (nlh
->nlmsg_flags
& NLM_F_DUMP
))) {
496 struct crypto_alg
*alg
;
499 if (link
->dump
== NULL
)
502 list_for_each_entry(alg
, &crypto_alg_list
, cra_list
)
503 dump_alloc
+= CRYPTO_REPORT_MAXSIZE
;
506 struct netlink_dump_control c
= {
509 .min_dump_alloc
= dump_alloc
,
511 return netlink_dump_start(crypto_nlsk
, skb
, nlh
, &c
);
515 err
= nlmsg_parse(nlh
, crypto_msg_min
[type
], attrs
, CRYPTOCFGA_MAX
,
520 if (link
->doit
== NULL
)
523 return link
->doit(skb
, nlh
, attrs
);
526 static void crypto_netlink_rcv(struct sk_buff
*skb
)
528 mutex_lock(&crypto_cfg_mutex
);
529 netlink_rcv_skb(skb
, &crypto_user_rcv_msg
);
530 mutex_unlock(&crypto_cfg_mutex
);
533 static int __init
crypto_user_init(void)
535 struct netlink_kernel_cfg cfg
= {
536 .input
= crypto_netlink_rcv
,
539 crypto_nlsk
= netlink_kernel_create(&init_net
, NETLINK_CRYPTO
, &cfg
);
546 static void __exit
crypto_user_exit(void)
548 netlink_kernel_release(crypto_nlsk
);
551 module_init(crypto_user_init
);
552 module_exit(crypto_user_exit
);
553 MODULE_LICENSE("GPL");
554 MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
555 MODULE_DESCRIPTION("Crypto userspace configuration API");
556 MODULE_ALIAS("net-pf-16-proto-21");