e_aes_cbc_hmac_sha*.c: address linker warning about OPENSSL_ia32cap_P size mismatch.
[openssl.git] / crypto / sparcv9cap.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <setjmp.h>
5 #include <signal.h>
6 #include <sys/time.h>
7 #include <unistd.h>
8 #include <openssl/bn.h>
9
10 #include "sparc_arch.h"
11
12 #if defined(__GNUC__) && defined(__linux)
13 __attribute__ ((visibility("hidden")))
14 #endif
15 unsigned int OPENSSL_sparcv9cap_P[2] = { SPARCV9_TICK_PRIVILEGED, 0 };
16
17 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
18                 const BN_ULONG *np, const BN_ULONG *n0, int num)
19 {
20     int bn_mul_mont_vis3(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
21                          const BN_ULONG *np, const BN_ULONG *n0, int num);
22     int bn_mul_mont_fpu(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
23                         const BN_ULONG *np, const BN_ULONG *n0, int num);
24     int bn_mul_mont_int(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
25                         const BN_ULONG *np, const BN_ULONG *n0, int num);
26
27     if (!(num & 1) && num >= 6) {
28         if ((num & 15) == 0 && num <= 64 &&
29             (OPENSSL_sparcv9cap_P[1] & (CFR_MONTMUL | CFR_MONTSQR)) ==
30             (CFR_MONTMUL | CFR_MONTSQR)) {
31             typedef int (*bn_mul_mont_f) (BN_ULONG *rp, const BN_ULONG *ap,
32                                           const BN_ULONG *bp,
33                                           const BN_ULONG *np,
34                                           const BN_ULONG *n0);
35             int bn_mul_mont_t4_8(BN_ULONG *rp, const BN_ULONG *ap,
36                                  const BN_ULONG *bp, const BN_ULONG *np,
37                                  const BN_ULONG *n0);
38             int bn_mul_mont_t4_16(BN_ULONG *rp, const BN_ULONG *ap,
39                                   const BN_ULONG *bp, const BN_ULONG *np,
40                                   const BN_ULONG *n0);
41             int bn_mul_mont_t4_24(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_32(BN_ULONG *rp, const BN_ULONG *ap,
45                                   const BN_ULONG *bp, const BN_ULONG *np,
46                                   const BN_ULONG *n0);
47             static const bn_mul_mont_f funcs[4] = {
48                 bn_mul_mont_t4_8, bn_mul_mont_t4_16,
49                 bn_mul_mont_t4_24, bn_mul_mont_t4_32
50             };
51             bn_mul_mont_f worker = funcs[num / 16 - 1];
52
53             if ((*worker) (rp, ap, bp, np, n0))
54                 return 1;
55             /* retry once and fall back */
56             if ((*worker) (rp, ap, bp, np, n0))
57                 return 1;
58             return bn_mul_mont_vis3(rp, ap, bp, np, n0, num);
59         }
60         if ((OPENSSL_sparcv9cap_P[0] & SPARCV9_VIS3))
61             return bn_mul_mont_vis3(rp, ap, bp, np, n0, num);
62         else if (num >= 8 &&
63                  (OPENSSL_sparcv9cap_P[0] &
64                   (SPARCV9_PREFER_FPU | SPARCV9_VIS1)) ==
65                  (SPARCV9_PREFER_FPU | SPARCV9_VIS1))
66             return bn_mul_mont_fpu(rp, ap, bp, np, n0, num);
67     }
68     return bn_mul_mont_int(rp, ap, bp, np, n0, num);
69 }
70
71 unsigned long _sparcv9_rdtick(void);
72 void _sparcv9_vis1_probe(void);
73 unsigned long _sparcv9_vis1_instrument(void);
74 void _sparcv9_vis2_probe(void);
75 void _sparcv9_fmadd_probe(void);
76 unsigned long _sparcv9_rdcfr(void);
77 void _sparcv9_vis3_probe(void);
78 unsigned long _sparcv9_random(void);
79 size_t _sparcv9_vis1_instrument_bus(unsigned int *, size_t);
80 size_t _sparcv9_vis1_instrument_bus2(unsigned int *, size_t, size_t);
81
82 unsigned long OPENSSL_rdtsc(void)
83 {
84     if (OPENSSL_sparcv9cap_P[0] & SPARCV9_TICK_PRIVILEGED)
85 #if defined(__sun) && defined(__SVR4)
86         return gethrtime();
87 #else
88         return 0;
89 #endif
90     else
91         return _sparcv9_rdtick();
92 }
93
94 size_t OPENSSL_instrument_bus(unsigned int *out, size_t cnt)
95 {
96     if ((OPENSSL_sparcv9cap_P[0] & (SPARCV9_TICK_PRIVILEGED | SPARCV9_BLK)) ==
97         SPARCV9_BLK)
98         return _sparcv9_vis1_instrument_bus(out, cnt);
99     else
100         return 0;
101 }
102
103 size_t OPENSSL_instrument_bus2(unsigned int *out, size_t cnt, size_t max)
104 {
105     if ((OPENSSL_sparcv9cap_P[0] & (SPARCV9_TICK_PRIVILEGED | SPARCV9_BLK)) ==
106         SPARCV9_BLK)
107         return _sparcv9_vis1_instrument_bus2(out, cnt, max);
108     else
109         return 0;
110 }
111
112 static sigjmp_buf common_jmp;
113 static void common_handler(int sig)
114 {
115     siglongjmp(common_jmp, sig);
116 }
117
118 void OPENSSL_cpuid_setup(void)
119 {
120     char *e;
121     struct sigaction common_act, ill_oact, bus_oact;
122     sigset_t all_masked, oset;
123     static int trigger = 0;
124
125     if (trigger)
126         return;
127     trigger = 1;
128
129     if ((e = getenv("OPENSSL_sparcv9cap"))) {
130         OPENSSL_sparcv9cap_P[0] = strtoul(e, NULL, 0);
131         if ((e = strchr(e, ':')))
132             OPENSSL_sparcv9cap_P[1] = strtoul(e + 1, NULL, 0);
133         return;
134     }
135
136     /* Initial value, fits UltraSPARC-I&II... */
137     OPENSSL_sparcv9cap_P[0] = SPARCV9_PREFER_FPU | SPARCV9_TICK_PRIVILEGED;
138
139     sigfillset(&all_masked);
140     sigdelset(&all_masked, SIGILL);
141     sigdelset(&all_masked, SIGTRAP);
142 # ifdef SIGEMT
143     sigdelset(&all_masked, SIGEMT);
144 # endif
145     sigdelset(&all_masked, SIGFPE);
146     sigdelset(&all_masked, SIGBUS);
147     sigdelset(&all_masked, SIGSEGV);
148     sigprocmask(SIG_SETMASK, &all_masked, &oset);
149
150     memset(&common_act, 0, sizeof(common_act));
151     common_act.sa_handler = common_handler;
152     common_act.sa_mask = all_masked;
153
154     sigaction(SIGILL, &common_act, &ill_oact);
155     sigaction(SIGBUS, &common_act, &bus_oact); /* T1 fails 16-bit ldda [on
156                                                 * Linux] */
157
158     if (sigsetjmp(common_jmp, 1) == 0) {
159         _sparcv9_rdtick();
160         OPENSSL_sparcv9cap_P[0] &= ~SPARCV9_TICK_PRIVILEGED;
161     }
162
163     if (sigsetjmp(common_jmp, 1) == 0) {
164         _sparcv9_vis1_probe();
165         OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS1 | SPARCV9_BLK;
166         /* detect UltraSPARC-Tx, see sparccpud.S for details... */
167         if (_sparcv9_vis1_instrument() >= 12)
168             OPENSSL_sparcv9cap_P[0] &= ~(SPARCV9_VIS1 | SPARCV9_PREFER_FPU);
169         else {
170             _sparcv9_vis2_probe();
171             OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS2;
172         }
173     }
174
175     if (sigsetjmp(common_jmp, 1) == 0) {
176         _sparcv9_fmadd_probe();
177         OPENSSL_sparcv9cap_P[0] |= SPARCV9_FMADD;
178     }
179
180     /*
181      * VIS3 flag is tested independently from VIS1, unlike VIS2 that is,
182      * because VIS3 defines even integer instructions.
183      */
184     if (sigsetjmp(common_jmp, 1) == 0) {
185         _sparcv9_vis3_probe();
186         OPENSSL_sparcv9cap_P[0] |= SPARCV9_VIS3;
187     }
188
189     /*
190      * In wait for better solution _sparcv9_rdcfr is masked by
191      * VIS3 flag, because it goes to uninterruptable endless
192      * loop on UltraSPARC II running Solaris. Things might be
193      * different on Linux...
194      */
195     if ((OPENSSL_sparcv9cap_P[0] & SPARCV9_VIS3) &&
196         sigsetjmp(common_jmp, 1) == 0) {
197         OPENSSL_sparcv9cap_P[1] = (unsigned int)_sparcv9_rdcfr();
198     }
199
200     sigaction(SIGBUS, &bus_oact, NULL);
201     sigaction(SIGILL, &ill_oact, NULL);
202
203     sigprocmask(SIG_SETMASK, &oset, NULL);
204
205     if (sizeof(size_t) == 8)
206         OPENSSL_sparcv9cap_P[0] |= SPARCV9_64BIT_STACK;
207 # ifdef __linux
208     else {
209         int ret = syscall(340);
210
211         if (ret >= 0 && ret & 1)
212             OPENSSL_sparcv9cap_P[0] |= SPARCV9_64BIT_STACK;
213     }
214 # endif
215 }