Invoke tear_down when exiting test_encode_tls_sct() prematurely
[openssl.git] / crypto / arm_arch.h
1 /*
2  * Copyright 2011-2021 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
10 #ifndef OSSL_CRYPTO_ARM_ARCH_H
11 # define OSSL_CRYPTO_ARM_ARCH_H
12
13 # if !defined(__ARM_ARCH__)
14 #  if defined(__CC_ARM)
15 #   define __ARM_ARCH__ __TARGET_ARCH_ARM
16 #   if defined(__BIG_ENDIAN)
17 #    define __ARMEB__
18 #   else
19 #    define __ARMEL__
20 #   endif
21 #  elif defined(__GNUC__)
22 #   if   defined(__aarch64__)
23 #    define __ARM_ARCH__ 8
24   /*
25    * Why doesn't gcc define __ARM_ARCH__? Instead it defines
26    * bunch of below macros. See all_architectures[] table in
27    * gcc/config/arm/arm.c. On a side note it defines
28    * __ARMEL__/__ARMEB__ for little-/big-endian.
29    */
30 #   elif defined(__ARM_ARCH)
31 #    define __ARM_ARCH__ __ARM_ARCH
32 #   elif defined(__ARM_ARCH_8A__)
33 #    define __ARM_ARCH__ 8
34 #   elif defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__)     || \
35         defined(__ARM_ARCH_7R__)|| defined(__ARM_ARCH_7M__)     || \
36         defined(__ARM_ARCH_7EM__)
37 #    define __ARM_ARCH__ 7
38 #   elif defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__)     || \
39         defined(__ARM_ARCH_6K__)|| defined(__ARM_ARCH_6M__)     || \
40         defined(__ARM_ARCH_6Z__)|| defined(__ARM_ARCH_6ZK__)    || \
41         defined(__ARM_ARCH_6T2__)
42 #    define __ARM_ARCH__ 6
43 #   elif defined(__ARM_ARCH_5__) || defined(__ARM_ARCH_5T__)     || \
44         defined(__ARM_ARCH_5E__)|| defined(__ARM_ARCH_5TE__)    || \
45         defined(__ARM_ARCH_5TEJ__)
46 #    define __ARM_ARCH__ 5
47 #   elif defined(__ARM_ARCH_4__) || defined(__ARM_ARCH_4T__)
48 #    define __ARM_ARCH__ 4
49 #   else
50 #    error "unsupported ARM architecture"
51 #   endif
52 #  endif
53 # endif
54
55 # if !defined(__ARM_MAX_ARCH__)
56 #  define __ARM_MAX_ARCH__ __ARM_ARCH__
57 # endif
58
59 # if __ARM_MAX_ARCH__<__ARM_ARCH__
60 #  error "__ARM_MAX_ARCH__ can't be less than __ARM_ARCH__"
61 # elif __ARM_MAX_ARCH__!=__ARM_ARCH__
62 #  if __ARM_ARCH__<7 && __ARM_MAX_ARCH__>=7 && defined(__ARMEB__)
63 #   error "can't build universal big-endian binary"
64 #  endif
65 # endif
66
67 # ifndef __ASSEMBLER__
68 extern unsigned int OPENSSL_armcap_P;
69 extern unsigned int OPENSSL_arm_midr;
70 extern unsigned int OPENSSL_armv8_rsa_neonized;
71 # endif
72
73 # define ARMV7_NEON      (1<<0)
74 # define ARMV7_TICK      (1<<1)
75 # define ARMV8_AES       (1<<2)
76 # define ARMV8_SHA1      (1<<3)
77 # define ARMV8_SHA256    (1<<4)
78 # define ARMV8_PMULL     (1<<5)
79 # define ARMV8_SHA512    (1<<6)
80 # define ARMV8_CPUID     (1<<7)
81 # define ARMV8_RNG       (1<<8)
82 # define ARMV8_SM3       (1<<9)
83 # define ARMV8_SM4       (1<<10)
84 # define ARMV8_SHA3      (1<<11)
85 # define ARMV8_UNROLL8_EOR3      (1<<12)
86
87 /*
88  * MIDR_EL1 system register
89  *
90  * 63___ _ ___32_31___ _ ___24_23_____20_19_____16_15__ _ __4_3_______0
91  * |            |             |         |         |          |        |
92  * |RES0        | Implementer | Variant | Arch    | PartNum  |Revision|
93  * |____ _ _____|_____ _ _____|_________|_______ _|____ _ ___|________|
94  *
95  */
96
97 # define ARM_CPU_IMP_ARM           0x41
98
99 # define ARM_CPU_PART_CORTEX_A72   0xD08
100 # define ARM_CPU_PART_N1           0xD0C
101 # define ARM_CPU_PART_V1           0xD40
102
103 # define MIDR_PARTNUM_SHIFT       4
104 # define MIDR_PARTNUM_MASK        (0xfff << MIDR_PARTNUM_SHIFT)
105 # define MIDR_PARTNUM(midr)       \
106            (((midr) & MIDR_PARTNUM_MASK) >> MIDR_PARTNUM_SHIFT)
107
108 # define MIDR_IMPLEMENTER_SHIFT   24
109 # define MIDR_IMPLEMENTER_MASK    (0xff << MIDR_IMPLEMENTER_SHIFT)
110 # define MIDR_IMPLEMENTER(midr)   \
111            (((midr) & MIDR_IMPLEMENTER_MASK) >> MIDR_IMPLEMENTER_SHIFT)
112
113 # define MIDR_ARCHITECTURE_SHIFT  16
114 # define MIDR_ARCHITECTURE_MASK   (0xf << MIDR_ARCHITECTURE_SHIFT)
115 # define MIDR_ARCHITECTURE(midr)  \
116            (((midr) & MIDR_ARCHITECTURE_MASK) >> MIDR_ARCHITECTURE_SHIFT)
117
118 # define MIDR_CPU_MODEL_MASK \
119            (MIDR_IMPLEMENTER_MASK | \
120             MIDR_PARTNUM_MASK     | \
121             MIDR_ARCHITECTURE_MASK)
122
123 # define MIDR_CPU_MODEL(imp, partnum) \
124            (((imp)     << MIDR_IMPLEMENTER_SHIFT)  | \
125             (0xf       << MIDR_ARCHITECTURE_SHIFT) | \
126             ((partnum) << MIDR_PARTNUM_SHIFT))
127
128 # define MIDR_IS_CPU_MODEL(midr, imp, partnum) \
129            (((midr) & MIDR_CPU_MODEL_MASK) == MIDR_CPU_MODEL(imp, partnum))
130
131 #if defined(__ASSEMBLER__)
132
133    /*
134     * Support macros for
135     *   - Armv8.3-A Pointer Authentication and
136     *   - Armv8.5-A Branch Target Identification
137     * features which require emitting a .note.gnu.property section with the
138     * appropriate architecture-dependent feature bits set.
139     * Read more: "ELF for the ArmĀ® 64-bit Architecture"
140     */
141
142 #  if defined(__ARM_FEATURE_BTI_DEFAULT) && __ARM_FEATURE_BTI_DEFAULT == 1
143 #   define GNU_PROPERTY_AARCH64_BTI (1 << 0)   /* Has Branch Target Identification */
144 #   define AARCH64_VALID_CALL_TARGET hint #34  /* BTI 'c' */
145 #  else
146 #   define GNU_PROPERTY_AARCH64_BTI 0  /* No Branch Target Identification */
147 #   define AARCH64_VALID_CALL_TARGET
148 #  endif
149
150 #  if defined(__ARM_FEATURE_PAC_DEFAULT) && \
151        (__ARM_FEATURE_PAC_DEFAULT & 1) == 1  /* Signed with A-key */
152 #   define GNU_PROPERTY_AARCH64_POINTER_AUTH \
153      (1 << 1)                                       /* Has Pointer Authentication */
154 #   define AARCH64_SIGN_LINK_REGISTER hint #25      /* PACIASP */
155 #   define AARCH64_VALIDATE_LINK_REGISTER hint #29  /* AUTIASP */
156 #  elif defined(__ARM_FEATURE_PAC_DEFAULT) && \
157        (__ARM_FEATURE_PAC_DEFAULT & 2) == 2  /* Signed with B-key */
158 #   define GNU_PROPERTY_AARCH64_POINTER_AUTH \
159      (1 << 1)                                       /* Has Pointer Authentication */
160 #   define AARCH64_SIGN_LINK_REGISTER hint #27      /* PACIBSP */
161 #   define AARCH64_VALIDATE_LINK_REGISTER hint #31  /* AUTIBSP */
162 #  else
163 #   define GNU_PROPERTY_AARCH64_POINTER_AUTH 0  /* No Pointer Authentication */
164 #   if GNU_PROPERTY_AARCH64_BTI != 0
165 #    define AARCH64_SIGN_LINK_REGISTER AARCH64_VALID_CALL_TARGET
166 #   else
167 #    define AARCH64_SIGN_LINK_REGISTER
168 #   endif
169 #   define AARCH64_VALIDATE_LINK_REGISTER
170 #  endif
171
172 #  if GNU_PROPERTY_AARCH64_POINTER_AUTH != 0 || GNU_PROPERTY_AARCH64_BTI != 0
173     .pushsection .note.gnu.property, "a";
174     .balign 8;
175     .long 4;
176     .long 0x10;
177     .long 0x5;
178     .asciz "GNU";
179     .long 0xc0000000; /* GNU_PROPERTY_AARCH64_FEATURE_1_AND */
180     .long 4;
181     .long (GNU_PROPERTY_AARCH64_POINTER_AUTH | GNU_PROPERTY_AARCH64_BTI);
182     .long 0;
183     .popsection;
184 #  endif
185
186 # endif  /* defined __ASSEMBLER__ */
187
188 # define IS_CPU_SUPPORT_UNROLL8_EOR3() \
189            (OPENSSL_armcap_P & ARMV8_UNROLL8_EOR3)
190
191 #endif