1 // SPDX-License-Identifier: GPL-2.0-only << 2 /* 1 /* 3 * pcrypt - Parallel crypto wrapper. 2 * pcrypt - Parallel crypto wrapper. 4 * 3 * 5 * Copyright (C) 2009 secunet Security Network 4 * Copyright (C) 2009 secunet Security Networks AG 6 * Copyright (C) 2009 Steffen Klassert <steffe 5 * Copyright (C) 2009 Steffen Klassert <steffen.klassert@secunet.com> >> 6 * >> 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. >> 10 * >> 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 >> 14 * more details. >> 15 * >> 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. 7 */ 19 */ 8 20 9 #include <crypto/algapi.h> 21 #include <crypto/algapi.h> 10 #include <crypto/internal/aead.h> 22 #include <crypto/internal/aead.h> 11 #include <linux/atomic.h> 23 #include <linux/atomic.h> 12 #include <linux/err.h> 24 #include <linux/err.h> 13 #include <linux/init.h> 25 #include <linux/init.h> 14 #include <linux/module.h> 26 #include <linux/module.h> 15 #include <linux/slab.h> 27 #include <linux/slab.h> >> 28 #include <linux/notifier.h> 16 #include <linux/kobject.h> 29 #include <linux/kobject.h> 17 #include <linux/cpu.h> 30 #include <linux/cpu.h> 18 #include <crypto/pcrypt.h> 31 #include <crypto/pcrypt.h> 19 32 20 static struct padata_instance *pencrypt; !! 33 struct padata_pcrypt { 21 static struct padata_instance *pdecrypt; !! 34 struct padata_instance *pinst; >> 35 struct workqueue_struct *wq; >> 36 >> 37 /* >> 38 * Cpumask for callback CPUs. It should be >> 39 * equal to serial cpumask of corresponding padata instance, >> 40 * so it is updated when padata notifies us about serial >> 41 * cpumask change. >> 42 * >> 43 * cb_cpumask is protected by RCU. This fact prevents us from >> 44 * using cpumask_var_t directly because the actual type of >> 45 * cpumsak_var_t depends on kernel configuration(particularly on >> 46 * CONFIG_CPUMASK_OFFSTACK macro). Depending on the configuration >> 47 * cpumask_var_t may be either a pointer to the struct cpumask >> 48 * or a variable allocated on the stack. Thus we can not safely use >> 49 * cpumask_var_t with RCU operations such as rcu_assign_pointer or >> 50 * rcu_dereference. So cpumask_var_t is wrapped with struct >> 51 * pcrypt_cpumask which makes possible to use it with RCU. >> 52 */ >> 53 struct pcrypt_cpumask { >> 54 cpumask_var_t mask; >> 55 } *cb_cpumask; >> 56 struct notifier_block nblock; >> 57 }; >> 58 >> 59 static struct padata_pcrypt pencrypt; >> 60 static struct padata_pcrypt pdecrypt; 22 static struct kset *pcrypt_kset; 61 static struct kset *pcrypt_kset; 23 62 24 struct pcrypt_instance_ctx { 63 struct pcrypt_instance_ctx { 25 struct crypto_aead_spawn spawn; 64 struct crypto_aead_spawn spawn; 26 struct padata_shell *psenc; << 27 struct padata_shell *psdec; << 28 atomic_t tfm_count; 65 atomic_t tfm_count; 29 }; 66 }; 30 67 31 struct pcrypt_aead_ctx { 68 struct pcrypt_aead_ctx { 32 struct crypto_aead *child; 69 struct crypto_aead *child; 33 unsigned int cb_cpu; 70 unsigned int cb_cpu; 34 }; 71 }; 35 72 36 static inline struct pcrypt_instance_ctx *pcry !! 73 static int pcrypt_do_parallel(struct padata_priv *padata, unsigned int *cb_cpu, 37 struct crypto_aead *tfm) !! 74 struct padata_pcrypt *pcrypt) 38 { 75 { 39 return aead_instance_ctx(aead_alg_inst !! 76 unsigned int cpu_index, cpu, i; >> 77 struct pcrypt_cpumask *cpumask; >> 78 >> 79 cpu = *cb_cpu; >> 80 >> 81 rcu_read_lock_bh(); >> 82 cpumask = rcu_dereference_bh(pcrypt->cb_cpumask); >> 83 if (cpumask_test_cpu(cpu, cpumask->mask)) >> 84 goto out; >> 85 >> 86 if (!cpumask_weight(cpumask->mask)) >> 87 goto out; >> 88 >> 89 cpu_index = cpu % cpumask_weight(cpumask->mask); >> 90 >> 91 cpu = cpumask_first(cpumask->mask); >> 92 for (i = 0; i < cpu_index; i++) >> 93 cpu = cpumask_next(cpu, cpumask->mask); >> 94 >> 95 *cb_cpu = cpu; >> 96 >> 97 out: >> 98 rcu_read_unlock_bh(); >> 99 return padata_do_parallel(pcrypt->pinst, padata, cpu); 40 } 100 } 41 101 42 static int pcrypt_aead_setkey(struct crypto_ae 102 static int pcrypt_aead_setkey(struct crypto_aead *parent, 43 const u8 *key, u 103 const u8 *key, unsigned int keylen) 44 { 104 { 45 struct pcrypt_aead_ctx *ctx = crypto_a 105 struct pcrypt_aead_ctx *ctx = crypto_aead_ctx(parent); 46 106 47 return crypto_aead_setkey(ctx->child, 107 return crypto_aead_setkey(ctx->child, key, keylen); 48 } 108 } 49 109 50 static int pcrypt_aead_setauthsize(struct cryp 110 static int pcrypt_aead_setauthsize(struct crypto_aead *parent, 51 unsigned in 111 unsigned int authsize) 52 { 112 { 53 struct pcrypt_aead_ctx *ctx = crypto_a 113 struct pcrypt_aead_ctx *ctx = crypto_aead_ctx(parent); 54 114 55 return crypto_aead_setauthsize(ctx->ch 115 return crypto_aead_setauthsize(ctx->child, authsize); 56 } 116 } 57 117 58 static void pcrypt_aead_serial(struct padata_p 118 static void pcrypt_aead_serial(struct padata_priv *padata) 59 { 119 { 60 struct pcrypt_request *preq = pcrypt_p 120 struct pcrypt_request *preq = pcrypt_padata_request(padata); 61 struct aead_request *req = pcrypt_requ 121 struct aead_request *req = pcrypt_request_ctx(preq); 62 122 63 aead_request_complete(req->base.data, 123 aead_request_complete(req->base.data, padata->info); 64 } 124 } 65 125 66 static void pcrypt_aead_done(void *data, int e !! 126 static void pcrypt_aead_done(struct crypto_async_request *areq, int err) 67 { 127 { 68 struct aead_request *req = data; !! 128 struct aead_request *req = areq->data; 69 struct pcrypt_request *preq = aead_req 129 struct pcrypt_request *preq = aead_request_ctx(req); 70 struct padata_priv *padata = pcrypt_re 130 struct padata_priv *padata = pcrypt_request_padata(preq); 71 131 72 padata->info = err; 132 padata->info = err; >> 133 req->base.flags &= ~CRYPTO_TFM_REQ_MAY_SLEEP; 73 134 74 padata_do_serial(padata); 135 padata_do_serial(padata); 75 } 136 } 76 137 77 static void pcrypt_aead_enc(struct padata_priv 138 static void pcrypt_aead_enc(struct padata_priv *padata) 78 { 139 { 79 struct pcrypt_request *preq = pcrypt_p 140 struct pcrypt_request *preq = pcrypt_padata_request(padata); 80 struct aead_request *req = pcrypt_requ 141 struct aead_request *req = pcrypt_request_ctx(preq); 81 int ret; << 82 142 83 ret = crypto_aead_encrypt(req); !! 143 padata->info = crypto_aead_encrypt(req); 84 144 85 if (ret == -EINPROGRESS) !! 145 if (padata->info == -EINPROGRESS) 86 return; 146 return; 87 147 88 padata->info = ret; << 89 padata_do_serial(padata); 148 padata_do_serial(padata); 90 } 149 } 91 150 92 static int pcrypt_aead_encrypt(struct aead_req 151 static int pcrypt_aead_encrypt(struct aead_request *req) 93 { 152 { 94 int err; 153 int err; 95 struct pcrypt_request *preq = aead_req 154 struct pcrypt_request *preq = aead_request_ctx(req); 96 struct aead_request *creq = pcrypt_req 155 struct aead_request *creq = pcrypt_request_ctx(preq); 97 struct padata_priv *padata = pcrypt_re 156 struct padata_priv *padata = pcrypt_request_padata(preq); 98 struct crypto_aead *aead = crypto_aead 157 struct crypto_aead *aead = crypto_aead_reqtfm(req); 99 struct pcrypt_aead_ctx *ctx = crypto_a 158 struct pcrypt_aead_ctx *ctx = crypto_aead_ctx(aead); 100 u32 flags = aead_request_flags(req); 159 u32 flags = aead_request_flags(req); 101 struct pcrypt_instance_ctx *ictx; << 102 << 103 ictx = pcrypt_tfm_ictx(aead); << 104 160 105 memset(padata, 0, sizeof(struct padata 161 memset(padata, 0, sizeof(struct padata_priv)); 106 162 107 padata->parallel = pcrypt_aead_enc; 163 padata->parallel = pcrypt_aead_enc; 108 padata->serial = pcrypt_aead_serial; 164 padata->serial = pcrypt_aead_serial; 109 165 110 aead_request_set_tfm(creq, ctx->child) 166 aead_request_set_tfm(creq, ctx->child); 111 aead_request_set_callback(creq, flags 167 aead_request_set_callback(creq, flags & ~CRYPTO_TFM_REQ_MAY_SLEEP, 112 pcrypt_aead_ 168 pcrypt_aead_done, req); 113 aead_request_set_crypt(creq, req->src, 169 aead_request_set_crypt(creq, req->src, req->dst, 114 req->cryptlen, 170 req->cryptlen, req->iv); 115 aead_request_set_ad(creq, req->assocle 171 aead_request_set_ad(creq, req->assoclen); 116 172 117 err = padata_do_parallel(ictx->psenc, !! 173 err = pcrypt_do_parallel(padata, &ctx->cb_cpu, &pencrypt); 118 if (!err) 174 if (!err) 119 return -EINPROGRESS; 175 return -EINPROGRESS; 120 if (err == -EBUSY) << 121 return -EAGAIN; << 122 176 123 return err; 177 return err; 124 } 178 } 125 179 126 static void pcrypt_aead_dec(struct padata_priv 180 static void pcrypt_aead_dec(struct padata_priv *padata) 127 { 181 { 128 struct pcrypt_request *preq = pcrypt_p 182 struct pcrypt_request *preq = pcrypt_padata_request(padata); 129 struct aead_request *req = pcrypt_requ 183 struct aead_request *req = pcrypt_request_ctx(preq); 130 int ret; << 131 184 132 ret = crypto_aead_decrypt(req); !! 185 padata->info = crypto_aead_decrypt(req); 133 186 134 if (ret == -EINPROGRESS) !! 187 if (padata->info == -EINPROGRESS) 135 return; 188 return; 136 189 137 padata->info = ret; << 138 padata_do_serial(padata); 190 padata_do_serial(padata); 139 } 191 } 140 192 141 static int pcrypt_aead_decrypt(struct aead_req 193 static int pcrypt_aead_decrypt(struct aead_request *req) 142 { 194 { 143 int err; 195 int err; 144 struct pcrypt_request *preq = aead_req 196 struct pcrypt_request *preq = aead_request_ctx(req); 145 struct aead_request *creq = pcrypt_req 197 struct aead_request *creq = pcrypt_request_ctx(preq); 146 struct padata_priv *padata = pcrypt_re 198 struct padata_priv *padata = pcrypt_request_padata(preq); 147 struct crypto_aead *aead = crypto_aead 199 struct crypto_aead *aead = crypto_aead_reqtfm(req); 148 struct pcrypt_aead_ctx *ctx = crypto_a 200 struct pcrypt_aead_ctx *ctx = crypto_aead_ctx(aead); 149 u32 flags = aead_request_flags(req); 201 u32 flags = aead_request_flags(req); 150 struct pcrypt_instance_ctx *ictx; << 151 << 152 ictx = pcrypt_tfm_ictx(aead); << 153 202 154 memset(padata, 0, sizeof(struct padata 203 memset(padata, 0, sizeof(struct padata_priv)); 155 204 156 padata->parallel = pcrypt_aead_dec; 205 padata->parallel = pcrypt_aead_dec; 157 padata->serial = pcrypt_aead_serial; 206 padata->serial = pcrypt_aead_serial; 158 207 159 aead_request_set_tfm(creq, ctx->child) 208 aead_request_set_tfm(creq, ctx->child); 160 aead_request_set_callback(creq, flags 209 aead_request_set_callback(creq, flags & ~CRYPTO_TFM_REQ_MAY_SLEEP, 161 pcrypt_aead_ 210 pcrypt_aead_done, req); 162 aead_request_set_crypt(creq, req->src, 211 aead_request_set_crypt(creq, req->src, req->dst, 163 req->cryptlen, 212 req->cryptlen, req->iv); 164 aead_request_set_ad(creq, req->assocle 213 aead_request_set_ad(creq, req->assoclen); 165 214 166 err = padata_do_parallel(ictx->psdec, !! 215 err = pcrypt_do_parallel(padata, &ctx->cb_cpu, &pdecrypt); 167 if (!err) 216 if (!err) 168 return -EINPROGRESS; 217 return -EINPROGRESS; 169 if (err == -EBUSY) << 170 return -EAGAIN; << 171 218 172 return err; 219 return err; 173 } 220 } 174 221 175 static int pcrypt_aead_init_tfm(struct crypto_ 222 static int pcrypt_aead_init_tfm(struct crypto_aead *tfm) 176 { 223 { 177 int cpu, cpu_index; 224 int cpu, cpu_index; 178 struct aead_instance *inst = aead_alg_ 225 struct aead_instance *inst = aead_alg_instance(tfm); 179 struct pcrypt_instance_ctx *ictx = aea 226 struct pcrypt_instance_ctx *ictx = aead_instance_ctx(inst); 180 struct pcrypt_aead_ctx *ctx = crypto_a 227 struct pcrypt_aead_ctx *ctx = crypto_aead_ctx(tfm); 181 struct crypto_aead *cipher; 228 struct crypto_aead *cipher; 182 229 183 cpu_index = (unsigned int)atomic_inc_r 230 cpu_index = (unsigned int)atomic_inc_return(&ictx->tfm_count) % 184 cpumask_weight(cpu_online_ 231 cpumask_weight(cpu_online_mask); 185 232 186 ctx->cb_cpu = cpumask_first(cpu_online 233 ctx->cb_cpu = cpumask_first(cpu_online_mask); 187 for (cpu = 0; cpu < cpu_index; cpu++) 234 for (cpu = 0; cpu < cpu_index; cpu++) 188 ctx->cb_cpu = cpumask_next(ctx 235 ctx->cb_cpu = cpumask_next(ctx->cb_cpu, cpu_online_mask); 189 236 190 cipher = crypto_spawn_aead(&ictx->spaw 237 cipher = crypto_spawn_aead(&ictx->spawn); 191 238 192 if (IS_ERR(cipher)) 239 if (IS_ERR(cipher)) 193 return PTR_ERR(cipher); 240 return PTR_ERR(cipher); 194 241 195 ctx->child = cipher; 242 ctx->child = cipher; 196 crypto_aead_set_reqsize(tfm, sizeof(st 243 crypto_aead_set_reqsize(tfm, sizeof(struct pcrypt_request) + 197 sizeof(st 244 sizeof(struct aead_request) + 198 crypto_ae 245 crypto_aead_reqsize(cipher)); 199 246 200 return 0; 247 return 0; 201 } 248 } 202 249 203 static void pcrypt_aead_exit_tfm(struct crypto 250 static void pcrypt_aead_exit_tfm(struct crypto_aead *tfm) 204 { 251 { 205 struct pcrypt_aead_ctx *ctx = crypto_a 252 struct pcrypt_aead_ctx *ctx = crypto_aead_ctx(tfm); 206 253 207 crypto_free_aead(ctx->child); 254 crypto_free_aead(ctx->child); 208 } 255 } 209 256 210 static void pcrypt_free(struct aead_instance * 257 static void pcrypt_free(struct aead_instance *inst) 211 { 258 { 212 struct pcrypt_instance_ctx *ctx = aead 259 struct pcrypt_instance_ctx *ctx = aead_instance_ctx(inst); 213 260 214 crypto_drop_aead(&ctx->spawn); 261 crypto_drop_aead(&ctx->spawn); 215 padata_free_shell(ctx->psdec); << 216 padata_free_shell(ctx->psenc); << 217 kfree(inst); 262 kfree(inst); 218 } 263 } 219 264 220 static int pcrypt_init_instance(struct crypto_ 265 static int pcrypt_init_instance(struct crypto_instance *inst, 221 struct crypto_ 266 struct crypto_alg *alg) 222 { 267 { 223 if (snprintf(inst->alg.cra_driver_name 268 if (snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME, 224 "pcrypt(%s)", alg->cra_dr 269 "pcrypt(%s)", alg->cra_driver_name) >= CRYPTO_MAX_ALG_NAME) 225 return -ENAMETOOLONG; 270 return -ENAMETOOLONG; 226 271 227 memcpy(inst->alg.cra_name, alg->cra_na 272 memcpy(inst->alg.cra_name, alg->cra_name, CRYPTO_MAX_ALG_NAME); 228 273 229 inst->alg.cra_priority = alg->cra_prio 274 inst->alg.cra_priority = alg->cra_priority + 100; 230 inst->alg.cra_blocksize = alg->cra_blo 275 inst->alg.cra_blocksize = alg->cra_blocksize; 231 inst->alg.cra_alignmask = alg->cra_ali 276 inst->alg.cra_alignmask = alg->cra_alignmask; 232 277 233 return 0; 278 return 0; 234 } 279 } 235 280 236 static int pcrypt_create_aead(struct crypto_te 281 static int pcrypt_create_aead(struct crypto_template *tmpl, struct rtattr **tb, 237 struct crypto_at !! 282 u32 type, u32 mask) 238 { 283 { 239 struct pcrypt_instance_ctx *ctx; 284 struct pcrypt_instance_ctx *ctx; >> 285 struct crypto_attr_type *algt; 240 struct aead_instance *inst; 286 struct aead_instance *inst; 241 struct aead_alg *alg; 287 struct aead_alg *alg; 242 u32 mask = crypto_algt_inherited_mask( !! 288 const char *name; 243 int err; 289 int err; 244 290 >> 291 algt = crypto_get_attr_type(tb); >> 292 if (IS_ERR(algt)) >> 293 return PTR_ERR(algt); >> 294 >> 295 name = crypto_attr_alg_name(tb[1]); >> 296 if (IS_ERR(name)) >> 297 return PTR_ERR(name); >> 298 245 inst = kzalloc(sizeof(*inst) + sizeof( 299 inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL); 246 if (!inst) 300 if (!inst) 247 return -ENOMEM; 301 return -ENOMEM; 248 302 249 err = -ENOMEM; << 250 << 251 ctx = aead_instance_ctx(inst); 303 ctx = aead_instance_ctx(inst); 252 ctx->psenc = padata_alloc_shell(pencry !! 304 crypto_set_aead_spawn(&ctx->spawn, aead_crypto_instance(inst)); 253 if (!ctx->psenc) << 254 goto err_free_inst; << 255 << 256 ctx->psdec = padata_alloc_shell(pdecry << 257 if (!ctx->psdec) << 258 goto err_free_inst; << 259 305 260 err = crypto_grab_aead(&ctx->spawn, ae !! 306 err = crypto_grab_aead(&ctx->spawn, name, 0, 0); 261 crypto_attr_alg << 262 if (err) 307 if (err) 263 goto err_free_inst; !! 308 goto out_free_inst; 264 309 265 alg = crypto_spawn_aead_alg(&ctx->spaw 310 alg = crypto_spawn_aead_alg(&ctx->spawn); 266 err = pcrypt_init_instance(aead_crypto 311 err = pcrypt_init_instance(aead_crypto_instance(inst), &alg->base); 267 if (err) 312 if (err) 268 goto err_free_inst; !! 313 goto out_drop_aead; 269 314 270 inst->alg.base.cra_flags |= CRYPTO_ALG !! 315 inst->alg.base.cra_flags = CRYPTO_ALG_ASYNC; 271 316 272 inst->alg.ivsize = crypto_aead_alg_ivs 317 inst->alg.ivsize = crypto_aead_alg_ivsize(alg); 273 inst->alg.maxauthsize = crypto_aead_al 318 inst->alg.maxauthsize = crypto_aead_alg_maxauthsize(alg); 274 319 275 inst->alg.base.cra_ctxsize = sizeof(st 320 inst->alg.base.cra_ctxsize = sizeof(struct pcrypt_aead_ctx); 276 321 277 inst->alg.init = pcrypt_aead_init_tfm; 322 inst->alg.init = pcrypt_aead_init_tfm; 278 inst->alg.exit = pcrypt_aead_exit_tfm; 323 inst->alg.exit = pcrypt_aead_exit_tfm; 279 324 280 inst->alg.setkey = pcrypt_aead_setkey; 325 inst->alg.setkey = pcrypt_aead_setkey; 281 inst->alg.setauthsize = pcrypt_aead_se 326 inst->alg.setauthsize = pcrypt_aead_setauthsize; 282 inst->alg.encrypt = pcrypt_aead_encryp 327 inst->alg.encrypt = pcrypt_aead_encrypt; 283 inst->alg.decrypt = pcrypt_aead_decryp 328 inst->alg.decrypt = pcrypt_aead_decrypt; 284 329 285 inst->free = pcrypt_free; 330 inst->free = pcrypt_free; 286 331 287 err = aead_register_instance(tmpl, ins 332 err = aead_register_instance(tmpl, inst); 288 if (err) { !! 333 if (err) 289 err_free_inst: !! 334 goto out_drop_aead; 290 pcrypt_free(inst); !! 335 291 } !! 336 out: 292 return err; 337 return err; >> 338 >> 339 out_drop_aead: >> 340 crypto_drop_aead(&ctx->spawn); >> 341 out_free_inst: >> 342 kfree(inst); >> 343 goto out; 293 } 344 } 294 345 295 static int pcrypt_create(struct crypto_templat 346 static int pcrypt_create(struct crypto_template *tmpl, struct rtattr **tb) 296 { 347 { 297 struct crypto_attr_type *algt; 348 struct crypto_attr_type *algt; 298 349 299 algt = crypto_get_attr_type(tb); 350 algt = crypto_get_attr_type(tb); 300 if (IS_ERR(algt)) 351 if (IS_ERR(algt)) 301 return PTR_ERR(algt); 352 return PTR_ERR(algt); 302 353 303 switch (algt->type & algt->mask & CRYP 354 switch (algt->type & algt->mask & CRYPTO_ALG_TYPE_MASK) { 304 case CRYPTO_ALG_TYPE_AEAD: 355 case CRYPTO_ALG_TYPE_AEAD: 305 return pcrypt_create_aead(tmpl !! 356 return pcrypt_create_aead(tmpl, tb, algt->type, algt->mask); 306 } 357 } 307 358 308 return -EINVAL; 359 return -EINVAL; 309 } 360 } 310 361 >> 362 static int pcrypt_cpumask_change_notify(struct notifier_block *self, >> 363 unsigned long val, void *data) >> 364 { >> 365 struct padata_pcrypt *pcrypt; >> 366 struct pcrypt_cpumask *new_mask, *old_mask; >> 367 struct padata_cpumask *cpumask = (struct padata_cpumask *)data; >> 368 >> 369 if (!(val & PADATA_CPU_SERIAL)) >> 370 return 0; >> 371 >> 372 pcrypt = container_of(self, struct padata_pcrypt, nblock); >> 373 new_mask = kmalloc(sizeof(*new_mask), GFP_KERNEL); >> 374 if (!new_mask) >> 375 return -ENOMEM; >> 376 if (!alloc_cpumask_var(&new_mask->mask, GFP_KERNEL)) { >> 377 kfree(new_mask); >> 378 return -ENOMEM; >> 379 } >> 380 >> 381 old_mask = pcrypt->cb_cpumask; >> 382 >> 383 cpumask_copy(new_mask->mask, cpumask->cbcpu); >> 384 rcu_assign_pointer(pcrypt->cb_cpumask, new_mask); >> 385 synchronize_rcu_bh(); >> 386 >> 387 free_cpumask_var(old_mask->mask); >> 388 kfree(old_mask); >> 389 return 0; >> 390 } >> 391 311 static int pcrypt_sysfs_add(struct padata_inst 392 static int pcrypt_sysfs_add(struct padata_instance *pinst, const char *name) 312 { 393 { 313 int ret; 394 int ret; 314 395 315 pinst->kobj.kset = pcrypt_kset; 396 pinst->kobj.kset = pcrypt_kset; 316 ret = kobject_add(&pinst->kobj, NULL, !! 397 ret = kobject_add(&pinst->kobj, NULL, name); 317 if (!ret) 398 if (!ret) 318 kobject_uevent(&pinst->kobj, K 399 kobject_uevent(&pinst->kobj, KOBJ_ADD); 319 400 320 return ret; 401 return ret; 321 } 402 } 322 403 323 static int pcrypt_init_padata(struct padata_in !! 404 static int pcrypt_init_padata(struct padata_pcrypt *pcrypt, >> 405 const char *name) 324 { 406 { 325 int ret = -ENOMEM; 407 int ret = -ENOMEM; >> 408 struct pcrypt_cpumask *mask; >> 409 >> 410 get_online_cpus(); 326 411 327 *pinst = padata_alloc(name); !! 412 pcrypt->wq = alloc_workqueue("%s", WQ_MEM_RECLAIM | WQ_CPU_INTENSIVE, 328 if (!*pinst) !! 413 1, name); 329 return ret; !! 414 if (!pcrypt->wq) >> 415 goto err; 330 416 331 ret = pcrypt_sysfs_add(*pinst, name); !! 417 pcrypt->pinst = padata_alloc_possible(pcrypt->wq); >> 418 if (!pcrypt->pinst) >> 419 goto err_destroy_workqueue; >> 420 >> 421 mask = kmalloc(sizeof(*mask), GFP_KERNEL); >> 422 if (!mask) >> 423 goto err_free_padata; >> 424 if (!alloc_cpumask_var(&mask->mask, GFP_KERNEL)) { >> 425 kfree(mask); >> 426 goto err_free_padata; >> 427 } >> 428 >> 429 cpumask_and(mask->mask, cpu_possible_mask, cpu_online_mask); >> 430 rcu_assign_pointer(pcrypt->cb_cpumask, mask); >> 431 >> 432 pcrypt->nblock.notifier_call = pcrypt_cpumask_change_notify; >> 433 ret = padata_register_cpumask_notifier(pcrypt->pinst, &pcrypt->nblock); 332 if (ret) 434 if (ret) 333 padata_free(*pinst); !! 435 goto err_free_cpumask; >> 436 >> 437 ret = pcrypt_sysfs_add(pcrypt->pinst, name); >> 438 if (ret) >> 439 goto err_unregister_notifier; >> 440 >> 441 put_online_cpus(); 334 442 335 return ret; 443 return ret; >> 444 >> 445 err_unregister_notifier: >> 446 padata_unregister_cpumask_notifier(pcrypt->pinst, &pcrypt->nblock); >> 447 err_free_cpumask: >> 448 free_cpumask_var(mask->mask); >> 449 kfree(mask); >> 450 err_free_padata: >> 451 padata_free(pcrypt->pinst); >> 452 err_destroy_workqueue: >> 453 destroy_workqueue(pcrypt->wq); >> 454 err: >> 455 put_online_cpus(); >> 456 >> 457 return ret; >> 458 } >> 459 >> 460 static void pcrypt_fini_padata(struct padata_pcrypt *pcrypt) >> 461 { >> 462 free_cpumask_var(pcrypt->cb_cpumask->mask); >> 463 kfree(pcrypt->cb_cpumask); >> 464 >> 465 padata_stop(pcrypt->pinst); >> 466 padata_unregister_cpumask_notifier(pcrypt->pinst, &pcrypt->nblock); >> 467 destroy_workqueue(pcrypt->wq); >> 468 padata_free(pcrypt->pinst); 336 } 469 } 337 470 338 static struct crypto_template pcrypt_tmpl = { 471 static struct crypto_template pcrypt_tmpl = { 339 .name = "pcrypt", 472 .name = "pcrypt", 340 .create = pcrypt_create, 473 .create = pcrypt_create, 341 .module = THIS_MODULE, 474 .module = THIS_MODULE, 342 }; 475 }; 343 476 344 static int __init pcrypt_init(void) 477 static int __init pcrypt_init(void) 345 { 478 { 346 int err = -ENOMEM; 479 int err = -ENOMEM; 347 480 348 pcrypt_kset = kset_create_and_add("pcr 481 pcrypt_kset = kset_create_and_add("pcrypt", NULL, kernel_kobj); 349 if (!pcrypt_kset) 482 if (!pcrypt_kset) 350 goto err; 483 goto err; 351 484 352 err = pcrypt_init_padata(&pencrypt, "p 485 err = pcrypt_init_padata(&pencrypt, "pencrypt"); 353 if (err) 486 if (err) 354 goto err_unreg_kset; 487 goto err_unreg_kset; 355 488 356 err = pcrypt_init_padata(&pdecrypt, "p 489 err = pcrypt_init_padata(&pdecrypt, "pdecrypt"); 357 if (err) 490 if (err) 358 goto err_deinit_pencrypt; 491 goto err_deinit_pencrypt; 359 492 >> 493 padata_start(pencrypt.pinst); >> 494 padata_start(pdecrypt.pinst); >> 495 360 return crypto_register_template(&pcryp 496 return crypto_register_template(&pcrypt_tmpl); 361 497 362 err_deinit_pencrypt: 498 err_deinit_pencrypt: 363 padata_free(pencrypt); !! 499 pcrypt_fini_padata(&pencrypt); 364 err_unreg_kset: 500 err_unreg_kset: 365 kset_unregister(pcrypt_kset); 501 kset_unregister(pcrypt_kset); 366 err: 502 err: 367 return err; 503 return err; 368 } 504 } 369 505 370 static void __exit pcrypt_exit(void) 506 static void __exit pcrypt_exit(void) 371 { 507 { 372 crypto_unregister_template(&pcrypt_tmp !! 508 pcrypt_fini_padata(&pencrypt); 373 !! 509 pcrypt_fini_padata(&pdecrypt); 374 padata_free(pencrypt); << 375 padata_free(pdecrypt); << 376 510 377 kset_unregister(pcrypt_kset); 511 kset_unregister(pcrypt_kset); >> 512 crypto_unregister_template(&pcrypt_tmpl); 378 } 513 } 379 514 380 subsys_initcall(pcrypt_init); !! 515 module_init(pcrypt_init); 381 module_exit(pcrypt_exit); 516 module_exit(pcrypt_exit); 382 517 383 MODULE_LICENSE("GPL"); 518 MODULE_LICENSE("GPL"); 384 MODULE_AUTHOR("Steffen Klassert <steffen.klass 519 MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>"); 385 MODULE_DESCRIPTION("Parallel crypto wrapper"); 520 MODULE_DESCRIPTION("Parallel crypto wrapper"); 386 MODULE_ALIAS_CRYPTO("pcrypt"); 521 MODULE_ALIAS_CRYPTO("pcrypt"); 387 522
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.