blob: e98e249a7930605ab8dfbdcd7677cfc68ebe11c7 [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) || \
24 defined(OPENSSL_ARM) || defined(OPENSSL_AARCH64))
25/* x86, x86_64 and the ARMs need to record the result of a cpuid call for the
26 * asm to work correctly, unless compiled without asm code. */
Adam Langley588d2522014-09-19 10:15:33 -070027#define NEED_CPUID
David Benjamina70c75c2014-09-11 19:11:15 -040028
Adam Langley588d2522014-09-19 10:15:33 -070029#else
30
31/* Otherwise, don't emit a static initialiser. */
32
33#if !defined(BORINGSSL_NO_STATIC_INITIALIZER)
David Benjamina70c75c2014-09-11 19:11:15 -040034#define BORINGSSL_NO_STATIC_INITIALIZER
35#endif
36
Adam Langley3e652652015-01-09 15:44:37 -080037#endif /* !OPENSSL_NO_ASM && (OPENSSL_X86 || OPENSSL_X86_64 ||
38 OPENSSL_ARM || OPENSSL_AARCH64) */
39
40
41/* The capability variables are defined in this file in order to work around a
42 * linker bug. When linking with a .a, if no symbols in a .o are referenced
43 * then the .o is discarded, even if it has constructor functions.
44 *
45 * This still means that any binaries that don't include some functionality
46 * that tests the capability values will still skip the constructor but, so
47 * far, the init constructor function only sets the capability variables. */
48
49#if defined(OPENSSL_X86) || defined(OPENSSL_X86_64)
50/* This value must be explicitly initialised to zero in order to work around a
51 * bug in libtool or the linker on OS X.
52 *
53 * If not initialised then it becomes a "common symbol". When put into an
54 * archive, linking on OS X will fail to resolve common symbols. By
55 * initialising it to zero, it becomes a "data symbol", which isn't so
56 * affected. */
57uint32_t OPENSSL_ia32cap_P[4] = {0};
58#elif defined(OPENSSL_ARM) || defined(OPENSSL_AARCH64)
59
Adam Langley73415b62015-08-24 18:03:17 -070060#include <openssl/arm_arch.h>
Adam Langley3e652652015-01-09 15:44:37 -080061
Adam Langley6a7cfbe2015-10-16 15:46:46 -070062#if defined(OPENSSL_STATIC_ARMCAP)
63
64uint32_t OPENSSL_armcap_P =
65#if defined(OPENSSL_STATIC_ARMCAP_NEON) || defined(__ARM_NEON__)
David Benjamin85003902016-02-23 18:04:15 -050066 ARMV7_NEON |
Adam Langley6a7cfbe2015-10-16 15:46:46 -070067#endif
68#if defined(OPENSSL_STATIC_ARMCAP_AES)
69 ARMV8_AES |
70#endif
71#if defined(OPENSSL_STATIC_ARMCAP_SHA1)
72 ARMV8_SHA1 |
73#endif
74#if defined(OPENSSL_STATIC_ARMCAP_SHA256)
75 ARMV8_SHA256 |
76#endif
77#if defined(OPENSSL_STATIC_ARMCAP_PMULL)
78 ARMV8_PMULL |
79#endif
80 0;
81
Adam Langley3e652652015-01-09 15:44:37 -080082#else
David Benjamin85003902016-02-23 18:04:15 -050083uint32_t OPENSSL_armcap_P = 0;
Adam Langley3e652652015-01-09 15:44:37 -080084#endif
85
86#endif
87
Adam Langley588d2522014-09-19 10:15:33 -070088
David Benjamin93a5b442015-11-19 11:39:46 -050089#if defined(OPENSSL_WINDOWS) && !defined(BORINGSSL_NO_STATIC_INITIALIZER)
David Benjamina70c75c2014-09-11 19:11:15 -040090#define OPENSSL_CDECL __cdecl
91#else
92#define OPENSSL_CDECL
93#endif
94
David Benjamin93a5b442015-11-19 11:39:46 -050095#if defined(BORINGSSL_NO_STATIC_INITIALIZER)
96static CRYPTO_once_t once = CRYPTO_ONCE_INIT;
97#elif defined(OPENSSL_WINDOWS)
David Benjamina70c75c2014-09-11 19:11:15 -040098#pragma section(".CRT$XCU", read)
99static void __cdecl do_library_init(void);
100__declspec(allocate(".CRT$XCU")) void(*library_init_constructor)(void) =
101 do_library_init;
David Benjamin93a5b442015-11-19 11:39:46 -0500102#else
103static void do_library_init(void) __attribute__ ((constructor));
David Benjamina70c75c2014-09-11 19:11:15 -0400104#endif
David Benjamina70c75c2014-09-11 19:11:15 -0400105
106/* do_library_init is the actual initialization function. If
107 * BORINGSSL_NO_STATIC_INITIALIZER isn't defined, this is set as a static
108 * initializer. Otherwise, it is called by CRYPTO_library_init. */
109static void OPENSSL_CDECL do_library_init(void) {
Adam Langley3e652652015-01-09 15:44:37 -0800110 /* WARNING: this function may only configure the capability variables. See the
111 * note above about the linker bug. */
Adam Langley588d2522014-09-19 10:15:33 -0700112#if defined(NEED_CPUID)
David Benjamina70c75c2014-09-11 19:11:15 -0400113 OPENSSL_cpuid_setup();
114#endif
115}
116
117void CRYPTO_library_init(void) {
118 /* TODO(davidben): It would be tidier if this build knob could be replaced
119 * with an internal lazy-init mechanism that would handle things correctly
David Benjamin93a5b442015-11-19 11:39:46 -0500120 * in-library. https://crbug.com/542879 */
David Benjamina70c75c2014-09-11 19:11:15 -0400121#if defined(BORINGSSL_NO_STATIC_INITIALIZER)
David Benjamin93a5b442015-11-19 11:39:46 -0500122 CRYPTO_once(&once, do_library_init);
David Benjamina70c75c2014-09-11 19:11:15 -0400123#endif
124}
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700125
Adam Langleyb83c6802016-05-03 09:16:21 -0700126int CRYPTO_is_confidential_build(void) {
127#if defined(BORINGSSL_CONFIDENTIAL)
128 return 1;
129#else
130 return 0;
131#endif
132}
133
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700134const char *SSLeay_version(int unused) {
Adam Langleyb3a262c2015-05-19 16:30:20 -0700135 return "BoringSSL";
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700136}
137
Adam Langleyb3a262c2015-05-19 16:30:20 -0700138unsigned long SSLeay(void) {
139 return OPENSSL_VERSION_NUMBER;
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700140}
Adam Langley05ee4fd2015-08-02 09:35:44 -0700141
142int CRYPTO_malloc_init(void) {
143 return 1;
144}
145
146void ENGINE_load_builtin_engines(void) {}
David Benjamine5aa7912016-01-26 01:09:19 -0500147
148void OPENSSL_load_builtin_modules(void) {}
Adam Langley7a17ba22016-03-01 16:00:36 -0800149
150int FIPS_mode(void) { return 0; }