Thomas Gleixner | a61127c | 2019-05-29 16:57:49 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Crypto user configuration API. |
| 4 | * |
| 5 | * Copyright (C) 2011 secunet Security Networks AG |
| 6 | * Copyright (C) 2011 Steffen Klassert <steffen.klassert@secunet.com> |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/crypto.h> |
| 11 | #include <linux/cryptouser.h> |
Steffen Klassert | 1e12299 | 2012-03-29 09:03:47 +0200 | [diff] [blame] | 12 | #include <linux/sched.h> |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 13 | #include <net/netlink.h> |
| 14 | #include <linux/security.h> |
| 15 | #include <net/net_namespace.h> |
Steffen Klassert | 1e12299 | 2012-03-29 09:03:47 +0200 | [diff] [blame] | 16 | #include <crypto/internal/skcipher.h> |
Herbert Xu | 9aa867e | 2015-06-21 19:11:45 +0800 | [diff] [blame] | 17 | #include <crypto/internal/rng.h> |
Tadeusz Struk | 3c339ab | 2015-06-16 10:30:55 -0700 | [diff] [blame] | 18 | #include <crypto/akcipher.h> |
Salvatore Benedetto | 4e5f2c4 | 2016-06-22 17:49:13 +0100 | [diff] [blame] | 19 | #include <crypto/kpp.h> |
Corentin Labbe | cac5818 | 2018-09-19 10:10:54 +0000 | [diff] [blame] | 20 | #include <crypto/internal/cryptouser.h> |
Steffen Klassert | 1e12299 | 2012-03-29 09:03:47 +0200 | [diff] [blame] | 21 | |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 22 | #include "internal.h" |
| 23 | |
Mathias Krause | 8fd61d3 | 2013-02-05 18:19:15 +0100 | [diff] [blame] | 24 | #define null_terminated(x) (strnlen(x, sizeof(x)) < sizeof(x)) |
| 25 | |
Jussi Kivilinna | 66ce0b0 | 2012-08-28 16:46:54 +0300 | [diff] [blame] | 26 | static DEFINE_MUTEX(crypto_cfg_mutex); |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 27 | |
| 28 | /* The crypto netlink socket */ |
Corentin Labbe | cac5818 | 2018-09-19 10:10:54 +0000 | [diff] [blame] | 29 | struct sock *crypto_nlsk; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 30 | |
| 31 | struct crypto_dump_info { |
| 32 | struct sk_buff *in_skb; |
| 33 | struct sk_buff *out_skb; |
| 34 | u32 nlmsg_seq; |
| 35 | u16 nlmsg_flags; |
| 36 | }; |
| 37 | |
Corentin Labbe | cac5818 | 2018-09-19 10:10:54 +0000 | [diff] [blame] | 38 | struct crypto_alg *crypto_alg_match(struct crypto_user_alg *p, int exact) |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 39 | { |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 40 | struct crypto_alg *q, *alg = NULL; |
| 41 | |
| 42 | down_read(&crypto_alg_sem); |
| 43 | |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 44 | list_for_each_entry(q, &crypto_alg_list, cra_list) { |
Herbert Xu | e6ea64e | 2011-10-21 14:37:10 +0200 | [diff] [blame] | 45 | int match = 0; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 46 | |
| 47 | if ((q->cra_flags ^ p->cru_type) & p->cru_mask) |
| 48 | continue; |
| 49 | |
| 50 | if (strlen(p->cru_driver_name)) |
| 51 | match = !strcmp(q->cra_driver_name, |
| 52 | p->cru_driver_name); |
| 53 | else if (!exact) |
| 54 | match = !strcmp(q->cra_name, p->cru_name); |
| 55 | |
Herbert Xu | 016baaa | 2015-04-07 21:27:01 +0800 | [diff] [blame] | 56 | if (!match) |
| 57 | continue; |
| 58 | |
| 59 | if (unlikely(!crypto_mod_get(q))) |
| 60 | continue; |
| 61 | |
| 62 | alg = q; |
| 63 | break; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | up_read(&crypto_alg_sem); |
| 67 | |
| 68 | return alg; |
| 69 | } |
| 70 | |
Steffen Klassert | 07a5fa4 | 2011-09-27 07:48:01 +0200 | [diff] [blame] | 71 | static int crypto_report_cipher(struct sk_buff *skb, struct crypto_alg *alg) |
| 72 | { |
| 73 | struct crypto_report_cipher rcipher; |
| 74 | |
Eric Biggers | 37db69e | 2018-11-03 14:56:03 -0700 | [diff] [blame] | 75 | memset(&rcipher, 0, sizeof(rcipher)); |
| 76 | |
| 77 | strscpy(rcipher.type, "cipher", sizeof(rcipher.type)); |
Steffen Klassert | 07a5fa4 | 2011-09-27 07:48:01 +0200 | [diff] [blame] | 78 | |
| 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; |
| 82 | |
Eric Biggers | 37db69e | 2018-11-03 14:56:03 -0700 | [diff] [blame] | 83 | return nla_put(skb, CRYPTOCFGA_REPORT_CIPHER, |
| 84 | sizeof(rcipher), &rcipher); |
Steffen Klassert | 07a5fa4 | 2011-09-27 07:48:01 +0200 | [diff] [blame] | 85 | } |
| 86 | |
Steffen Klassert | 540b97c | 2011-09-27 07:48:48 +0200 | [diff] [blame] | 87 | static int crypto_report_comp(struct sk_buff *skb, struct crypto_alg *alg) |
| 88 | { |
| 89 | struct crypto_report_comp rcomp; |
| 90 | |
Eric Biggers | 37db69e | 2018-11-03 14:56:03 -0700 | [diff] [blame] | 91 | memset(&rcomp, 0, sizeof(rcomp)); |
Steffen Klassert | 540b97c | 2011-09-27 07:48:48 +0200 | [diff] [blame] | 92 | |
Eric Biggers | 37db69e | 2018-11-03 14:56:03 -0700 | [diff] [blame] | 93 | strscpy(rcomp.type, "compression", sizeof(rcomp.type)); |
| 94 | |
| 95 | return nla_put(skb, CRYPTOCFGA_REPORT_COMPRESS, sizeof(rcomp), &rcomp); |
Steffen Klassert | 540b97c | 2011-09-27 07:48:48 +0200 | [diff] [blame] | 96 | } |
| 97 | |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 98 | static int crypto_report_one(struct crypto_alg *alg, |
| 99 | struct crypto_user_alg *ualg, struct sk_buff *skb) |
| 100 | { |
Eric Biggers | 37db69e | 2018-11-03 14:56:03 -0700 | [diff] [blame] | 101 | memset(ualg, 0, sizeof(*ualg)); |
| 102 | |
| 103 | strscpy(ualg->cru_name, alg->cra_name, sizeof(ualg->cru_name)); |
| 104 | strscpy(ualg->cru_driver_name, alg->cra_driver_name, |
Mathias Krause | 9a5467bf | 2013-02-05 18:19:13 +0100 | [diff] [blame] | 105 | sizeof(ualg->cru_driver_name)); |
Eric Biggers | 37db69e | 2018-11-03 14:56:03 -0700 | [diff] [blame] | 106 | strscpy(ualg->cru_module_name, module_name(alg->cra_module), |
Mathias Krause | 9a5467bf | 2013-02-05 18:19:13 +0100 | [diff] [blame] | 107 | sizeof(ualg->cru_module_name)); |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 108 | |
Mathias Krause | 9a5467bf | 2013-02-05 18:19:13 +0100 | [diff] [blame] | 109 | ualg->cru_type = 0; |
| 110 | ualg->cru_mask = 0; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 111 | ualg->cru_flags = alg->cra_flags; |
Eric Biggers | ce8614a | 2017-12-29 10:00:46 -0600 | [diff] [blame] | 112 | ualg->cru_refcnt = refcount_read(&alg->cra_refcnt); |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 113 | |
David S. Miller | 6662df3 | 2012-04-01 20:19:05 -0400 | [diff] [blame] | 114 | if (nla_put_u32(skb, CRYPTOCFGA_PRIORITY_VAL, alg->cra_priority)) |
| 115 | goto nla_put_failure; |
Steffen Klassert | 6c5a86f5 | 2011-09-27 07:25:05 +0200 | [diff] [blame] | 116 | if (alg->cra_flags & CRYPTO_ALG_LARVAL) { |
| 117 | struct crypto_report_larval rl; |
| 118 | |
Eric Biggers | 37db69e | 2018-11-03 14:56:03 -0700 | [diff] [blame] | 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)) |
David S. Miller | 6662df3 | 2012-04-01 20:19:05 -0400 | [diff] [blame] | 122 | goto nla_put_failure; |
Steffen Klassert | 6c5a86f5 | 2011-09-27 07:25:05 +0200 | [diff] [blame] | 123 | goto out; |
| 124 | } |
| 125 | |
Steffen Klassert | b6aa63c | 2011-09-27 07:24:29 +0200 | [diff] [blame] | 126 | if (alg->cra_type && alg->cra_type->report) { |
| 127 | if (alg->cra_type->report(skb, alg)) |
| 128 | goto nla_put_failure; |
Steffen Klassert | 07a5fa4 | 2011-09-27 07:48:01 +0200 | [diff] [blame] | 129 | |
| 130 | goto out; |
| 131 | } |
| 132 | |
| 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; |
| 137 | |
| 138 | break; |
Steffen Klassert | 540b97c | 2011-09-27 07:48:48 +0200 | [diff] [blame] | 139 | case CRYPTO_ALG_TYPE_COMPRESS: |
| 140 | if (crypto_report_comp(skb, alg)) |
| 141 | goto nla_put_failure; |
| 142 | |
| 143 | break; |
Steffen Klassert | b6aa63c | 2011-09-27 07:24:29 +0200 | [diff] [blame] | 144 | } |
| 145 | |
Steffen Klassert | 6c5a86f5 | 2011-09-27 07:25:05 +0200 | [diff] [blame] | 146 | out: |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 147 | return 0; |
| 148 | |
| 149 | nla_put_failure: |
| 150 | return -EMSGSIZE; |
| 151 | } |
| 152 | |
| 153 | static int crypto_report_alg(struct crypto_alg *alg, |
| 154 | struct crypto_dump_info *info) |
| 155 | { |
| 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; |
| 160 | int err = 0; |
| 161 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 162 | nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, info->nlmsg_seq, |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 163 | CRYPTO_MSG_GETALG, sizeof(*ualg), info->nlmsg_flags); |
| 164 | if (!nlh) { |
| 165 | err = -EMSGSIZE; |
| 166 | goto out; |
| 167 | } |
| 168 | |
| 169 | ualg = nlmsg_data(nlh); |
| 170 | |
| 171 | err = crypto_report_one(alg, ualg, skb); |
| 172 | if (err) { |
| 173 | nlmsg_cancel(skb, nlh); |
| 174 | goto out; |
| 175 | } |
| 176 | |
| 177 | nlmsg_end(skb, nlh); |
| 178 | |
| 179 | out: |
| 180 | return err; |
| 181 | } |
| 182 | |
| 183 | static int crypto_report(struct sk_buff *in_skb, struct nlmsghdr *in_nlh, |
| 184 | struct nlattr **attrs) |
| 185 | { |
| 186 | struct crypto_user_alg *p = nlmsg_data(in_nlh); |
| 187 | struct crypto_alg *alg; |
| 188 | struct sk_buff *skb; |
| 189 | struct crypto_dump_info info; |
| 190 | int err; |
| 191 | |
Mathias Krause | 8fd61d3 | 2013-02-05 18:19:15 +0100 | [diff] [blame] | 192 | if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name)) |
| 193 | return -EINVAL; |
| 194 | |
Herbert Xu | 5d4a5e7 | 2014-11-20 12:44:32 +0800 | [diff] [blame] | 195 | alg = crypto_alg_match(p, 0); |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 196 | if (!alg) |
| 197 | return -ENOENT; |
| 198 | |
Herbert Xu | 016baaa | 2015-04-07 21:27:01 +0800 | [diff] [blame] | 199 | err = -ENOMEM; |
Jia-Ju Bai | 9a69b7a | 2018-01-25 18:06:02 +0800 | [diff] [blame] | 200 | skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 201 | if (!skb) |
Herbert Xu | 016baaa | 2015-04-07 21:27:01 +0800 | [diff] [blame] | 202 | goto drop_alg; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 203 | |
| 204 | info.in_skb = in_skb; |
| 205 | info.out_skb = skb; |
| 206 | info.nlmsg_seq = in_nlh->nlmsg_seq; |
| 207 | info.nlmsg_flags = 0; |
| 208 | |
| 209 | err = crypto_report_alg(alg, &info); |
Herbert Xu | 016baaa | 2015-04-07 21:27:01 +0800 | [diff] [blame] | 210 | |
| 211 | drop_alg: |
| 212 | crypto_mod_put(alg); |
| 213 | |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 214 | if (err) |
| 215 | return err; |
| 216 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 217 | return nlmsg_unicast(crypto_nlsk, skb, NETLINK_CB(in_skb).portid); |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | static int crypto_dump_report(struct sk_buff *skb, struct netlink_callback *cb) |
| 221 | { |
Eric Biggers | 0ac6b8f | 2018-12-06 15:55:41 -0800 | [diff] [blame] | 222 | const size_t start_pos = cb->args[0]; |
| 223 | size_t pos = 0; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 224 | struct crypto_dump_info info; |
Eric Biggers | 0ac6b8f | 2018-12-06 15:55:41 -0800 | [diff] [blame] | 225 | struct crypto_alg *alg; |
| 226 | int res; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 227 | |
| 228 | info.in_skb = cb->skb; |
| 229 | info.out_skb = skb; |
| 230 | info.nlmsg_seq = cb->nlh->nlmsg_seq; |
| 231 | info.nlmsg_flags = NLM_F_MULTI; |
| 232 | |
Eric Biggers | 0ac6b8f | 2018-12-06 15:55:41 -0800 | [diff] [blame] | 233 | down_read(&crypto_alg_sem); |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 234 | list_for_each_entry(alg, &crypto_alg_list, cra_list) { |
Eric Biggers | 0ac6b8f | 2018-12-06 15:55:41 -0800 | [diff] [blame] | 235 | if (pos >= start_pos) { |
| 236 | res = crypto_report_alg(alg, &info); |
| 237 | if (res == -EMSGSIZE) |
| 238 | break; |
| 239 | if (res) |
| 240 | goto out; |
| 241 | } |
| 242 | pos++; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 243 | } |
Eric Biggers | 0ac6b8f | 2018-12-06 15:55:41 -0800 | [diff] [blame] | 244 | cb->args[0] = pos; |
| 245 | res = skb->len; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 246 | out: |
Eric Biggers | 0ac6b8f | 2018-12-06 15:55:41 -0800 | [diff] [blame] | 247 | up_read(&crypto_alg_sem); |
| 248 | return res; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | static int crypto_dump_report_done(struct netlink_callback *cb) |
| 252 | { |
| 253 | return 0; |
| 254 | } |
| 255 | |
| 256 | static int crypto_update_alg(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 257 | struct nlattr **attrs) |
| 258 | { |
| 259 | struct crypto_alg *alg; |
| 260 | struct crypto_user_alg *p = nlmsg_data(nlh); |
| 261 | struct nlattr *priority = attrs[CRYPTOCFGA_PRIORITY_VAL]; |
| 262 | LIST_HEAD(list); |
| 263 | |
Linus Torvalds | 639b4ac | 2014-06-07 19:44:40 -0700 | [diff] [blame] | 264 | if (!netlink_capable(skb, CAP_NET_ADMIN)) |
Matthias-Christian Ott | c568398 | 2014-05-08 21:58:12 +0800 | [diff] [blame] | 265 | return -EPERM; |
| 266 | |
Mathias Krause | 8fd61d3 | 2013-02-05 18:19:15 +0100 | [diff] [blame] | 267 | if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name)) |
| 268 | return -EINVAL; |
| 269 | |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 270 | if (priority && !strlen(p->cru_driver_name)) |
| 271 | return -EINVAL; |
| 272 | |
| 273 | alg = crypto_alg_match(p, 1); |
| 274 | if (!alg) |
| 275 | return -ENOENT; |
| 276 | |
| 277 | down_write(&crypto_alg_sem); |
| 278 | |
| 279 | crypto_remove_spawns(alg, &list, NULL); |
| 280 | |
| 281 | if (priority) |
| 282 | alg->cra_priority = nla_get_u32(priority); |
| 283 | |
| 284 | up_write(&crypto_alg_sem); |
| 285 | |
Herbert Xu | 016baaa | 2015-04-07 21:27:01 +0800 | [diff] [blame] | 286 | crypto_mod_put(alg); |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 287 | crypto_remove_final(&list); |
| 288 | |
| 289 | return 0; |
| 290 | } |
| 291 | |
| 292 | static int crypto_del_alg(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 293 | struct nlattr **attrs) |
| 294 | { |
| 295 | struct crypto_alg *alg; |
| 296 | struct crypto_user_alg *p = nlmsg_data(nlh); |
Herbert Xu | 016baaa | 2015-04-07 21:27:01 +0800 | [diff] [blame] | 297 | int err; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 298 | |
Linus Torvalds | 639b4ac | 2014-06-07 19:44:40 -0700 | [diff] [blame] | 299 | if (!netlink_capable(skb, CAP_NET_ADMIN)) |
Matthias-Christian Ott | c568398 | 2014-05-08 21:58:12 +0800 | [diff] [blame] | 300 | return -EPERM; |
| 301 | |
Mathias Krause | 8fd61d3 | 2013-02-05 18:19:15 +0100 | [diff] [blame] | 302 | if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name)) |
| 303 | return -EINVAL; |
| 304 | |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 305 | alg = crypto_alg_match(p, 1); |
| 306 | if (!alg) |
| 307 | return -ENOENT; |
| 308 | |
| 309 | /* We can not unregister core algorithms such as aes-generic. |
| 310 | * We would loose the reference in the crypto_alg_list to this algorithm |
| 311 | * if we try to unregister. Unregistering such an algorithm without |
| 312 | * removing the module is not possible, so we restrict to crypto |
| 313 | * instances that are build from templates. */ |
Herbert Xu | 016baaa | 2015-04-07 21:27:01 +0800 | [diff] [blame] | 314 | err = -EINVAL; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 315 | if (!(alg->cra_flags & CRYPTO_ALG_INSTANCE)) |
Herbert Xu | 016baaa | 2015-04-07 21:27:01 +0800 | [diff] [blame] | 316 | goto drop_alg; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 317 | |
Herbert Xu | 016baaa | 2015-04-07 21:27:01 +0800 | [diff] [blame] | 318 | err = -EBUSY; |
Eric Biggers | ce8614a | 2017-12-29 10:00:46 -0600 | [diff] [blame] | 319 | if (refcount_read(&alg->cra_refcnt) > 2) |
Herbert Xu | 016baaa | 2015-04-07 21:27:01 +0800 | [diff] [blame] | 320 | goto drop_alg; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 321 | |
Herbert Xu | 016baaa | 2015-04-07 21:27:01 +0800 | [diff] [blame] | 322 | err = crypto_unregister_instance((struct crypto_instance *)alg); |
| 323 | |
| 324 | drop_alg: |
| 325 | crypto_mod_put(alg); |
| 326 | return err; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | static int crypto_add_alg(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 330 | struct nlattr **attrs) |
| 331 | { |
Jesper Juhl | 0cfdec7a | 2012-01-29 23:39:22 +0100 | [diff] [blame] | 332 | int exact = 0; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 333 | const char *name; |
| 334 | struct crypto_alg *alg; |
| 335 | struct crypto_user_alg *p = nlmsg_data(nlh); |
| 336 | struct nlattr *priority = attrs[CRYPTOCFGA_PRIORITY_VAL]; |
| 337 | |
Linus Torvalds | 639b4ac | 2014-06-07 19:44:40 -0700 | [diff] [blame] | 338 | if (!netlink_capable(skb, CAP_NET_ADMIN)) |
Matthias-Christian Ott | c568398 | 2014-05-08 21:58:12 +0800 | [diff] [blame] | 339 | return -EPERM; |
| 340 | |
Mathias Krause | 8fd61d3 | 2013-02-05 18:19:15 +0100 | [diff] [blame] | 341 | if (!null_terminated(p->cru_name) || !null_terminated(p->cru_driver_name)) |
| 342 | return -EINVAL; |
| 343 | |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 344 | if (strlen(p->cru_driver_name)) |
| 345 | exact = 1; |
| 346 | |
| 347 | if (priority && !exact) |
| 348 | return -EINVAL; |
| 349 | |
| 350 | alg = crypto_alg_match(p, exact); |
Herbert Xu | 016baaa | 2015-04-07 21:27:01 +0800 | [diff] [blame] | 351 | if (alg) { |
| 352 | crypto_mod_put(alg); |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 353 | return -EEXIST; |
Herbert Xu | 016baaa | 2015-04-07 21:27:01 +0800 | [diff] [blame] | 354 | } |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 355 | |
| 356 | if (strlen(p->cru_driver_name)) |
| 357 | name = p->cru_driver_name; |
| 358 | else |
| 359 | name = p->cru_name; |
| 360 | |
Herbert Xu | 6cf80a2 | 2016-07-12 13:17:49 +0800 | [diff] [blame] | 361 | alg = crypto_alg_mod_lookup(name, p->cru_type, p->cru_mask); |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 362 | if (IS_ERR(alg)) |
| 363 | return PTR_ERR(alg); |
| 364 | |
| 365 | down_write(&crypto_alg_sem); |
| 366 | |
| 367 | if (priority) |
| 368 | alg->cra_priority = nla_get_u32(priority); |
| 369 | |
| 370 | up_write(&crypto_alg_sem); |
| 371 | |
| 372 | crypto_mod_put(alg); |
| 373 | |
| 374 | return 0; |
| 375 | } |
| 376 | |
Herbert Xu | 9aa867e | 2015-06-21 19:11:45 +0800 | [diff] [blame] | 377 | static int crypto_del_rng(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 378 | struct nlattr **attrs) |
| 379 | { |
| 380 | if (!netlink_capable(skb, CAP_NET_ADMIN)) |
| 381 | return -EPERM; |
| 382 | return crypto_del_default_rng(); |
| 383 | } |
| 384 | |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 385 | #define MSGSIZE(type) sizeof(struct type) |
| 386 | |
| 387 | static const int crypto_msg_min[CRYPTO_NR_MSGTYPES] = { |
| 388 | [CRYPTO_MSG_NEWALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg), |
| 389 | [CRYPTO_MSG_DELALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg), |
| 390 | [CRYPTO_MSG_UPDATEALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg), |
Mathias Krause | 055ddaa | 2016-06-22 20:29:37 +0200 | [diff] [blame] | 391 | [CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg), |
Herbert Xu | 9aa867e | 2015-06-21 19:11:45 +0800 | [diff] [blame] | 392 | [CRYPTO_MSG_DELRNG - CRYPTO_MSG_BASE] = 0, |
Corentin Labbe | cac5818 | 2018-09-19 10:10:54 +0000 | [diff] [blame] | 393 | [CRYPTO_MSG_GETSTAT - CRYPTO_MSG_BASE] = MSGSIZE(crypto_user_alg), |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 394 | }; |
| 395 | |
| 396 | static const struct nla_policy crypto_policy[CRYPTOCFGA_MAX+1] = { |
| 397 | [CRYPTOCFGA_PRIORITY_VAL] = { .type = NLA_U32}, |
| 398 | }; |
| 399 | |
| 400 | #undef MSGSIZE |
| 401 | |
Mathias Krause | a84fb79 | 2013-02-24 14:09:12 +0100 | [diff] [blame] | 402 | static const struct crypto_link { |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 403 | int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **); |
| 404 | int (*dump)(struct sk_buff *, struct netlink_callback *); |
| 405 | int (*done)(struct netlink_callback *); |
| 406 | } crypto_dispatch[CRYPTO_NR_MSGTYPES] = { |
| 407 | [CRYPTO_MSG_NEWALG - CRYPTO_MSG_BASE] = { .doit = crypto_add_alg}, |
| 408 | [CRYPTO_MSG_DELALG - CRYPTO_MSG_BASE] = { .doit = crypto_del_alg}, |
| 409 | [CRYPTO_MSG_UPDATEALG - CRYPTO_MSG_BASE] = { .doit = crypto_update_alg}, |
| 410 | [CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE] = { .doit = crypto_report, |
| 411 | .dump = crypto_dump_report, |
| 412 | .done = crypto_dump_report_done}, |
Herbert Xu | 9aa867e | 2015-06-21 19:11:45 +0800 | [diff] [blame] | 413 | [CRYPTO_MSG_DELRNG - CRYPTO_MSG_BASE] = { .doit = crypto_del_rng }, |
Corentin Labbe | 0c99c2a | 2018-12-13 08:36:37 +0000 | [diff] [blame] | 414 | [CRYPTO_MSG_GETSTAT - CRYPTO_MSG_BASE] = { .doit = crypto_reportstat}, |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 415 | }; |
| 416 | |
Johannes Berg | 2d4bc93 | 2017-04-12 14:34:04 +0200 | [diff] [blame] | 417 | static int crypto_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 418 | struct netlink_ext_ack *extack) |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 419 | { |
| 420 | struct nlattr *attrs[CRYPTOCFGA_MAX+1]; |
Mathias Krause | a84fb79 | 2013-02-24 14:09:12 +0100 | [diff] [blame] | 421 | const struct crypto_link *link; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 422 | int type, err; |
| 423 | |
| 424 | type = nlh->nlmsg_type; |
| 425 | if (type > CRYPTO_MSG_MAX) |
| 426 | return -EINVAL; |
| 427 | |
| 428 | type -= CRYPTO_MSG_BASE; |
| 429 | link = &crypto_dispatch[type]; |
| 430 | |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 431 | if ((type == (CRYPTO_MSG_GETALG - CRYPTO_MSG_BASE) && |
| 432 | (nlh->nlmsg_flags & NLM_F_DUMP))) { |
Steffen Klassert | 5219a53 | 2012-03-29 09:04:46 +0200 | [diff] [blame] | 433 | struct crypto_alg *alg; |
Eric Biggers | 0ac6b8f | 2018-12-06 15:55:41 -0800 | [diff] [blame] | 434 | unsigned long dump_alloc = 0; |
Steffen Klassert | 5219a53 | 2012-03-29 09:04:46 +0200 | [diff] [blame] | 435 | |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 436 | if (link->dump == NULL) |
| 437 | return -EINVAL; |
Steffen Klassert | 5219a53 | 2012-03-29 09:04:46 +0200 | [diff] [blame] | 438 | |
Mathias Krause | 63e41eb | 2016-02-01 14:27:30 +0100 | [diff] [blame] | 439 | down_read(&crypto_alg_sem); |
Steffen Klassert | 5219a53 | 2012-03-29 09:04:46 +0200 | [diff] [blame] | 440 | list_for_each_entry(alg, &crypto_alg_list, cra_list) |
| 441 | dump_alloc += CRYPTO_REPORT_MAXSIZE; |
Eric Biggers | 0ac6b8f | 2018-12-06 15:55:41 -0800 | [diff] [blame] | 442 | up_read(&crypto_alg_sem); |
Steffen Klassert | 5219a53 | 2012-03-29 09:04:46 +0200 | [diff] [blame] | 443 | |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 444 | { |
| 445 | struct netlink_dump_control c = { |
| 446 | .dump = link->dump, |
| 447 | .done = link->done, |
Eric Biggers | 0ac6b8f | 2018-12-06 15:55:41 -0800 | [diff] [blame] | 448 | .min_dump_alloc = min(dump_alloc, 65535UL), |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 449 | }; |
Mathias Krause | 63e41eb | 2016-02-01 14:27:30 +0100 | [diff] [blame] | 450 | err = netlink_dump_start(crypto_nlsk, skb, nlh, &c); |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 451 | } |
Mathias Krause | 63e41eb | 2016-02-01 14:27:30 +0100 | [diff] [blame] | 452 | |
| 453 | return err; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 454 | } |
| 455 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 456 | err = nlmsg_parse_deprecated(nlh, crypto_msg_min[type], attrs, |
| 457 | CRYPTOCFGA_MAX, crypto_policy, extack); |
Herbert Xu | fd2efd9 | 2016-06-23 18:06:02 +0800 | [diff] [blame] | 458 | if (err < 0) |
| 459 | return err; |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 460 | |
| 461 | if (link->doit == NULL) |
| 462 | return -EINVAL; |
| 463 | |
| 464 | return link->doit(skb, nlh, attrs); |
| 465 | } |
| 466 | |
| 467 | static void crypto_netlink_rcv(struct sk_buff *skb) |
| 468 | { |
| 469 | mutex_lock(&crypto_cfg_mutex); |
| 470 | netlink_rcv_skb(skb, &crypto_user_rcv_msg); |
| 471 | mutex_unlock(&crypto_cfg_mutex); |
| 472 | } |
| 473 | |
| 474 | static int __init crypto_user_init(void) |
| 475 | { |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 476 | struct netlink_kernel_cfg cfg = { |
| 477 | .input = crypto_netlink_rcv, |
| 478 | }; |
| 479 | |
Pablo Neira Ayuso | 9f00d97 | 2012-09-08 02:53:54 +0000 | [diff] [blame] | 480 | crypto_nlsk = netlink_kernel_create(&init_net, NETLINK_CRYPTO, &cfg); |
Steffen Klassert | a38f790 | 2011-09-27 07:23:50 +0200 | [diff] [blame] | 481 | if (!crypto_nlsk) |
| 482 | return -ENOMEM; |
| 483 | |
| 484 | return 0; |
| 485 | } |
| 486 | |
| 487 | static void __exit crypto_user_exit(void) |
| 488 | { |
| 489 | netlink_kernel_release(crypto_nlsk); |
| 490 | } |
| 491 | |
| 492 | module_init(crypto_user_init); |
| 493 | module_exit(crypto_user_exit); |
| 494 | MODULE_LICENSE("GPL"); |
| 495 | MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>"); |
| 496 | MODULE_DESCRIPTION("Crypto userspace configuration API"); |
Stephan Mueller | 476c7fe | 2014-11-24 17:12:45 +0100 | [diff] [blame] | 497 | MODULE_ALIAS("net-pf-16-proto-21"); |