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 <net/netlink.h>
25 #include <linux/security.h>
26 #include <net/net_namespace.h>
29 DEFINE_MUTEX(crypto_cfg_mutex
);
31 /* The crypto netlink socket */
32 static struct sock
*crypto_nlsk
;
34 struct crypto_dump_info
{
35 struct sk_buff
*in_skb
;
36 struct sk_buff
*out_skb
;
41 static struct crypto_alg
*crypto_alg_match(struct crypto_user_alg
*p
, int exact
)
43 struct crypto_alg
*q
, *alg
= NULL
;
45 down_read(&crypto_alg_sem
);
47 if (list_empty(&crypto_alg_list
))
50 list_for_each_entry(q
, &crypto_alg_list
, cra_list
) {
53 if ((q
->cra_flags
^ p
->cru_type
) & p
->cru_mask
)
56 if (strlen(p
->cru_driver_name
))
57 match
= !strcmp(q
->cra_driver_name
,
60 match
= !strcmp(q
->cra_name
, p
->cru_name
);
68 up_read(&crypto_alg_sem
);
73 static int crypto_report_cipher(struct sk_buff
*skb
, struct crypto_alg
*alg
)
75 struct crypto_report_cipher rcipher
;
77 snprintf(rcipher
.type
, CRYPTO_MAX_ALG_NAME
, "%s", "cipher");
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 NLA_PUT(skb
, CRYPTOCFGA_REPORT_CIPHER
,
84 sizeof(struct crypto_report_cipher
), &rcipher
);
92 static int crypto_report_comp(struct sk_buff
*skb
, struct crypto_alg
*alg
)
94 struct crypto_report_comp rcomp
;
96 snprintf(rcomp
.type
, CRYPTO_MAX_ALG_NAME
, "%s", "compression");
98 NLA_PUT(skb
, CRYPTOCFGA_REPORT_COMPRESS
,
99 sizeof(struct crypto_report_comp
), &rcomp
);
107 static int crypto_report_one(struct crypto_alg
*alg
,
108 struct crypto_user_alg
*ualg
, struct sk_buff
*skb
)
110 memcpy(&ualg
->cru_name
, &alg
->cra_name
, sizeof(ualg
->cru_name
));
111 memcpy(&ualg
->cru_driver_name
, &alg
->cra_driver_name
,
112 sizeof(ualg
->cru_driver_name
));
113 memcpy(&ualg
->cru_module_name
, module_name(alg
->cra_module
),
114 CRYPTO_MAX_ALG_NAME
);
116 ualg
->cru_flags
= alg
->cra_flags
;
117 ualg
->cru_refcnt
= atomic_read(&alg
->cra_refcnt
);
119 NLA_PUT_U32(skb
, CRYPTOCFGA_PRIORITY_VAL
, alg
->cra_priority
);
121 if (alg
->cra_flags
& CRYPTO_ALG_LARVAL
) {
122 struct crypto_report_larval rl
;
124 snprintf(rl
.type
, CRYPTO_MAX_ALG_NAME
, "%s", "larval");
126 NLA_PUT(skb
, CRYPTOCFGA_REPORT_LARVAL
,
127 sizeof(struct crypto_report_larval
), &rl
);
132 if (alg
->cra_type
&& alg
->cra_type
->report
) {
133 if (alg
->cra_type
->report(skb
, alg
))
134 goto nla_put_failure
;
139 switch (alg
->cra_flags
& (CRYPTO_ALG_TYPE_MASK
| CRYPTO_ALG_LARVAL
)) {
140 case CRYPTO_ALG_TYPE_CIPHER
:
141 if (crypto_report_cipher(skb
, alg
))
142 goto nla_put_failure
;
145 case CRYPTO_ALG_TYPE_COMPRESS
:
146 if (crypto_report_comp(skb
, alg
))
147 goto nla_put_failure
;
159 static int crypto_report_alg(struct crypto_alg
*alg
,
160 struct crypto_dump_info
*info
)
162 struct sk_buff
*in_skb
= info
->in_skb
;
163 struct sk_buff
*skb
= info
->out_skb
;
164 struct nlmsghdr
*nlh
;
165 struct crypto_user_alg
*ualg
;
168 nlh
= nlmsg_put(skb
, NETLINK_CB(in_skb
).pid
, info
->nlmsg_seq
,
169 CRYPTO_MSG_GETALG
, sizeof(*ualg
), info
->nlmsg_flags
);
175 ualg
= nlmsg_data(nlh
);
177 err
= crypto_report_one(alg
, ualg
, skb
);
179 nlmsg_cancel(skb
, nlh
);
189 static int crypto_report(struct sk_buff
*in_skb
, struct nlmsghdr
*in_nlh
,
190 struct nlattr
**attrs
)
192 struct crypto_user_alg
*p
= nlmsg_data(in_nlh
);
193 struct crypto_alg
*alg
;
195 struct crypto_dump_info info
;
198 if (!p
->cru_driver_name
)
201 alg
= crypto_alg_match(p
, 1);
205 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
209 info
.in_skb
= in_skb
;
211 info
.nlmsg_seq
= in_nlh
->nlmsg_seq
;
212 info
.nlmsg_flags
= 0;
214 err
= crypto_report_alg(alg
, &info
);
218 return nlmsg_unicast(crypto_nlsk
, skb
, NETLINK_CB(in_skb
).pid
);
221 static int crypto_dump_report(struct sk_buff
*skb
, struct netlink_callback
*cb
)
223 struct crypto_alg
*alg
;
224 struct crypto_dump_info info
;
232 info
.in_skb
= cb
->skb
;
234 info
.nlmsg_seq
= cb
->nlh
->nlmsg_seq
;
235 info
.nlmsg_flags
= NLM_F_MULTI
;
237 list_for_each_entry(alg
, &crypto_alg_list
, cra_list
) {
238 err
= crypto_report_alg(alg
, &info
);
249 static int crypto_dump_report_done(struct netlink_callback
*cb
)
254 static int crypto_update_alg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
255 struct nlattr
**attrs
)
257 struct crypto_alg
*alg
;
258 struct crypto_user_alg
*p
= nlmsg_data(nlh
);
259 struct nlattr
*priority
= attrs
[CRYPTOCFGA_PRIORITY_VAL
];
262 if (priority
&& !strlen(p
->cru_driver_name
))
265 alg
= crypto_alg_match(p
, 1);
269 down_write(&crypto_alg_sem
);
271 crypto_remove_spawns(alg
, &list
, NULL
);
274 alg
->cra_priority
= nla_get_u32(priority
);
276 up_write(&crypto_alg_sem
);
278 crypto_remove_final(&list
);
283 static int crypto_del_alg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
284 struct nlattr
**attrs
)
286 struct crypto_alg
*alg
;
287 struct crypto_user_alg
*p
= nlmsg_data(nlh
);
289 alg
= crypto_alg_match(p
, 1);
293 /* We can not unregister core algorithms such as aes-generic.
294 * We would loose the reference in the crypto_alg_list to this algorithm
295 * if we try to unregister. Unregistering such an algorithm without
296 * removing the module is not possible, so we restrict to crypto
297 * instances that are build from templates. */
298 if (!(alg
->cra_flags
& CRYPTO_ALG_INSTANCE
))
301 if (atomic_read(&alg
->cra_refcnt
) != 1)
304 return crypto_unregister_alg(alg
);
307 static int crypto_add_alg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
308 struct nlattr
**attrs
)
312 struct crypto_alg
*alg
;
313 struct crypto_user_alg
*p
= nlmsg_data(nlh
);
314 struct nlattr
*priority
= attrs
[CRYPTOCFGA_PRIORITY_VAL
];
316 if (strlen(p
->cru_driver_name
))
319 if (priority
&& !exact
)
322 alg
= crypto_alg_match(p
, exact
);
326 if (strlen(p
->cru_driver_name
))
327 name
= p
->cru_driver_name
;
331 alg
= crypto_alg_mod_lookup(name
, p
->cru_type
, p
->cru_mask
);
335 down_write(&crypto_alg_sem
);
338 alg
->cra_priority
= nla_get_u32(priority
);
340 up_write(&crypto_alg_sem
);
347 #define MSGSIZE(type) sizeof(struct type)
349 static const int crypto_msg_min
[CRYPTO_NR_MSGTYPES
] = {
350 [CRYPTO_MSG_NEWALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
351 [CRYPTO_MSG_DELALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
352 [CRYPTO_MSG_UPDATEALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
353 [CRYPTO_MSG_GETALG
- CRYPTO_MSG_BASE
] = MSGSIZE(crypto_user_alg
),
356 static const struct nla_policy crypto_policy
[CRYPTOCFGA_MAX
+1] = {
357 [CRYPTOCFGA_PRIORITY_VAL
] = { .type
= NLA_U32
},
362 static struct crypto_link
{
363 int (*doit
)(struct sk_buff
*, struct nlmsghdr
*, struct nlattr
**);
364 int (*dump
)(struct sk_buff
*, struct netlink_callback
*);
365 int (*done
)(struct netlink_callback
*);
366 } crypto_dispatch
[CRYPTO_NR_MSGTYPES
] = {
367 [CRYPTO_MSG_NEWALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_add_alg
},
368 [CRYPTO_MSG_DELALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_del_alg
},
369 [CRYPTO_MSG_UPDATEALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_update_alg
},
370 [CRYPTO_MSG_GETALG
- CRYPTO_MSG_BASE
] = { .doit
= crypto_report
,
371 .dump
= crypto_dump_report
,
372 .done
= crypto_dump_report_done
},
375 static int crypto_user_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
377 struct nlattr
*attrs
[CRYPTOCFGA_MAX
+1];
378 struct crypto_link
*link
;
381 type
= nlh
->nlmsg_type
;
382 if (type
> CRYPTO_MSG_MAX
)
385 type
-= CRYPTO_MSG_BASE
;
386 link
= &crypto_dispatch
[type
];
388 if (security_netlink_recv(skb
, CAP_NET_ADMIN
))
391 if ((type
== (CRYPTO_MSG_GETALG
- CRYPTO_MSG_BASE
) &&
392 (nlh
->nlmsg_flags
& NLM_F_DUMP
))) {
393 if (link
->dump
== NULL
)
396 return netlink_dump_start(crypto_nlsk
, skb
, nlh
,
397 link
->dump
, link
->done
, 0);
400 err
= nlmsg_parse(nlh
, crypto_msg_min
[type
], attrs
, CRYPTOCFGA_MAX
,
405 if (link
->doit
== NULL
)
408 return link
->doit(skb
, nlh
, attrs
);
411 static void crypto_netlink_rcv(struct sk_buff
*skb
)
413 mutex_lock(&crypto_cfg_mutex
);
414 netlink_rcv_skb(skb
, &crypto_user_rcv_msg
);
415 mutex_unlock(&crypto_cfg_mutex
);
418 static int __init
crypto_user_init(void)
420 crypto_nlsk
= netlink_kernel_create(&init_net
, NETLINK_CRYPTO
,
421 0, crypto_netlink_rcv
,
429 static void __exit
crypto_user_exit(void)
431 netlink_kernel_release(crypto_nlsk
);
434 module_init(crypto_user_init
);
435 module_exit(crypto_user_exit
);
436 MODULE_LICENSE("GPL");
437 MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
438 MODULE_DESCRIPTION("Crypto userspace configuration API");