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/skcipher.h>
29 #include <crypto/internal/rng.h>
30 #include <crypto/akcipher.h>
31 #include <crypto/kpp.h>
32 #include <crypto/internal/cryptouser.h>
36 #define null_terminated(x) (strnlen(x, sizeof(x)) < sizeof(x))
38 static DEFINE_MUTEX(crypto_cfg_mutex
);
40 /* The crypto netlink socket */
41 struct sock
*crypto_nlsk
;
43 struct crypto_dump_info
{
44 struct sk_buff
*in_skb
;
45 struct sk_buff
*out_skb
;
50 struct crypto_alg
*crypto_alg_match(struct crypto_user_alg
*p
, int exact
)
52 struct crypto_alg
*q
, *alg
= NULL
;
54 down_read(&crypto_alg_sem
);
56 list_for_each_entry(q
, &crypto_alg_list
, cra_list
) {
59 if ((q
->cra_flags
^ p
->cru_type
) & p
->cru_mask
)
62 if (strlen(p
->cru_driver_name
))
63 match
= !strcmp(q
->cra_driver_name
,
66 match
= !strcmp(q
->cra_name
, p
->cru_name
);
71 if (unlikely(!crypto_mod_get(q
)))
78 up_read(&crypto_alg_sem
);
83 static int crypto_report_cipher(struct sk_buff
*skb
, struct crypto_alg
*alg
)
85 struct crypto_report_cipher rcipher
;
87 memset(&rcipher
, 0, sizeof(rcipher
));
89 strscpy(rcipher
.type
, "cipher", sizeof(rcipher
.type
));
91 rcipher
.blocksize
= alg
->cra_blocksize
;
92 rcipher
.min_keysize
= alg
->cra_cipher
.cia_min_keysize
;
93 rcipher
.max_keysize
= alg
->cra_cipher
.cia_max_keysize
;
95 return nla_put(skb
, CRYPTOCFGA_REPORT_CIPHER
,
96 sizeof(rcipher
), &rcipher
);
99 static int crypto_report_comp(struct sk_buff
*skb
, struct crypto_alg
*alg
)
101 struct crypto_report_comp rcomp
;
103 memset(&rcomp
, 0, sizeof(rcomp
));
105 strscpy(rcomp
.type
, "compression", sizeof(rcomp
.type
));
107 return nla_put(skb
, CRYPTOCFGA_REPORT_COMPRESS
, sizeof(rcomp
), &rcomp
);
110 static int crypto_report_one(struct crypto_alg
*alg
,
111 struct crypto_user_alg
*ualg
, struct sk_buff
*skb
)
113 memset(ualg
, 0, sizeof(*ualg
));
115 strscpy(ualg
->cru_name
, alg
->cra_name
, sizeof(ualg
->cru_name
));
116 strscpy(ualg
->cru_driver_name
, alg
->cra_driver_name
,
117 sizeof(ualg
->cru_driver_name
));
118 strscpy(ualg
->cru_module_name
, module_name(alg
->cra_module
),
119 sizeof(ualg
->cru_module_name
));
123 ualg
->cru_flags
= alg
->cra_flags
;
124 ualg
->cru_refcnt
= refcount_read(&alg
->cra_refcnt
);
126 if (nla_put_u32(skb
, CRYPTOCFGA_PRIORITY_VAL
, alg
->cra_priority
))
127 goto nla_put_failure
;
128 if (alg
->cra_flags
& CRYPTO_ALG_LARVAL
) {
129 struct crypto_report_larval rl
;
131 memset(&rl
, 0, sizeof(rl
));
132 strscpy(rl
.type
, "larval", sizeof(rl
.type
));
133 if (nla_put(skb
, CRYPTOCFGA_REPORT_LARVAL
, sizeof(rl
), &rl
))
134 goto nla_put_failure
;
138 if (alg
->cra_type
&& alg
->cra_type
->report
) {
139 if (alg
->cra_type
->report(skb
, alg
))
140 goto nla_put_failure
;
145 switch (alg
->cra_flags
& (CRYPTO_ALG_TYPE_MASK
| CRYPTO_ALG_LARVAL
)) {
146 case CRYPTO_ALG_TYPE_CIPHER
:
147 if (crypto_report_cipher(skb
, alg
))
148 goto nla_put_failure
;
151 case CRYPTO_ALG_TYPE_COMPRESS
:
152 if (crypto_report_comp(skb
, alg
))
153 goto nla_put_failure
;
165 static int crypto_report_alg(struct crypto_alg
*alg
,
166 struct crypto_dump_info
*info
)
168 struct sk_buff
*in_skb
= info
->in_skb
;
169 struct sk_buff
*skb
= info
->out_skb
;
170 struct nlmsghdr
*nlh
;
171 struct crypto_user_alg
*ualg
;
174 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).portid
, info
->nlmsg_seq
,
175 CRYPTO_MSG_GETALG
, sizeof(*ualg
), info
->nlmsg_flags
);
181 ualg
= nlmsg_data(nlh
);
183 err
= crypto_report_one(alg
, ualg
, skb
);
185 nlmsg_cancel(skb
, nlh
);
195 static int crypto_report(struct sk_buff
*in_skb
, struct nlmsghdr
*in_nlh
,
196 struct nlattr
**attrs
)
198 struct crypto_user_alg
*p
= nlmsg_data(in_nlh
);
199 struct crypto_alg
*alg
;
201 struct crypto_dump_info info
;
204 if (!null_terminated(p
->cru_name
) || !null_terminated(p
->cru_driver_name
))
207 alg
= crypto_alg_match(p
, 0);
212 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
216 info
.in_skb
= in_skb
;
218 info
.nlmsg_seq
= in_nlh
->nlmsg_seq
;
219 info
.nlmsg_flags
= 0;
221 err
= crypto_report_alg(alg
, &info
);
229 return nlmsg_unicast(crypto_nlsk
, skb
, NETLINK_CB(in_skb
).portid
);
232 static int crypto_dump_report(struct sk_buff
*skb
, struct netlink_callback
*cb
)
234 const size_t start_pos
= cb
->args
[0];
236 struct crypto_dump_info info
;
237 struct crypto_alg
*alg
;
240 info
.in_skb
= cb
->skb
;
242 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
243 info
.nlmsg_flags
= NLM_F_MULTI
;
245 down_read(&crypto_alg_sem
);
246 list_for_each_entry(alg
, &crypto_alg_list
, cra_list
) {
247 if (pos
>= start_pos
) {
248 res
= crypto_report_alg(alg
, &info
);
249 if (res
== -EMSGSIZE
)
259 up_read(&crypto_alg_sem
);
263 static int crypto_dump_report_done(struct netlink_callback
*cb
)
268 static int crypto_update_alg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
269 struct nlattr
**attrs
)
271 struct crypto_alg
*alg
;
272 struct crypto_user_alg
*p
= nlmsg_data(nlh
);
273 struct nlattr
*priority
= attrs
[CRYPTOCFGA_PRIORITY_VAL
];
276 if (!netlink_capable(skb
, CAP_NET_ADMIN
))
279 if (!null_terminated(p
->cru_name
) || !null_terminated(p
->cru_driver_name
))
282 if (priority
&& !strlen(p
->cru_driver_name
))
285 alg
= crypto_alg_match(p
, 1);
289 down_write(&crypto_alg_sem
);
291 crypto_remove_spawns(alg
, &list
, NULL
);
294 alg
->cra_priority
= nla_get_u32(priority
);
296 up_write(&crypto_alg_sem
);
299 crypto_remove_final(&list
);
304 static int crypto_del_alg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
305 struct nlattr
**attrs
)
307 struct crypto_alg
*alg
;
308 struct crypto_user_alg
*p
= nlmsg_data(nlh
);
311 if (!netlink_capable(skb
, CAP_NET_ADMIN
))
314 if (!null_terminated(p
->cru_name
) || !null_terminated(p
->cru_driver_name
))
317 alg
= crypto_alg_match(p
, 1);
321 /* We can not unregister core algorithms such as aes-generic.
322 * We would loose the reference in the crypto_alg_list to this algorithm
323 * if we try to unregister. Unregistering such an algorithm without
324 * removing the module is not possible, so we restrict to crypto
325 * instances that are build from templates. */
327 if (!(alg
->cra_flags
& CRYPTO_ALG_INSTANCE
))
331 if (refcount_read(&alg
->cra_refcnt
) > 2)
334 err
= crypto_unregister_instance((struct crypto_instance
*)alg
);
341 static int crypto_add_alg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
342 struct nlattr
**attrs
)
346 struct crypto_alg
*alg
;
347 struct crypto_user_alg
*p
= nlmsg_data(nlh
);
348 struct nlattr
*priority
= attrs
[CRYPTOCFGA_PRIORITY_VAL
];
350 if (!netlink_capable(skb
, CAP_NET_ADMIN
))
353 if (!null_terminated(p
->cru_name
) || !null_terminated(p
->cru_driver_name
))
356 if (strlen(p
->cru_driver_name
))
359 if (priority
&& !exact
)
362 alg
= crypto_alg_match(p
, exact
);
368 if (strlen(p
->cru_driver_name
))
369 name
= p
->cru_driver_name
;
373 alg
= crypto_alg_mod_lookup(name
, p
->cru_type
, p
->cru_mask
);
377 down_write(&crypto_alg_sem
);
380 alg
->cra_priority
= nla_get_u32(priority
);
382 up_write(&crypto_alg_sem
);
389 static int crypto_del_rng(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
390 struct nlattr
**attrs
)
392 if (!netlink_capable(skb
, CAP_NET_ADMIN
))
394 return crypto_del_default_rng();
397 #define MSGSIZE(type) sizeof(struct type)
399 static const int crypto_msg_min
[CRYPTO_NR_MSGTYPES
] = {
400 [CRYPTO_MSG_NEWALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
401 [CRYPTO_MSG_DELALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
402 [CRYPTO_MSG_UPDATEALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
403 [CRYPTO_MSG_GETALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
404 [CRYPTO_MSG_DELRNG
- CRYPTO_MSG_BASE
] = 0,
405 [CRYPTO_MSG_GETSTAT
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
408 static const struct nla_policy crypto_policy
[CRYPTOCFGA_MAX
+1] = {
409 [CRYPTOCFGA_PRIORITY_VAL
] = { .type
= NLA_U32
},
414 static const struct crypto_link
{
415 int (*doit
)(struct sk_buff
*, struct nlmsghdr
*, struct nlattr
**);
416 int (*dump
)(struct sk_buff
*, struct netlink_callback
*);
417 int (*done
)(struct netlink_callback
*);
418 } crypto_dispatch
[CRYPTO_NR_MSGTYPES
] = {
419 [CRYPTO_MSG_NEWALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_add_alg
},
420 [CRYPTO_MSG_DELALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_del_alg
},
421 [CRYPTO_MSG_UPDATEALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_update_alg
},
422 [CRYPTO_MSG_GETALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_report
,
423 .dump
= crypto_dump_report
,
424 .done
= crypto_dump_report_done
},
425 [CRYPTO_MSG_DELRNG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_del_rng
},
426 [CRYPTO_MSG_GETSTAT
- CRYPTO_MSG_BASE
] = { .doit
= crypto_reportstat
},
429 static int crypto_user_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
430 struct netlink_ext_ack
*extack
)
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(crypto_nlsk
, skb
, nlh
, &c
);
468 err
= nlmsg_parse(nlh
, crypto_msg_min
[type
], attrs
, CRYPTOCFGA_MAX
,
469 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 __init
crypto_user_init(void)
488 struct netlink_kernel_cfg cfg
= {
489 .input
= crypto_netlink_rcv
,
492 crypto_nlsk
= netlink_kernel_create(&init_net
, NETLINK_CRYPTO
, &cfg
);
499 static void __exit
crypto_user_exit(void)
501 netlink_kernel_release(crypto_nlsk
);
504 module_init(crypto_user_init
);
505 module_exit(crypto_user_exit
);
506 MODULE_LICENSE("GPL");
507 MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
508 MODULE_DESCRIPTION("Crypto userspace configuration API");
509 MODULE_ALIAS("net-pf-16-proto-21");