Blame view

crypto/aes_ti.c 1.98 KB
d2912cb15   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-only
b5e0b032b   Ard Biesheuvel   crypto: aes - add...
2
3
4
5
  /*
   * Scalar fixed time AES core transform
   *
   * Copyright (C) 2017 Linaro Ltd <ard.biesheuvel@linaro.org>
b5e0b032b   Ard Biesheuvel   crypto: aes - add...
6
7
8
9
10
   */
  
  #include <crypto/aes.h>
  #include <linux/crypto.h>
  #include <linux/module.h>
b5e0b032b   Ard Biesheuvel   crypto: aes - add...
11
12
13
14
15
  
  static int aesti_set_key(struct crypto_tfm *tfm, const u8 *in_key,
  			 unsigned int key_len)
  {
  	struct crypto_aes_ctx *ctx = crypto_tfm_ctx(tfm);
b5e0b032b   Ard Biesheuvel   crypto: aes - add...
16

e59c1c987   Ard Biesheuvel   crypto: aes - cre...
17
  	return aes_expandkey(ctx, in_key, key_len);
b5e0b032b   Ard Biesheuvel   crypto: aes - add...
18
19
20
21
22
  }
  
  static void aesti_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
  {
  	const struct crypto_aes_ctx *ctx = crypto_tfm_ctx(tfm);
0a6a40c2a   Eric Biggers   crypto: aes_ti - ...
23
  	unsigned long flags;
b5e0b032b   Ard Biesheuvel   crypto: aes - add...
24

0a6a40c2a   Eric Biggers   crypto: aes_ti - ...
25
26
27
28
29
  	/*
  	 * Temporarily disable interrupts to avoid races where cachelines are
  	 * evicted when the CPU is interrupted to do something else.
  	 */
  	local_irq_save(flags);
e59c1c987   Ard Biesheuvel   crypto: aes - cre...
30
  	aes_encrypt(ctx, out, in);
0a6a40c2a   Eric Biggers   crypto: aes_ti - ...
31
32
  
  	local_irq_restore(flags);
b5e0b032b   Ard Biesheuvel   crypto: aes - add...
33
34
35
36
37
  }
  
  static void aesti_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in)
  {
  	const struct crypto_aes_ctx *ctx = crypto_tfm_ctx(tfm);
0a6a40c2a   Eric Biggers   crypto: aes_ti - ...
38
  	unsigned long flags;
b5e0b032b   Ard Biesheuvel   crypto: aes - add...
39

0a6a40c2a   Eric Biggers   crypto: aes_ti - ...
40
41
42
43
44
  	/*
  	 * Temporarily disable interrupts to avoid races where cachelines are
  	 * evicted when the CPU is interrupted to do something else.
  	 */
  	local_irq_save(flags);
e59c1c987   Ard Biesheuvel   crypto: aes - cre...
45
  	aes_decrypt(ctx, out, in);
0a6a40c2a   Eric Biggers   crypto: aes_ti - ...
46
47
  
  	local_irq_restore(flags);
b5e0b032b   Ard Biesheuvel   crypto: aes - add...
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
  }
  
  static struct crypto_alg aes_alg = {
  	.cra_name			= "aes",
  	.cra_driver_name		= "aes-fixed-time",
  	.cra_priority			= 100 + 1,
  	.cra_flags			= CRYPTO_ALG_TYPE_CIPHER,
  	.cra_blocksize			= AES_BLOCK_SIZE,
  	.cra_ctxsize			= sizeof(struct crypto_aes_ctx),
  	.cra_module			= THIS_MODULE,
  
  	.cra_cipher.cia_min_keysize	= AES_MIN_KEY_SIZE,
  	.cra_cipher.cia_max_keysize	= AES_MAX_KEY_SIZE,
  	.cra_cipher.cia_setkey		= aesti_set_key,
  	.cra_cipher.cia_encrypt		= aesti_encrypt,
  	.cra_cipher.cia_decrypt		= aesti_decrypt
  };
  
  static int __init aes_init(void)
  {
  	return crypto_register_alg(&aes_alg);
  }
  
  static void __exit aes_fini(void)
  {
  	crypto_unregister_alg(&aes_alg);
  }
  
  module_init(aes_init);
  module_exit(aes_fini);
  
  MODULE_DESCRIPTION("Generic fixed time AES");
  MODULE_AUTHOR("Ard Biesheuvel <ard.biesheuvel@linaro.org>");
  MODULE_LICENSE("GPL v2");