aes-macros.S 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /* SPDX-License-Identifier: Apache-2.0 OR BSD-2-Clause */
  2. //
  3. // This file is dual-licensed, meaning that you can use it under your
  4. // choice of either of the following two licenses:
  5. //
  6. // Copyright 2023 The OpenSSL Project Authors. All Rights Reserved.
  7. //
  8. // Licensed under the Apache License 2.0 (the "License"). You can obtain
  9. // a copy in the file LICENSE in the source distribution or at
  10. // https://www.openssl.org/source/license.html
  11. //
  12. // or
  13. //
  14. // Copyright (c) 2023, Christoph Müllner <christoph.muellner@vrull.eu>
  15. // Copyright (c) 2023, Phoebe Chen <phoebe.chen@sifive.com>
  16. // Copyright (c) 2023, Jerry Shih <jerry.shih@sifive.com>
  17. // Copyright 2024 Google LLC
  18. // All rights reserved.
  19. //
  20. // Redistribution and use in source and binary forms, with or without
  21. // modification, are permitted provided that the following conditions
  22. // are met:
  23. // 1. Redistributions of source code must retain the above copyright
  24. // notice, this list of conditions and the following disclaimer.
  25. // 2. Redistributions in binary form must reproduce the above copyright
  26. // notice, this list of conditions and the following disclaimer in the
  27. // documentation and/or other materials provided with the distribution.
  28. //
  29. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  30. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  31. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  32. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  33. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  34. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  35. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  36. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  37. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  39. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  40. // This file contains macros that are shared by the other aes-*.S files. The
  41. // generated code of these macros depends on the following RISC-V extensions:
  42. // - RV64I
  43. // - RISC-V Vector ('V') with VLEN >= 128
  44. // - RISC-V Vector AES block cipher extension ('Zvkned')
  45. // Loads the AES round keys from \keyp into vector registers and jumps to code
  46. // specific to the length of the key. Specifically:
  47. // - If AES-128, loads round keys into v1-v11 and jumps to \label128.
  48. // - If AES-192, loads round keys into v1-v13 and jumps to \label192.
  49. // - If AES-256, loads round keys into v1-v15 and continues onwards.
  50. //
  51. // Also sets vl=4 and vtype=e32,m1,ta,ma. Clobbers t0 and t1.
  52. .macro aes_begin keyp, label128, label192
  53. lwu t0, 480(\keyp) // t0 = key length in bytes
  54. li t1, 24 // t1 = key length for AES-192
  55. vsetivli zero, 4, e32, m1, ta, ma
  56. vle32.v v1, (\keyp)
  57. addi \keyp, \keyp, 16
  58. vle32.v v2, (\keyp)
  59. addi \keyp, \keyp, 16
  60. vle32.v v3, (\keyp)
  61. addi \keyp, \keyp, 16
  62. vle32.v v4, (\keyp)
  63. addi \keyp, \keyp, 16
  64. vle32.v v5, (\keyp)
  65. addi \keyp, \keyp, 16
  66. vle32.v v6, (\keyp)
  67. addi \keyp, \keyp, 16
  68. vle32.v v7, (\keyp)
  69. addi \keyp, \keyp, 16
  70. vle32.v v8, (\keyp)
  71. addi \keyp, \keyp, 16
  72. vle32.v v9, (\keyp)
  73. addi \keyp, \keyp, 16
  74. vle32.v v10, (\keyp)
  75. addi \keyp, \keyp, 16
  76. vle32.v v11, (\keyp)
  77. blt t0, t1, \label128 // If AES-128, goto label128.
  78. addi \keyp, \keyp, 16
  79. vle32.v v12, (\keyp)
  80. addi \keyp, \keyp, 16
  81. vle32.v v13, (\keyp)
  82. beq t0, t1, \label192 // If AES-192, goto label192.
  83. // Else, it's AES-256.
  84. addi \keyp, \keyp, 16
  85. vle32.v v14, (\keyp)
  86. addi \keyp, \keyp, 16
  87. vle32.v v15, (\keyp)
  88. .endm
  89. // Encrypts \data using zvkned instructions, using the round keys loaded into
  90. // v1-v11 (for AES-128), v1-v13 (for AES-192), or v1-v15 (for AES-256). \keylen
  91. // is the AES key length in bits. vl and vtype must already be set
  92. // appropriately. Note that if vl > 4, multiple blocks are encrypted.
  93. .macro aes_encrypt data, keylen
  94. vaesz.vs \data, v1
  95. vaesem.vs \data, v2
  96. vaesem.vs \data, v3
  97. vaesem.vs \data, v4
  98. vaesem.vs \data, v5
  99. vaesem.vs \data, v6
  100. vaesem.vs \data, v7
  101. vaesem.vs \data, v8
  102. vaesem.vs \data, v9
  103. vaesem.vs \data, v10
  104. .if \keylen == 128
  105. vaesef.vs \data, v11
  106. .elseif \keylen == 192
  107. vaesem.vs \data, v11
  108. vaesem.vs \data, v12
  109. vaesef.vs \data, v13
  110. .else
  111. vaesem.vs \data, v11
  112. vaesem.vs \data, v12
  113. vaesem.vs \data, v13
  114. vaesem.vs \data, v14
  115. vaesef.vs \data, v15
  116. .endif
  117. .endm
  118. // Same as aes_encrypt, but decrypts instead of encrypts.
  119. .macro aes_decrypt data, keylen
  120. .if \keylen == 128
  121. vaesz.vs \data, v11
  122. .elseif \keylen == 192
  123. vaesz.vs \data, v13
  124. vaesdm.vs \data, v12
  125. vaesdm.vs \data, v11
  126. .else
  127. vaesz.vs \data, v15
  128. vaesdm.vs \data, v14
  129. vaesdm.vs \data, v13
  130. vaesdm.vs \data, v12
  131. vaesdm.vs \data, v11
  132. .endif
  133. vaesdm.vs \data, v10
  134. vaesdm.vs \data, v9
  135. vaesdm.vs \data, v8
  136. vaesdm.vs \data, v7
  137. vaesdm.vs \data, v6
  138. vaesdm.vs \data, v5
  139. vaesdm.vs \data, v4
  140. vaesdm.vs \data, v3
  141. vaesdm.vs \data, v2
  142. vaesdf.vs \data, v1
  143. .endm
  144. // Expands to aes_encrypt or aes_decrypt according to \enc, which is 1 or 0.
  145. .macro aes_crypt data, enc, keylen
  146. .if \enc
  147. aes_encrypt \data, \keylen
  148. .else
  149. aes_decrypt \data, \keylen
  150. .endif
  151. .endm