s390x_arch.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. * Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #ifndef OSSL_CRYPTO_S390X_ARCH_H
  10. # define OSSL_CRYPTO_S390X_ARCH_H
  11. # ifndef __ASSEMBLER__
  12. #include "crypto/bn.h"
  13. void s390x_kimd(const unsigned char *in, size_t len, unsigned int fc,
  14. void *param);
  15. void s390x_klmd(const unsigned char *in, size_t inlen, unsigned char *out,
  16. size_t outlen, unsigned int fc, void *param);
  17. void s390x_km(const unsigned char *in, size_t len, unsigned char *out,
  18. unsigned int fc, void *param);
  19. void s390x_kmac(const unsigned char *in, size_t len, unsigned int fc,
  20. void *param);
  21. void s390x_kmo(const unsigned char *in, size_t len, unsigned char *out,
  22. unsigned int fc, void *param);
  23. void s390x_kmf(const unsigned char *in, size_t len, unsigned char *out,
  24. unsigned int fc, void *param);
  25. void s390x_kma(const unsigned char *aad, size_t alen, const unsigned char *in,
  26. size_t len, unsigned char *out, unsigned int fc, void *param);
  27. int s390x_pcc(unsigned int fc, void *param);
  28. int s390x_kdsa(unsigned int fc, void *param, const unsigned char *in,
  29. size_t len);
  30. void s390x_flip_endian32(unsigned char dst[32], const unsigned char src[32]);
  31. void s390x_flip_endian64(unsigned char dst[64], const unsigned char src[64]);
  32. int s390x_x25519_mul(unsigned char u_dst[32],
  33. const unsigned char u_src[32],
  34. const unsigned char d_src[32]);
  35. int s390x_x448_mul(unsigned char u_dst[56],
  36. const unsigned char u_src[56],
  37. const unsigned char d_src[56]);
  38. int s390x_ed25519_mul(unsigned char x_dst[32],
  39. unsigned char y_dst[32],
  40. const unsigned char x_src[32],
  41. const unsigned char y_src[32],
  42. const unsigned char d_src[32]);
  43. int s390x_ed448_mul(unsigned char x_dst[57],
  44. unsigned char y_dst[57],
  45. const unsigned char x_src[57],
  46. const unsigned char y_src[57],
  47. const unsigned char d_src[57]);
  48. /*
  49. * The field elements of OPENSSL_s390xcap_P are the 64-bit words returned by
  50. * the STFLE instruction followed by the 64-bit word pairs returned by
  51. * instructions' QUERY functions. If STFLE returns fewer data or an instruction
  52. * is not supported, the corresponding field elements are zero.
  53. */
  54. struct OPENSSL_s390xcap_st {
  55. unsigned long long stfle[4];
  56. unsigned long long kimd[2];
  57. unsigned long long klmd[2];
  58. unsigned long long km[2];
  59. unsigned long long kmc[2];
  60. unsigned long long kmac[2];
  61. unsigned long long kmctr[2];
  62. unsigned long long kmo[2];
  63. unsigned long long kmf[2];
  64. unsigned long long prno[2];
  65. unsigned long long kma[2];
  66. unsigned long long pcc[2];
  67. unsigned long long kdsa[2];
  68. };
  69. #if defined(__GNUC__) && defined(__linux)
  70. __attribute__ ((visibility("hidden")))
  71. #endif
  72. extern struct OPENSSL_s390xcap_st OPENSSL_s390xcap_P;
  73. #ifdef S390X_MOD_EXP
  74. # if defined(__GNUC__) && defined(__linux)
  75. __attribute__ ((visibility("hidden")))
  76. # endif
  77. extern int OPENSSL_s390xcex;
  78. #endif
  79. /* Max number of 64-bit words currently returned by STFLE */
  80. # define S390X_STFLE_MAX 3
  81. /* convert facility bit number or function code to bit mask */
  82. # define S390X_CAPBIT(i) (1ULL << (63 - (i) % 64))
  83. # endif
  84. /* OPENSSL_s390xcap_P offsets [bytes] */
  85. # define S390X_STFLE 0x00
  86. # define S390X_KIMD 0x20
  87. # define S390X_KLMD 0x30
  88. # define S390X_KM 0x40
  89. # define S390X_KMC 0x50
  90. # define S390X_KMAC 0x60
  91. # define S390X_KMCTR 0x70
  92. # define S390X_KMO 0x80
  93. # define S390X_KMF 0x90
  94. # define S390X_PRNO 0xa0
  95. # define S390X_KMA 0xb0
  96. # define S390X_PCC 0xc0
  97. # define S390X_KDSA 0xd0
  98. /* Facility Bit Numbers */
  99. # define S390X_MSA 17 /* message-security-assist */
  100. # define S390X_STCKF 25 /* store-clock-fast */
  101. # define S390X_MSA5 57 /* message-security-assist-ext. 5 */
  102. # define S390X_MSA3 76 /* message-security-assist-ext. 3 */
  103. # define S390X_MSA4 77 /* message-security-assist-ext. 4 */
  104. # define S390X_VX 129 /* vector */
  105. # define S390X_VXD 134 /* vector packed decimal */
  106. # define S390X_VXE 135 /* vector enhancements 1 */
  107. # define S390X_MSA8 146 /* message-security-assist-ext. 8 */
  108. # define S390X_MSA9 155 /* message-security-assist-ext. 9 */
  109. /* Function Codes */
  110. /* all instructions */
  111. # define S390X_QUERY 0
  112. /* kimd/klmd */
  113. # define S390X_SHA_1 1
  114. # define S390X_SHA_256 2
  115. # define S390X_SHA_512 3
  116. # define S390X_SHA3_224 32
  117. # define S390X_SHA3_256 33
  118. # define S390X_SHA3_384 34
  119. # define S390X_SHA3_512 35
  120. # define S390X_KECCAK_224 32
  121. # define S390X_KECCAK_256 33
  122. # define S390X_KECCAK_384 34
  123. # define S390X_KECCAK_512 35
  124. # define S390X_SHAKE_128 36
  125. # define S390X_SHAKE_256 37
  126. # define S390X_GHASH 65
  127. /* km/kmc/kmac/kmctr/kmo/kmf/kma */
  128. # define S390X_AES_128 18
  129. # define S390X_AES_192 19
  130. # define S390X_AES_256 20
  131. /* km */
  132. # define S390X_XTS_AES_128 50
  133. # define S390X_XTS_AES_256 52
  134. /* prno */
  135. # define S390X_SHA_512_DRNG 3
  136. # define S390X_TRNG 114
  137. /* pcc */
  138. # define S390X_SCALAR_MULTIPLY_P256 64
  139. # define S390X_SCALAR_MULTIPLY_P384 65
  140. # define S390X_SCALAR_MULTIPLY_P521 66
  141. # define S390X_SCALAR_MULTIPLY_ED25519 72
  142. # define S390X_SCALAR_MULTIPLY_ED448 73
  143. # define S390X_SCALAR_MULTIPLY_X25519 80
  144. # define S390X_SCALAR_MULTIPLY_X448 81
  145. /* kdsa */
  146. # define S390X_ECDSA_VERIFY_P256 1
  147. # define S390X_ECDSA_VERIFY_P384 2
  148. # define S390X_ECDSA_VERIFY_P521 3
  149. # define S390X_ECDSA_SIGN_P256 9
  150. # define S390X_ECDSA_SIGN_P384 10
  151. # define S390X_ECDSA_SIGN_P521 11
  152. # define S390X_EDDSA_VERIFY_ED25519 32
  153. # define S390X_EDDSA_VERIFY_ED448 36
  154. # define S390X_EDDSA_SIGN_ED25519 40
  155. # define S390X_EDDSA_SIGN_ED448 44
  156. /* Register 0 Flags */
  157. # define S390X_DECRYPT 0x80
  158. # define S390X_KMA_LPC 0x100
  159. # define S390X_KMA_LAAD 0x200
  160. # define S390X_KMA_HS 0x400
  161. # define S390X_KDSA_D 0x80
  162. # define S390X_KLMD_PS 0x100
  163. #endif