sparcv9cap.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. /*
  2. * Copyright 2005-2020 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. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #include <setjmp.h>
  13. #include <signal.h>
  14. #include <sys/time.h>
  15. #include <unistd.h>
  16. #include <openssl/bn.h>
  17. #include "internal/cryptlib.h"
  18. #include "bn/bn_local.h" /* for definition of bn_mul_mont */
  19. #include "sparc_arch.h"
  20. #if defined(__GNUC__) && defined(__linux)
  21. __attribute__ ((visibility("hidden")))
  22. #endif
  23. unsigned int OPENSSL_sparcv9cap_P[2] = { SPARCV9_TICK_PRIVILEGED, 0 };
  24. int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
  25. const BN_ULONG *np, const BN_ULONG *n0, int num)
  26. {
  27. int bn_mul_mont_vis3(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
  28. const BN_ULONG *np, const BN_ULONG *n0, int num);
  29. int bn_mul_mont_fpu(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
  30. const BN_ULONG *np, const BN_ULONG *n0, int num);
  31. int bn_mul_mont_int(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
  32. const BN_ULONG *np, const BN_ULONG *n0, int num);
  33. if (!(num & 1) && num >= 6) {
  34. if ((num & 15) == 0 && num <= 64 &&
  35. (OPENSSL_sparcv9cap_P[1] & (CFR_MONTMUL | CFR_MONTSQR)) ==
  36. (CFR_MONTMUL | CFR_MONTSQR)) {
  37. typedef int (*bn_mul_mont_f) (BN_ULONG *rp, const BN_ULONG *ap,
  38. const BN_ULONG *bp,
  39. const BN_ULONG *np,
  40. const BN_ULONG *n0);
  41. int bn_mul_mont_t4_8(BN_ULONG *rp, const BN_ULONG *ap,
  42. const BN_ULONG *bp, const BN_ULONG *np,
  43. const BN_ULONG *n0);
  44. int bn_mul_mont_t4_16(BN_ULONG *rp, const BN_ULONG *ap,
  45. const BN_ULONG *bp, const BN_ULONG *np,
  46. const BN_ULONG *n0);
  47. int bn_mul_mont_t4_24(BN_ULONG *rp, const BN_ULONG *ap,
  48. const BN_ULONG *bp, const BN_ULONG *np,
  49. const BN_ULONG *n0);
  50. int bn_mul_mont_t4_32(BN_ULONG *rp, const BN_ULONG *ap,
  51. const BN_ULONG *bp, const BN_ULONG *np,
  52. const BN_ULONG *n0);
  53. static const bn_mul_mont_f funcs[4] = {
  54. bn_mul_mont_t4_8, bn_mul_mont_t4_16,
  55. bn_mul_mont_t4_24, bn_mul_mont_t4_32
  56. };
  57. bn_mul_mont_f worker = funcs[num / 16 - 1];
  58. if ((*worker) (rp, ap, bp, np, n0))
  59. return 1;
  60. /* retry once and fall back */
  61. if ((*worker) (rp, ap, bp, np, n0))
  62. return 1;
  63. return bn_mul_mont_vis3(rp, ap, bp, np, n0, num);
  64. }
  65. if ((OPENSSL_sparcv9cap_P[0] & SPARCV9_VIS3))
  66. return bn_mul_mont_vis3(rp, ap, bp, np, n0, num);
  67. else if (num >= 8 &&
  68. /*
  69. * bn_mul_mont_fpu doesn't use FMADD, we just use the
  70. * flag to detect when FPU path is preferable in cases
  71. * when current heuristics is unreliable. [it works
  72. * out because FMADD-capable processors where FPU
  73. * code path is undesirable are also VIS3-capable and
  74. * VIS3 code path takes precedence.]
  75. */
  76. ( (OPENSSL_sparcv9cap_P[0] & SPARCV9_FMADD) ||
  77. (OPENSSL_sparcv9cap_P[0] &
  78. (SPARCV9_PREFER_FPU | SPARCV9_VIS1)) ==
  79. (SPARCV9_PREFER_FPU | SPARCV9_VIS1) ))
  80. return bn_mul_mont_fpu(rp, ap, bp, np, n0, num);
  81. }
  82. return bn_mul_mont_int(rp, ap, bp, np, n0, num);
  83. }
  84. unsigned long _sparcv9_rdtick(void);
  85. void _sparcv9_vis1_probe(void);
  86. unsigned long _sparcv9_vis1_instrument(void);
  87. void _sparcv9_vis2_probe(void);
  88. void _sparcv9_fmadd_probe(void);
  89. unsigned long _sparcv9_rdcfr(void);
  90. void _sparcv9_vis3_probe(void);
  91. void _sparcv9_fjaesx_probe(void);
  92. unsigned long _sparcv9_random(void);
  93. size_t _sparcv9_vis1_instrument_bus(unsigned int *, size_t);
  94. size_t _sparcv9_vis1_instrument_bus2(unsigned int *, size_t, size_t);
  95. uint32_t OPENSSL_rdtsc(void)
  96. {
  97. if (OPENSSL_sparcv9cap_P[0] & SPARCV9_TICK_PRIVILEGED)
  98. #if defined(__sun) && defined(__SVR4)
  99. return gethrtime();
  100. #else
  101. return 0;
  102. #endif
  103. else
  104. return _sparcv9_rdtick();
  105. }
  106. size_t OPENSSL_instrument_bus(unsigned int *out, size_t cnt)
  107. {
  108. if ((OPENSSL_sparcv9cap_P[0] & (SPARCV9_TICK_PRIVILEGED | SPARCV9_BLK)) ==
  109. SPARCV9_BLK)
  110. return _sparcv9_vis1_instrument_bus(out, cnt);
  111. else
  112. return 0;
  113. }
  114. size_t OPENSSL_instrument_bus2(unsigned int *out, size_t cnt, size_t max)
  115. {
  116. if ((OPENSSL_sparcv9cap_P[0] & (SPARCV9_TICK_PRIVILEGED | SPARCV9_BLK)) ==
  117. SPARCV9_BLK)
  118. return _sparcv9_vis1_instrument_bus2(out, cnt, max);
  119. else
  120. return 0;
  121. }
  122. static sigjmp_buf common_jmp;
  123. static void common_handler(int sig)
  124. {
  125. siglongjmp(common_jmp, sig);
  126. }
  127. #if defined(__sun) && defined(__SVR4)
  128. # if defined(__GNUC__) && __GNUC__>=2
  129. extern unsigned int getisax(unsigned int vec[], unsigned int sz) __attribute__ ((weak));
  130. # elif defined(__SUNPRO_C)
  131. #pragma weak getisax
  132. extern unsigned int getisax(unsigned int vec[], unsigned int sz);
  133. # else
  134. static unsigned int (*getisax) (unsigned int vec[], unsigned int sz) = NULL;
  135. # endif
  136. #endif
  137. void OPENSSL_cpuid_setup(void)
  138. {
  139. char *e;
  140. struct sigaction common_act, ill_oact, bus_oact;
  141. sigset_t all_masked, oset;
  142. static int trigger = 0;
  143. if (trigger)
  144. return;
  145. trigger = 1;
  146. if ((e = getenv("OPENSSL_sparcv9cap"))) {
  147. OPENSSL_sparcv9cap_P[0] = strtoul(e, NULL, 0);
  148. if ((e = strchr(e, ':')))
  149. OPENSSL_sparcv9cap_P[1] = strtoul(e + 1, NULL, 0);
  150. return;
  151. }
  152. #if defined(__sun) && defined(__SVR4)
  153. if (getisax != NULL) {
  154. unsigned int vec[2] = { 0, 0 };
  155. if (getisax (vec,2)) {
  156. if (vec[0]&0x00020) OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS1;
  157. if (vec[0]&0x00040) OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS2;
  158. if (vec[0]&0x00080) OPENSSL_sparcv9cap_P[0] |= SPARCV9_BLK;
  159. if (vec[0]&0x00100) OPENSSL_sparcv9cap_P[0] |= SPARCV9_FMADD;
  160. if (vec[0]&0x00400) OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS3;
  161. if (vec[0]&0x01000) OPENSSL_sparcv9cap_P[0] |= SPARCV9_FJHPCACE;
  162. if (vec[0]&0x02000) OPENSSL_sparcv9cap_P[0] |= SPARCV9_FJDESX;
  163. if (vec[0]&0x08000) OPENSSL_sparcv9cap_P[0] |= SPARCV9_IMA;
  164. if (vec[0]&0x10000) OPENSSL_sparcv9cap_P[0] |= SPARCV9_FJAESX;
  165. if (vec[1]&0x00008) OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS4;
  166. /* reconstruct %cfr copy */
  167. OPENSSL_sparcv9cap_P[1] = (vec[0]>>17)&0x3ff;
  168. OPENSSL_sparcv9cap_P[1] |= (OPENSSL_sparcv9cap_P[1]&CFR_MONTMUL)<<1;
  169. if (vec[0]&0x20000000) OPENSSL_sparcv9cap_P[1] |= CFR_CRC32C;
  170. if (vec[1]&0x00000020) OPENSSL_sparcv9cap_P[1] |= CFR_XMPMUL;
  171. if (vec[1]&0x00000040)
  172. OPENSSL_sparcv9cap_P[1] |= CFR_XMONTMUL|CFR_XMONTSQR;
  173. /* Some heuristics */
  174. /* all known VIS2-capable CPUs have unprivileged tick counter */
  175. if (OPENSSL_sparcv9cap_P[0]&SPARCV9_VIS2)
  176. OPENSSL_sparcv9cap_P[0] &= ~SPARCV9_TICK_PRIVILEGED;
  177. OPENSSL_sparcv9cap_P[0] |= SPARCV9_PREFER_FPU;
  178. /* detect UltraSPARC-Tx, see sparccpud.S for details... */
  179. if ((OPENSSL_sparcv9cap_P[0]&SPARCV9_VIS1) &&
  180. _sparcv9_vis1_instrument() >= 12)
  181. OPENSSL_sparcv9cap_P[0] &= ~(SPARCV9_VIS1 | SPARCV9_PREFER_FPU);
  182. }
  183. if (sizeof(size_t) == 8)
  184. OPENSSL_sparcv9cap_P[0] |= SPARCV9_64BIT_STACK;
  185. return;
  186. }
  187. #endif
  188. /* Initial value, fits UltraSPARC-I&II... */
  189. OPENSSL_sparcv9cap_P[0] = SPARCV9_PREFER_FPU | SPARCV9_TICK_PRIVILEGED;
  190. sigfillset(&all_masked);
  191. sigdelset(&all_masked, SIGILL);
  192. sigdelset(&all_masked, SIGTRAP);
  193. # ifdef SIGEMT
  194. sigdelset(&all_masked, SIGEMT);
  195. # endif
  196. sigdelset(&all_masked, SIGFPE);
  197. sigdelset(&all_masked, SIGBUS);
  198. sigdelset(&all_masked, SIGSEGV);
  199. sigprocmask(SIG_SETMASK, &all_masked, &oset);
  200. memset(&common_act, 0, sizeof(common_act));
  201. common_act.sa_handler = common_handler;
  202. common_act.sa_mask = all_masked;
  203. sigaction(SIGILL, &common_act, &ill_oact);
  204. sigaction(SIGBUS, &common_act, &bus_oact); /* T1 fails 16-bit ldda [on
  205. * Linux] */
  206. if (sigsetjmp(common_jmp, 1) == 0) {
  207. _sparcv9_rdtick();
  208. OPENSSL_sparcv9cap_P[0] &= ~SPARCV9_TICK_PRIVILEGED;
  209. }
  210. if (sigsetjmp(common_jmp, 1) == 0) {
  211. _sparcv9_vis1_probe();
  212. OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS1 | SPARCV9_BLK;
  213. /* detect UltraSPARC-Tx, see sparccpud.S for details... */
  214. if (_sparcv9_vis1_instrument() >= 12)
  215. OPENSSL_sparcv9cap_P[0] &= ~(SPARCV9_VIS1 | SPARCV9_PREFER_FPU);
  216. else {
  217. _sparcv9_vis2_probe();
  218. OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS2;
  219. }
  220. }
  221. if (sigsetjmp(common_jmp, 1) == 0) {
  222. _sparcv9_fmadd_probe();
  223. OPENSSL_sparcv9cap_P[0] |= SPARCV9_FMADD;
  224. }
  225. /*
  226. * VIS3 flag is tested independently from VIS1, unlike VIS2 that is,
  227. * because VIS3 defines even integer instructions.
  228. */
  229. if (sigsetjmp(common_jmp, 1) == 0) {
  230. _sparcv9_vis3_probe();
  231. OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS3;
  232. }
  233. if (sigsetjmp(common_jmp, 1) == 0) {
  234. _sparcv9_fjaesx_probe();
  235. OPENSSL_sparcv9cap_P[0] |= SPARCV9_FJAESX;
  236. }
  237. /*
  238. * In wait for better solution _sparcv9_rdcfr is masked by
  239. * VIS3 flag, because it goes to uninterruptible endless
  240. * loop on UltraSPARC II running Solaris. Things might be
  241. * different on Linux...
  242. */
  243. if ((OPENSSL_sparcv9cap_P[0] & SPARCV9_VIS3) &&
  244. sigsetjmp(common_jmp, 1) == 0) {
  245. OPENSSL_sparcv9cap_P[1] = (unsigned int)_sparcv9_rdcfr();
  246. }
  247. sigaction(SIGBUS, &bus_oact, NULL);
  248. sigaction(SIGILL, &ill_oact, NULL);
  249. sigprocmask(SIG_SETMASK, &oset, NULL);
  250. if (sizeof(size_t) == 8)
  251. OPENSSL_sparcv9cap_P[0] |= SPARCV9_64BIT_STACK;
  252. # ifdef __linux
  253. else {
  254. int ret = syscall(340);
  255. if (ret >= 0 && ret & 1)
  256. OPENSSL_sparcv9cap_P[0] |= SPARCV9_64BIT_STACK;
  257. }
  258. # endif
  259. }