]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/macros.h
Add deprecation macro for 3.1 and deprecate OPENSSL_LH_stats
[thirdparty/openssl.git] / include / openssl / macros.h
CommitLineData
e039ca38 1/*
a28d06f3 2 * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
e039ca38
RL
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
d59068bd
F
10#ifndef OPENSSL_MACROS_H
11# define OPENSSL_MACROS_H
12# pragma once
13
d6e9ddac 14#include <openssl/opensslconf.h>
a6a4d0ac 15#include <openssl/opensslv.h>
d6e9ddac 16
e039ca38 17
932748fe
DDO
18/* Helper macros for CPP string composition */
19# define OPENSSL_MSTR_HELPER(x) #x
20# define OPENSSL_MSTR(x) OPENSSL_MSTR_HELPER(x)
21
e039ca38 22/*
44fde441 23 * Sometimes OPENSSL_NO_xxx ends up with an empty file and some compilers
e039ca38
RL
24 * don't like that. This will hopefully silence them.
25 */
26# define NON_EMPTY_TRANSLATION_UNIT static void *dummy = &dummy;
27
28/*
a6a4d0ac 29 * Generic deprecation macro
abd9d035 30 *
6fbb89fb
RL
31 * If OPENSSL_SUPPRESS_DEPRECATED is defined, then OSSL_DEPRECATED and
32 * OSSL_DEPRECATED_FOR become no-ops
e039ca38 33 */
abd9d035 34# ifndef OSSL_DEPRECATED
6fbb89fb 35# undef OSSL_DEPRECATED_FOR
67b8f5bd 36# ifndef OPENSSL_SUPPRESS_DEPRECATED
f044964e
RL
37# if defined(_MSC_VER)
38 /*
39 * MSVC supports __declspec(deprecated) since MSVC 2003 (13.10),
40 * and __declspec(deprecated(message)) since MSVC 2005 (14.00)
41 */
42# if _MSC_VER >= 1400
43# define OSSL_DEPRECATED(since) \
44 __declspec(deprecated("Since OpenSSL " # since))
45# define OSSL_DEPRECATED_FOR(since, message) \
46 __declspec(deprecated("Since OpenSSL " # since ";" message))
47# elif _MSC_VER >= 1310
48# define OSSL_DEPRECATED(since) __declspec(deprecated)
49# define OSSL_DEPRECATED_FOR(since, message) __declspec(deprecated)
50# endif
51# elif defined(__GNUC__)
6fbb89fb
RL
52 /*
53 * According to GCC documentation, deprecations with message appeared in
54 * GCC 4.5.0
55 */
56# if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
57# define OSSL_DEPRECATED(since) \
58 __attribute__((deprecated("Since OpenSSL " # since)))
59# define OSSL_DEPRECATED_FOR(since, message) \
60 __attribute__((deprecated("Since OpenSSL " # since ";" message)))
61# elif __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ > 0)
62# define OSSL_DEPRECATED(since) __attribute__((deprecated))
63# define OSSL_DEPRECATED_FOR(since, message) __attribute__((deprecated))
67b8f5bd
MC
64# endif
65# elif defined(__SUNPRO_C)
66# if (__SUNPRO_C >= 0x5130)
6fbb89fb
RL
67# define OSSL_DEPRECATED(since) __attribute__ ((deprecated))
68# define OSSL_DEPRECATED_FOR(since, message) __attribute__ ((deprecated))
67b8f5bd 69# endif
e039ca38
RL
70# endif
71# endif
72# endif
73
62a36143
MC
74/*
75 * Still not defined? Then define no-op macros. This means these macros
76 * are unsuitable for use in a typedef.
77 */
abd9d035 78# ifndef OSSL_DEPRECATED
62a36143
MC
79# define OSSL_DEPRECATED(since) extern
80# define OSSL_DEPRECATED_FOR(since, message) extern
abd9d035
RL
81# endif
82
e039ca38 83/*
a6a4d0ac
RL
84 * Applications should use -DOPENSSL_API_COMPAT=<version> to suppress the
85 * declarations of functions deprecated in or before <version>. If this is
86 * undefined, the value of the macro OPENSSL_CONFIGURED_API (defined in
87 * <openssl/opensslconf.h>) is the default.
88 *
89 * For any version number up until version 1.1.x, <version> is expected to be
90 * the calculated version number 0xMNNFFPPSL.
91 * For version numbers 3.0 and on, <version> is expected to be a computation
92 * of the major and minor numbers in decimal using this formula:
93 *
94 * MAJOR * 10000 + MINOR * 100
e039ca38 95 *
a6a4d0ac 96 * So version 3.0 becomes 30000, version 3.2 becomes 30200, etc.
e039ca38
RL
97 */
98
a6a4d0ac
RL
99/*
100 * We use the OPENSSL_API_COMPAT value to define API level macros. These
101 * macros are used to enable or disable features at that API version boundary.
102 */
103
104# ifdef OPENSSL_API_LEVEL
105# error "OPENSSL_API_LEVEL must not be defined by application"
e039ca38
RL
106# endif
107
a6a4d0ac
RL
108/*
109 * We figure out what API level was intended by simple numeric comparison.
110 * The lowest old style number we recognise is 0x00908000L, so we take some
111 * safety margin and assume that anything below 0x00900000L is a new style
112 * number. This allows new versions up to and including v943.71.83.
113 */
114# ifdef OPENSSL_API_COMPAT
115# if OPENSSL_API_COMPAT < 0x900000L
116# define OPENSSL_API_LEVEL (OPENSSL_API_COMPAT)
e039ca38 117# else
a6a4d0ac
RL
118# define OPENSSL_API_LEVEL \
119 (((OPENSSL_API_COMPAT >> 28) & 0xF) * 10000 \
120 + ((OPENSSL_API_COMPAT >> 20) & 0xFF) * 100 \
121 + ((OPENSSL_API_COMPAT >> 12) & 0xFF))
e039ca38
RL
122# endif
123# endif
124
125/*
a6a4d0ac
RL
126 * If OPENSSL_API_COMPAT wasn't given, we use default numbers to set
127 * the API compatibility level.
e039ca38 128 */
a6a4d0ac
RL
129# ifndef OPENSSL_API_LEVEL
130# if OPENSSL_CONFIGURED_API > 0
131# define OPENSSL_API_LEVEL (OPENSSL_CONFIGURED_API)
132# else
133# define OPENSSL_API_LEVEL \
134 (OPENSSL_VERSION_MAJOR * 10000 + OPENSSL_VERSION_MINOR * 100)
135# endif
136# endif
d6e9ddac 137
a6a4d0ac
RL
138# if OPENSSL_API_LEVEL > OPENSSL_CONFIGURED_API
139# error "The requested API level higher than the configured API compatibility level"
e039ca38
RL
140# endif
141
a6a4d0ac
RL
142/*
143 * Check of sane values.
144 */
145/* Can't go higher than the current version. */
146# if OPENSSL_API_LEVEL > (OPENSSL_VERSION_MAJOR * 10000 + OPENSSL_VERSION_MINOR * 100)
147# error "OPENSSL_API_COMPAT expresses an impossible API compatibility level"
148# endif
149/* OpenSSL will have no version 2.y.z */
150# if OPENSSL_API_LEVEL < 30000 && OPENSSL_API_LEVEL >= 20000
151# error "OPENSSL_API_COMPAT expresses an impossible API compatibility level"
e039ca38 152# endif
a6a4d0ac
RL
153/* Below 0.9.8 is unacceptably low */
154# if OPENSSL_API_LEVEL < 908
155# error "OPENSSL_API_COMPAT expresses an impossible API compatibility level"
156# endif
157
158/*
77c30753
RL
159 * Define macros for deprecation and simulated removal purposes.
160 *
161 * The macros OSSL_DEPRECATED_{major}_{minor} are always defined for
162 * all OpenSSL versions we care for. They can be used as attributes
163 * in function declarations where appropriate.
164 *
165 * The macros OPENSSL_NO_DEPRECATED_{major}_{minor} are defined for
166 * all OpenSSL versions up to or equal to the version given with
167 * OPENSSL_API_COMPAT. They are used as guards around anything that's
168 * deprecated up to that version, as an effect of the developer option
169 * 'no-deprecated'.
a6a4d0ac
RL
170 */
171
172# undef OPENSSL_NO_DEPRECATED_3_0
173# undef OPENSSL_NO_DEPRECATED_1_1_1
174# undef OPENSSL_NO_DEPRECATED_1_1_0
175# undef OPENSSL_NO_DEPRECATED_1_0_2
176# undef OPENSSL_NO_DEPRECATED_1_0_1
177# undef OPENSSL_NO_DEPRECATED_1_0_0
178# undef OPENSSL_NO_DEPRECATED_0_9_8
e039ca38 179
5317b6ee
HL
180# if OPENSSL_API_LEVEL >= 30100
181# ifndef OPENSSL_NO_DEPRECATED
182# define OSSL_DEPRECATEDIN_3_1 OSSL_DEPRECATED(3.1)
183# define OSSL_DEPRECATEDIN_3_1_FOR(msg) OSSL_DEPRECATED_FOR(3.1, msg)
184# else
185# define OPENSSL_NO_DEPRECATED_3_1
186# endif
187# else
188# define OSSL_DEPRECATEDIN_3_1
189# define OSSL_DEPRECATEDIN_3_1_FOR(msg)
190# endif
a6a4d0ac
RL
191# if OPENSSL_API_LEVEL >= 30000
192# ifndef OPENSSL_NO_DEPRECATED
77c30753
RL
193# define OSSL_DEPRECATEDIN_3_0 OSSL_DEPRECATED(3.0)
194# define OSSL_DEPRECATEDIN_3_0_FOR(msg) OSSL_DEPRECATED_FOR(3.0, msg)
a6a4d0ac 195# else
a6a4d0ac
RL
196# define OPENSSL_NO_DEPRECATED_3_0
197# endif
e039ca38 198# else
77c30753
RL
199# define OSSL_DEPRECATEDIN_3_0
200# define OSSL_DEPRECATEDIN_3_0_FOR(msg)
e039ca38 201# endif
a6a4d0ac
RL
202# if OPENSSL_API_LEVEL >= 10101
203# ifndef OPENSSL_NO_DEPRECATED
77c30753
RL
204# define OSSL_DEPRECATEDIN_1_1_1 OSSL_DEPRECATED(1.1.1)
205# define OSSL_DEPRECATEDIN_1_1_1_FOR(msg) OSSL_DEPRECATED_FOR(1.1.1, msg)
a6a4d0ac 206# else
a6a4d0ac
RL
207# define OPENSSL_NO_DEPRECATED_1_1_1
208# endif
e039ca38 209# else
77c30753
RL
210# define OSSL_DEPRECATEDIN_1_1_1
211# define OSSL_DEPRECATEDIN_1_1_1_FOR(msg)
e039ca38 212# endif
a6a4d0ac
RL
213# if OPENSSL_API_LEVEL >= 10100
214# ifndef OPENSSL_NO_DEPRECATED
77c30753
RL
215# define OSSL_DEPRECATEDIN_1_1_0 OSSL_DEPRECATED(1.1.0)
216# define OSSL_DEPRECATEDIN_1_1_0_FOR(msg) OSSL_DEPRECATED_FOR(1.1.0, msg)
a6a4d0ac 217# else
a6a4d0ac
RL
218# define OPENSSL_NO_DEPRECATED_1_1_0
219# endif
e039ca38 220# else
77c30753
RL
221# define OSSL_DEPRECATEDIN_1_1_0
222# define OSSL_DEPRECATEDIN_1_1_0_FOR(msg)
e039ca38 223# endif
a6a4d0ac
RL
224# if OPENSSL_API_LEVEL >= 10002
225# ifndef OPENSSL_NO_DEPRECATED
77c30753
RL
226# define OSSL_DEPRECATEDIN_1_0_2 OSSL_DEPRECATED(1.0.2)
227# define OSSL_DEPRECATEDIN_1_0_2_FOR(msg) OSSL_DEPRECATED_FOR(1.0.2, msg)
a6a4d0ac 228# else
a6a4d0ac
RL
229# define OPENSSL_NO_DEPRECATED_1_0_2
230# endif
231# else
77c30753
RL
232# define OSSL_DEPRECATEDIN_1_0_2
233# define OSSL_DEPRECATEDIN_1_0_2_FOR(msg)
a6a4d0ac
RL
234# endif
235# if OPENSSL_API_LEVEL >= 10001
236# ifndef OPENSSL_NO_DEPRECATED
77c30753
RL
237# define OSSL_DEPRECATEDIN_1_0_1 OSSL_DEPRECATED(1.0.1)
238# define OSSL_DEPRECATEDIN_1_0_1_FOR(msg) OSSL_DEPRECATED_FOR(1.0.1, msg)
a6a4d0ac 239# else
a6a4d0ac
RL
240# define OPENSSL_NO_DEPRECATED_1_0_1
241# endif
242# else
77c30753
RL
243# define OSSL_DEPRECATEDIN_1_0_1
244# define OSSL_DEPRECATEDIN_1_0_1_FOR(msg)
a6a4d0ac
RL
245# endif
246# if OPENSSL_API_LEVEL >= 10000
247# ifndef OPENSSL_NO_DEPRECATED
77c30753
RL
248# define OSSL_DEPRECATEDIN_1_0_0 OSSL_DEPRECATED(1.0.0)
249# define OSSL_DEPRECATEDIN_1_0_0_FOR(msg) OSSL_DEPRECATED_FOR(1.0.0, msg)
a6a4d0ac 250# else
a6a4d0ac
RL
251# define OPENSSL_NO_DEPRECATED_1_0_0
252# endif
253# else
77c30753
RL
254# define OSSL_DEPRECATEDIN_1_0_0
255# define OSSL_DEPRECATEDIN_1_0_0_FOR(msg)
a6a4d0ac
RL
256# endif
257# if OPENSSL_API_LEVEL >= 908
258# ifndef OPENSSL_NO_DEPRECATED
77c30753
RL
259# define OSSL_DEPRECATEDIN_0_9_8 OSSL_DEPRECATED(0.9.8)
260# define OSSL_DEPRECATEDIN_0_9_8_FOR(msg) OSSL_DEPRECATED_FOR(0.9.8, msg)
a6a4d0ac 261# else
a6a4d0ac
RL
262# define OPENSSL_NO_DEPRECATED_0_9_8
263# endif
264# else
77c30753
RL
265# define OSSL_DEPRECATEDIN_0_9_8
266# define OSSL_DEPRECATEDIN_0_9_8_FOR(msg)
a6a4d0ac
RL
267# endif
268
269/*
270 * Make our own variants of __FILE__ and __LINE__, depending on configuration
271 */
e039ca38
RL
272
273# ifndef OPENSSL_FILE
274# ifdef OPENSSL_NO_FILENAMES
275# define OPENSSL_FILE ""
276# define OPENSSL_LINE 0
277# else
278# define OPENSSL_FILE __FILE__
279# define OPENSSL_LINE __LINE__
280# endif
281# endif
282
ec87a649
RL
283/*
284 * __func__ was standardized in C99, so for any compiler that claims
285 * to implement that language level or newer, we assume we can safely
286 * use that symbol.
287 *
288 * GNU C also provides __FUNCTION__ since version 2, which predates
289 * C99. We can, however, only use this if __STDC_VERSION__ exists,
290 * as it's otherwise not allowed according to ISO C standards (C90).
291 * (compiling with GNU C's -pedantic tells us so)
292 *
293 * If none of the above applies, we check if the compiler is MSVC,
294 * and use __FUNCTION__ if that's the case.
ec87a649 295 */
e039ca38 296# ifndef OPENSSL_FUNC
ec87a649
RL
297# if defined(__STDC_VERSION__)
298# if __STDC_VERSION__ >= 199901L
299# define OPENSSL_FUNC __func__
300# elif defined(__GNUC__) && __GNUC__ >= 2
301# define OPENSSL_FUNC __FUNCTION__
302# endif
303# elif defined(_MSC_VER)
304# define OPENSSL_FUNC __FUNCTION__
15dbf3a5
RL
305# endif
306/*
307 * If all these possibilities are exhausted, we give up and use a
308 * static string.
309 */
310# ifndef OPENSSL_FUNC
e039ca38
RL
311# define OPENSSL_FUNC "(unknown function)"
312# endif
313# endif
314
315#endif /* OPENSSL_MACROS_H */