blob: 297240ec3387a4896b6726753cc1a6861b2df729 [file] [log] [blame]
David Benjamina70c75c2014-09-11 19:11:15 -04001/* Copyright (c) 2014, Google Inc.
2 *
3 * Permission to use, copy, modify, and/or distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies.
6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
15#include <openssl/crypto.h>
16
David Benjamin20c37312015-11-11 21:33:18 -080017#include <openssl/cpu.h>
18
David Benjamina70c75c2014-09-11 19:11:15 -040019#include "internal.h"
20
Adam Langley3e652652015-01-09 15:44:37 -080021
Adam Langley6a7cfbe2015-10-16 15:46:46 -070022#if !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_STATIC_ARMCAP) && \
Adam Langley3e652652015-01-09 15:44:37 -080023 (defined(OPENSSL_X86) || defined(OPENSSL_X86_64) || \
Adam Langley4467e592016-09-23 12:47:24 -070024 defined(OPENSSL_ARM) || defined(OPENSSL_AARCH64) || \
25 defined(OPENSSL_PPC64LE))
David Benjamin808f8322017-08-18 14:06:02 -040026// x86, x86_64, the ARMs and ppc64le need to record the result of a
27// cpuid/getauxval call for the asm to work correctly, unless compiled without
28// asm code.
Adam Langley588d2522014-09-19 10:15:33 -070029#define NEED_CPUID
David Benjamina70c75c2014-09-11 19:11:15 -040030
Adam Langley588d2522014-09-19 10:15:33 -070031#else
32
David Benjamin808f8322017-08-18 14:06:02 -040033// Otherwise, don't emit a static initialiser.
Adam Langley588d2522014-09-19 10:15:33 -070034
35#if !defined(BORINGSSL_NO_STATIC_INITIALIZER)
David Benjamina70c75c2014-09-11 19:11:15 -040036#define BORINGSSL_NO_STATIC_INITIALIZER
37#endif
38
Adam Langleyc1615712018-11-27 14:07:12 -080039#endif // !NO_ASM && !STATIC_ARMCAP &&
40 // (X86 || X86_64 || ARM || AARCH64 || PPC64LE)
Adam Langley3e652652015-01-09 15:44:37 -080041
42
David Benjamin38636ab2017-10-18 22:23:09 -040043// Our assembly does not use the GOT to reference symbols, which means
44// references to visible symbols will often require a TEXTREL. This is
45// undesirable, so all assembly-referenced symbols should be hidden. CPU
46// capabilities are the only such symbols defined in C. Explicitly hide them,
47// rather than rely on being built with -fvisibility=hidden.
48#if defined(OPENSSL_WINDOWS)
49#define HIDDEN
50#else
51#define HIDDEN __attribute__((visibility("hidden")))
52#endif
53
54
David Benjamin808f8322017-08-18 14:06:02 -040055// The capability variables are defined in this file in order to work around a
56// linker bug. When linking with a .a, if no symbols in a .o are referenced
57// then the .o is discarded, even if it has constructor functions.
58//
59// This still means that any binaries that don't include some functionality
60// that tests the capability values will still skip the constructor but, so
61// far, the init constructor function only sets the capability variables.
Adam Langley3e652652015-01-09 15:44:37 -080062
David Benjamin0de64a72019-09-26 15:59:40 -040063#if defined(BORINGSSL_DISPATCH_TEST)
David Benjamin808f8322017-08-18 14:06:02 -040064// This value must be explicitly initialised to zero in order to work around a
65// bug in libtool or the linker on OS X.
66//
67// If not initialised then it becomes a "common symbol". When put into an
68// archive, linking on OS X will fail to resolve common symbols. By
69// initialising it to zero, it becomes a "data symbol", which isn't so
70// affected.
Adam Langleyc1615712018-11-27 14:07:12 -080071HIDDEN uint8_t BORINGSSL_function_hit[7] = {0};
72#endif
73
74#if defined(OPENSSL_X86) || defined(OPENSSL_X86_64)
75
76// This value must be explicitly initialized to zero. See similar comment above.
David Benjamin38636ab2017-10-18 22:23:09 -040077HIDDEN uint32_t OPENSSL_ia32cap_P[4] = {0};
Adam Langleyb18cb6a2017-04-04 11:08:28 -070078
79#elif defined(OPENSSL_PPC64LE)
80
David Benjamin38636ab2017-10-18 22:23:09 -040081HIDDEN unsigned long OPENSSL_ppc64le_hwcap2 = 0;
Adam Langleyb18cb6a2017-04-04 11:08:28 -070082
Adam Langley3e652652015-01-09 15:44:37 -080083#elif defined(OPENSSL_ARM) || defined(OPENSSL_AARCH64)
84
Adam Langley73415b62015-08-24 18:03:17 -070085#include <openssl/arm_arch.h>
Adam Langley3e652652015-01-09 15:44:37 -080086
Adam Langley6a7cfbe2015-10-16 15:46:46 -070087#if defined(OPENSSL_STATIC_ARMCAP)
88
David Benjamin38636ab2017-10-18 22:23:09 -040089HIDDEN uint32_t OPENSSL_armcap_P =
Adam Langley2745ef92018-11-12 11:57:32 -080090#if defined(OPENSSL_STATIC_ARMCAP_NEON) || \
91 (defined(__ARM_NEON__) || defined(__ARM_NEON))
David Benjamin85003902016-02-23 18:04:15 -050092 ARMV7_NEON |
Adam Langley6a7cfbe2015-10-16 15:46:46 -070093#endif
David Benjamin3b33f3e2017-06-08 16:53:28 -040094#if defined(OPENSSL_STATIC_ARMCAP_AES) || defined(__ARM_FEATURE_CRYPTO)
Adam Langley6a7cfbe2015-10-16 15:46:46 -070095 ARMV8_AES |
96#endif
David Benjamin3b33f3e2017-06-08 16:53:28 -040097#if defined(OPENSSL_STATIC_ARMCAP_SHA1) || defined(__ARM_FEATURE_CRYPTO)
Adam Langley6a7cfbe2015-10-16 15:46:46 -070098 ARMV8_SHA1 |
99#endif
David Benjamin3b33f3e2017-06-08 16:53:28 -0400100#if defined(OPENSSL_STATIC_ARMCAP_SHA256) || defined(__ARM_FEATURE_CRYPTO)
Adam Langley6a7cfbe2015-10-16 15:46:46 -0700101 ARMV8_SHA256 |
102#endif
David Benjamin3b33f3e2017-06-08 16:53:28 -0400103#if defined(OPENSSL_STATIC_ARMCAP_PMULL) || defined(__ARM_FEATURE_CRYPTO)
Adam Langley6a7cfbe2015-10-16 15:46:46 -0700104 ARMV8_PMULL |
105#endif
106 0;
107
Adam Langley3e652652015-01-09 15:44:37 -0800108#else
David Benjamin38636ab2017-10-18 22:23:09 -0400109HIDDEN uint32_t OPENSSL_armcap_P = 0;
David Benjamin6ce93cc2018-10-31 14:48:23 -0500110
111uint32_t *OPENSSL_get_armcap_pointer_for_test(void) {
112 return &OPENSSL_armcap_P;
113}
Adam Langley3e652652015-01-09 15:44:37 -0800114#endif
115
116#endif
117
Adam Langleyfd499932017-04-04 14:21:43 -0700118#if defined(BORINGSSL_FIPS)
David Benjamin808f8322017-08-18 14:06:02 -0400119// In FIPS mode, the power-on self-test function calls |CRYPTO_library_init|
120// because we have to ensure that CPUID detection occurs first.
Adam Langleyfd499932017-04-04 14:21:43 -0700121#define BORINGSSL_NO_STATIC_INITIALIZER
122#endif
Adam Langley588d2522014-09-19 10:15:33 -0700123
David Benjamin93a5b442015-11-19 11:39:46 -0500124#if defined(OPENSSL_WINDOWS) && !defined(BORINGSSL_NO_STATIC_INITIALIZER)
David Benjamina70c75c2014-09-11 19:11:15 -0400125#define OPENSSL_CDECL __cdecl
126#else
127#define OPENSSL_CDECL
128#endif
129
David Benjamin93a5b442015-11-19 11:39:46 -0500130#if defined(BORINGSSL_NO_STATIC_INITIALIZER)
131static CRYPTO_once_t once = CRYPTO_ONCE_INIT;
David Benjamine2568c42017-08-16 15:25:27 -0400132#elif defined(_MSC_VER)
David Benjamina70c75c2014-09-11 19:11:15 -0400133#pragma section(".CRT$XCU", read)
134static void __cdecl do_library_init(void);
135__declspec(allocate(".CRT$XCU")) void(*library_init_constructor)(void) =
136 do_library_init;
David Benjamin93a5b442015-11-19 11:39:46 -0500137#else
138static void do_library_init(void) __attribute__ ((constructor));
David Benjamina70c75c2014-09-11 19:11:15 -0400139#endif
David Benjamina70c75c2014-09-11 19:11:15 -0400140
David Benjamin808f8322017-08-18 14:06:02 -0400141// do_library_init is the actual initialization function. If
142// BORINGSSL_NO_STATIC_INITIALIZER isn't defined, this is set as a static
143// initializer. Otherwise, it is called by CRYPTO_library_init.
David Benjamina70c75c2014-09-11 19:11:15 -0400144static void OPENSSL_CDECL do_library_init(void) {
David Benjamin808f8322017-08-18 14:06:02 -0400145 // WARNING: this function may only configure the capability variables. See the
146 // note above about the linker bug.
Adam Langley588d2522014-09-19 10:15:33 -0700147#if defined(NEED_CPUID)
David Benjamina70c75c2014-09-11 19:11:15 -0400148 OPENSSL_cpuid_setup();
149#endif
150}
151
152void CRYPTO_library_init(void) {
David Benjamin808f8322017-08-18 14:06:02 -0400153 // TODO(davidben): It would be tidier if this build knob could be replaced
154 // with an internal lazy-init mechanism that would handle things correctly
155 // in-library. https://crbug.com/542879
David Benjamina70c75c2014-09-11 19:11:15 -0400156#if defined(BORINGSSL_NO_STATIC_INITIALIZER)
David Benjamin93a5b442015-11-19 11:39:46 -0500157 CRYPTO_once(&once, do_library_init);
David Benjamina70c75c2014-09-11 19:11:15 -0400158#endif
159}
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700160
Adam Langleyb83c6802016-05-03 09:16:21 -0700161int CRYPTO_is_confidential_build(void) {
162#if defined(BORINGSSL_CONFIDENTIAL)
163 return 1;
164#else
165 return 0;
166#endif
167}
168
Adam Langley4fac8d02016-05-16 13:44:40 -0700169int CRYPTO_has_asm(void) {
170#if defined(OPENSSL_NO_ASM)
171 return 0;
172#else
173 return 1;
174#endif
175}
176
David Benjamin5d626b22018-05-08 16:07:00 -0400177const char *SSLeay_version(int which) { return OpenSSL_version(which); }
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700178
David Benjamin5d626b22018-05-08 16:07:00 -0400179const char *OpenSSL_version(int which) {
David Benjamind6e31f62018-05-15 13:37:53 -0400180 switch (which) {
181 case OPENSSL_VERSION:
182 return "BoringSSL";
183 case OPENSSL_CFLAGS:
184 return "compiler: n/a";
185 case OPENSSL_BUILT_ON:
186 return "built on: n/a";
187 case OPENSSL_PLATFORM:
188 return "platform: n/a";
189 case OPENSSL_DIR:
190 return "OPENSSLDIR: n/a";
191 default:
192 return "not available";
David Benjamin5d626b22018-05-08 16:07:00 -0400193 }
David Benjamin5d626b22018-05-08 16:07:00 -0400194}
David Benjamin81f030b2016-08-12 14:48:19 -0400195
David Benjamin27e4c3b2018-04-12 18:31:36 -0400196unsigned long SSLeay(void) { return OPENSSL_VERSION_NUMBER; }
Adam Langley05ee4fd2015-08-02 09:35:44 -0700197
David Benjamin27e4c3b2018-04-12 18:31:36 -0400198unsigned long OpenSSL_version_num(void) { return OPENSSL_VERSION_NUMBER; }
David Benjamin81f030b2016-08-12 14:48:19 -0400199
David Benjamin27e4c3b2018-04-12 18:31:36 -0400200int CRYPTO_malloc_init(void) { return 1; }
201
202int OPENSSL_malloc_init(void) { return 1; }
Adam Langley05ee4fd2015-08-02 09:35:44 -0700203
204void ENGINE_load_builtin_engines(void) {}
David Benjamine5aa7912016-01-26 01:09:19 -0500205
David Benjamin27e4c3b2018-04-12 18:31:36 -0400206int ENGINE_register_all_complete(void) { return 1; }
Adam Langley27516f72016-07-12 10:26:56 -0700207
David Benjamine5aa7912016-01-26 01:09:19 -0500208void OPENSSL_load_builtin_modules(void) {}
David Benjamin81f030b2016-08-12 14:48:19 -0400209
210int OPENSSL_init_crypto(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings) {
211 CRYPTO_library_init();
212 return 1;
213}
David Benjaminbc3286b2018-08-13 17:52:48 -0500214
215void OPENSSL_cleanup(void) {}