| 
									
										
										
										
											2016-05-18 02:52:22 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-06-17 20:24:59 +08:00
										 |  |  |  * Copyright 2005-2021 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2016-05-18 02:52:22 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 21:03:01 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:52:22 +08:00
										 |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-16 06:50:36 +08:00
										 |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							| 
									
										
										
										
											2010-07-01 15:34:56 +08:00
										 |  |  | #include <setjmp.h>
 | 
					
						
							|  |  |  | #include <signal.h>
 | 
					
						
							| 
									
										
										
										
											2005-12-16 06:50:36 +08:00
										 |  |  | #include <sys/time.h>
 | 
					
						
							| 
									
										
										
										
											2012-11-17 18:34:11 +08:00
										 |  |  | #include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											2005-12-16 06:50:36 +08:00
										 |  |  | #include <openssl/bn.h>
 | 
					
						
							| 
									
										
										
										
											2017-11-20 00:40:56 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2021-07-07 23:47:06 +08:00
										 |  |  | #include "crypto/sparc_arch.h"
 | 
					
						
							| 
									
										
										
										
											2010-07-01 15:34:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-24 04:29:03 +08:00
										 |  |  | #if defined(__GNUC__) && defined(__linux)
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | __attribute__ ((visibility("hidden"))) | 
					
						
							| 
									
										
										
										
											2012-09-24 04:29:03 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | unsigned int OPENSSL_sparcv9cap_P[2] = { SPARCV9_TICK_PRIVILEGED, 0 }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unsigned long _sparcv9_rdtick(void); | 
					
						
							|  |  |  | void _sparcv9_vis1_probe(void); | 
					
						
							|  |  |  | unsigned long _sparcv9_vis1_instrument(void); | 
					
						
							|  |  |  | void _sparcv9_vis2_probe(void); | 
					
						
							|  |  |  | void _sparcv9_fmadd_probe(void); | 
					
						
							|  |  |  | unsigned long _sparcv9_rdcfr(void); | 
					
						
							|  |  |  | void _sparcv9_vis3_probe(void); | 
					
						
							| 
									
										
										
										
											2016-08-11 19:52:44 +08:00
										 |  |  | void _sparcv9_fjaesx_probe(void); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | unsigned long _sparcv9_random(void); | 
					
						
							|  |  |  | size_t _sparcv9_vis1_instrument_bus(unsigned int *, size_t); | 
					
						
							|  |  |  | size_t _sparcv9_vis1_instrument_bus2(unsigned int *, size_t, size_t); | 
					
						
							| 
									
										
										
										
											2010-07-01 15:34:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 00:40:56 +08:00
										 |  |  | uint32_t OPENSSL_rdtsc(void) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (OPENSSL_sparcv9cap_P[0] & SPARCV9_TICK_PRIVILEGED) | 
					
						
							| 
									
										
										
										
											2005-12-16 06:50:36 +08:00
										 |  |  | #if defined(__sun) && defined(__SVR4)
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return gethrtime(); | 
					
						
							| 
									
										
										
										
											2005-12-16 06:50:36 +08:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2005-12-16 06:50:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     else | 
					
						
							|  |  |  |         return _sparcv9_rdtick(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | size_t OPENSSL_instrument_bus(unsigned int *out, size_t cnt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if ((OPENSSL_sparcv9cap_P[0] & (SPARCV9_TICK_PRIVILEGED | SPARCV9_BLK)) == | 
					
						
							|  |  |  |         SPARCV9_BLK) | 
					
						
							|  |  |  |         return _sparcv9_vis1_instrument_bus(out, cnt); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | size_t OPENSSL_instrument_bus2(unsigned int *out, size_t cnt, size_t max) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if ((OPENSSL_sparcv9cap_P[0] & (SPARCV9_TICK_PRIVILEGED | SPARCV9_BLK)) == | 
					
						
							|  |  |  |         SPARCV9_BLK) | 
					
						
							|  |  |  |         return _sparcv9_vis1_instrument_bus2(out, cnt, max); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-04-17 20:46:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-01 15:34:56 +08:00
										 |  |  | static sigjmp_buf common_jmp; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | static void common_handler(int sig) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     siglongjmp(common_jmp, sig); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-07-01 15:34:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-01 19:21:08 +08:00
										 |  |  | #if defined(__sun) && defined(__SVR4)
 | 
					
						
							|  |  |  | # if defined(__GNUC__) && __GNUC__>=2
 | 
					
						
							|  |  |  | extern unsigned int getisax(unsigned int vec[], unsigned int sz) __attribute__ ((weak)); | 
					
						
							|  |  |  | # elif defined(__SUNPRO_C)
 | 
					
						
							|  |  |  | #pragma weak getisax
 | 
					
						
							|  |  |  | extern unsigned int getisax(unsigned int vec[], unsigned int sz); | 
					
						
							|  |  |  | # else
 | 
					
						
							|  |  |  | static unsigned int (*getisax) (unsigned int vec[], unsigned int sz) = NULL; | 
					
						
							|  |  |  | # endif
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-19 03:13:03 +08:00
										 |  |  | void OPENSSL_cpuid_setup(void) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     char *e; | 
					
						
							|  |  |  |     struct sigaction common_act, ill_oact, bus_oact; | 
					
						
							|  |  |  |     sigset_t all_masked, oset; | 
					
						
							|  |  |  |     static int trigger = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (trigger) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     trigger = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((e = getenv("OPENSSL_sparcv9cap"))) { | 
					
						
							|  |  |  |         OPENSSL_sparcv9cap_P[0] = strtoul(e, NULL, 0); | 
					
						
							|  |  |  |         if ((e = strchr(e, ':'))) | 
					
						
							|  |  |  |             OPENSSL_sparcv9cap_P[1] = strtoul(e + 1, NULL, 0); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-01 19:21:08 +08:00
										 |  |  | #if defined(__sun) && defined(__SVR4)
 | 
					
						
							|  |  |  |     if (getisax != NULL) { | 
					
						
							| 
									
										
										
										
											2016-08-05 03:06:53 +08:00
										 |  |  |         unsigned int vec[2] = { 0, 0 }; | 
					
						
							| 
									
										
										
										
											2015-12-01 19:21:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-05 03:06:53 +08:00
										 |  |  |         if (getisax (vec,2)) { | 
					
						
							| 
									
										
										
										
											2016-04-24 01:10:04 +08:00
										 |  |  |             if (vec[0]&0x00020) OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS1; | 
					
						
							|  |  |  |             if (vec[0]&0x00040) OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS2; | 
					
						
							|  |  |  |             if (vec[0]&0x00080) OPENSSL_sparcv9cap_P[0] |= SPARCV9_BLK; | 
					
						
							|  |  |  |             if (vec[0]&0x00100) OPENSSL_sparcv9cap_P[0] |= SPARCV9_FMADD; | 
					
						
							|  |  |  |             if (vec[0]&0x00400) OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS3; | 
					
						
							|  |  |  |             if (vec[0]&0x01000) OPENSSL_sparcv9cap_P[0] |= SPARCV9_FJHPCACE; | 
					
						
							|  |  |  |             if (vec[0]&0x02000) OPENSSL_sparcv9cap_P[0] |= SPARCV9_FJDESX; | 
					
						
							|  |  |  |             if (vec[0]&0x08000) OPENSSL_sparcv9cap_P[0] |= SPARCV9_IMA; | 
					
						
							| 
									
										
										
										
											2016-04-19 19:08:47 +08:00
										 |  |  |             if (vec[0]&0x10000) OPENSSL_sparcv9cap_P[0] |= SPARCV9_FJAESX; | 
					
						
							| 
									
										
										
										
											2016-04-24 01:10:04 +08:00
										 |  |  |             if (vec[1]&0x00008) OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS4; | 
					
						
							| 
									
										
										
										
											2015-12-01 19:21:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             /* reconstruct %cfr copy */ | 
					
						
							|  |  |  |             OPENSSL_sparcv9cap_P[1] = (vec[0]>>17)&0x3ff; | 
					
						
							|  |  |  |             OPENSSL_sparcv9cap_P[1] |= (OPENSSL_sparcv9cap_P[1]&CFR_MONTMUL)<<1; | 
					
						
							|  |  |  |             if (vec[0]&0x20000000) OPENSSL_sparcv9cap_P[1] |= CFR_CRC32C; | 
					
						
							| 
									
										
										
										
											2016-04-24 01:10:04 +08:00
										 |  |  |             if (vec[1]&0x00000020) OPENSSL_sparcv9cap_P[1] |= CFR_XMPMUL; | 
					
						
							|  |  |  |             if (vec[1]&0x00000040) | 
					
						
							|  |  |  |                 OPENSSL_sparcv9cap_P[1] |= CFR_XMONTMUL|CFR_XMONTSQR; | 
					
						
							| 
									
										
										
										
											2015-12-01 19:21:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             /* Some heuristics */ | 
					
						
							|  |  |  |             /* all known VIS2-capable CPUs have unprivileged tick counter */ | 
					
						
							|  |  |  |             if (OPENSSL_sparcv9cap_P[0]&SPARCV9_VIS2) | 
					
						
							|  |  |  |                 OPENSSL_sparcv9cap_P[0] &= ~SPARCV9_TICK_PRIVILEGED; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             OPENSSL_sparcv9cap_P[0] |= SPARCV9_PREFER_FPU; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* detect UltraSPARC-Tx, see sparccpud.S for details... */ | 
					
						
							|  |  |  |             if ((OPENSSL_sparcv9cap_P[0]&SPARCV9_VIS1) && | 
					
						
							|  |  |  |                 _sparcv9_vis1_instrument() >= 12) | 
					
						
							|  |  |  |                 OPENSSL_sparcv9cap_P[0] &= ~(SPARCV9_VIS1 | SPARCV9_PREFER_FPU); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (sizeof(size_t) == 8) | 
					
						
							|  |  |  |             OPENSSL_sparcv9cap_P[0] |= SPARCV9_64BIT_STACK; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /* Initial value, fits UltraSPARC-I&II... */ | 
					
						
							|  |  |  |     OPENSSL_sparcv9cap_P[0] = SPARCV9_PREFER_FPU | SPARCV9_TICK_PRIVILEGED; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sigfillset(&all_masked); | 
					
						
							|  |  |  |     sigdelset(&all_masked, SIGILL); | 
					
						
							|  |  |  |     sigdelset(&all_masked, SIGTRAP); | 
					
						
							|  |  |  | # ifdef SIGEMT
 | 
					
						
							|  |  |  |     sigdelset(&all_masked, SIGEMT); | 
					
						
							|  |  |  | # endif
 | 
					
						
							|  |  |  |     sigdelset(&all_masked, SIGFPE); | 
					
						
							|  |  |  |     sigdelset(&all_masked, SIGBUS); | 
					
						
							|  |  |  |     sigdelset(&all_masked, SIGSEGV); | 
					
						
							|  |  |  |     sigprocmask(SIG_SETMASK, &all_masked, &oset); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     memset(&common_act, 0, sizeof(common_act)); | 
					
						
							|  |  |  |     common_act.sa_handler = common_handler; | 
					
						
							|  |  |  |     common_act.sa_mask = all_masked; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sigaction(SIGILL, &common_act, &ill_oact); | 
					
						
							|  |  |  |     sigaction(SIGBUS, &common_act, &bus_oact); /* T1 fails 16-bit ldda [on
 | 
					
						
							|  |  |  |                                                 * Linux] */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (sigsetjmp(common_jmp, 1) == 0) { | 
					
						
							|  |  |  |         _sparcv9_rdtick(); | 
					
						
							|  |  |  |         OPENSSL_sparcv9cap_P[0] &= ~SPARCV9_TICK_PRIVILEGED; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (sigsetjmp(common_jmp, 1) == 0) { | 
					
						
							|  |  |  |         _sparcv9_vis1_probe(); | 
					
						
							|  |  |  |         OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS1 | SPARCV9_BLK; | 
					
						
							|  |  |  |         /* detect UltraSPARC-Tx, see sparccpud.S for details... */ | 
					
						
							|  |  |  |         if (_sparcv9_vis1_instrument() >= 12) | 
					
						
							|  |  |  |             OPENSSL_sparcv9cap_P[0] &= ~(SPARCV9_VIS1 | SPARCV9_PREFER_FPU); | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             _sparcv9_vis2_probe(); | 
					
						
							|  |  |  |             OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS2; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (sigsetjmp(common_jmp, 1) == 0) { | 
					
						
							|  |  |  |         _sparcv9_fmadd_probe(); | 
					
						
							|  |  |  |         OPENSSL_sparcv9cap_P[0] |= SPARCV9_FMADD; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * VIS3 flag is tested independently from VIS1, unlike VIS2 that is, | 
					
						
							|  |  |  |      * because VIS3 defines even integer instructions. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (sigsetjmp(common_jmp, 1) == 0) { | 
					
						
							|  |  |  |         _sparcv9_vis3_probe(); | 
					
						
							|  |  |  |         OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS3; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-19 19:08:47 +08:00
										 |  |  |     if (sigsetjmp(common_jmp, 1) == 0) { | 
					
						
							|  |  |  |         _sparcv9_fjaesx_probe(); | 
					
						
							|  |  |  |         OPENSSL_sparcv9cap_P[0] |= SPARCV9_FJAESX; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * In wait for better solution _sparcv9_rdcfr is masked by | 
					
						
							| 
									
										
										
										
											2020-02-03 05:54:01 +08:00
										 |  |  |      * VIS3 flag, because it goes to uninterruptible endless | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |      * loop on UltraSPARC II running Solaris. Things might be | 
					
						
							|  |  |  |      * different on Linux... | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if ((OPENSSL_sparcv9cap_P[0] & SPARCV9_VIS3) && | 
					
						
							|  |  |  |         sigsetjmp(common_jmp, 1) == 0) { | 
					
						
							|  |  |  |         OPENSSL_sparcv9cap_P[1] = (unsigned int)_sparcv9_rdcfr(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sigaction(SIGBUS, &bus_oact, NULL); | 
					
						
							|  |  |  |     sigaction(SIGILL, &ill_oact, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sigprocmask(SIG_SETMASK, &oset, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (sizeof(size_t) == 8) | 
					
						
							|  |  |  |         OPENSSL_sparcv9cap_P[0] |= SPARCV9_64BIT_STACK; | 
					
						
							|  |  |  | # ifdef __linux
 | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         int ret = syscall(340); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (ret >= 0 && ret & 1) | 
					
						
							|  |  |  |             OPENSSL_sparcv9cap_P[0] |= SPARCV9_64BIT_STACK; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | # endif
 | 
					
						
							|  |  |  | } |