blob: ffa816eceeb355fd8ca0d9bf89370c628ac4231e [file] [log] [blame]
Andres Amaya Garcia88121a92018-10-16 22:00:13 +01001/*
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +02002 * Query Mbed TLS compile time configurations from mbedtls_config.h
Andres Amaya Garcia88121a92018-10-16 22:00:13 +01003 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
Andres Amaya Garcia88121a92018-10-16 22:00:13 +01005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010018 */
19
Bence Szépkútic662b362021-05-27 11:25:03 +020020#include "mbedtls/build_info.h"
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010021
Gilles Peskinec772b182021-01-12 15:55:10 +010022#include "query_config.h"
23
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010024#if defined(MBEDTLS_PLATFORM_C)
25#include "mbedtls/platform.h"
26#else
Andres Amaya Garcia2fdc2c22018-10-29 18:38:36 +000027#include <stdio.h>
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010028#define mbedtls_printf printf
29#endif /* MBEDTLS_PLATFORM_C */
30
Andres Amaya Garciac28da7e2018-10-29 18:58:41 +000031/*
32 * Include all the headers with public APIs in case they define a macro to its
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +020033 * default value when that configuration is not set in the mbedtls_config.h.
Andres Amaya Garciac28da7e2018-10-29 18:58:41 +000034 */
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010035#include "mbedtls/aes.h"
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010036#include "mbedtls/aria.h"
37#include "mbedtls/asn1.h"
38#include "mbedtls/asn1write.h"
39#include "mbedtls/base64.h"
40#include "mbedtls/bignum.h"
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010041#include "mbedtls/camellia.h"
42#include "mbedtls/ccm.h"
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010043#include "mbedtls/chacha20.h"
44#include "mbedtls/chachapoly.h"
45#include "mbedtls/cipher.h"
46#include "mbedtls/cmac.h"
47#include "mbedtls/ctr_drbg.h"
48#include "mbedtls/debug.h"
49#include "mbedtls/des.h"
50#include "mbedtls/dhm.h"
51#include "mbedtls/ecdh.h"
52#include "mbedtls/ecdsa.h"
53#include "mbedtls/ecjpake.h"
54#include "mbedtls/ecp.h"
55#include "mbedtls/entropy.h"
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010056#include "mbedtls/error.h"
57#include "mbedtls/gcm.h"
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010058#include "mbedtls/hkdf.h"
59#include "mbedtls/hmac_drbg.h"
60#include "mbedtls/md.h"
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010061#include "mbedtls/md5.h"
62#include "mbedtls/memory_buffer_alloc.h"
63#include "mbedtls/net_sockets.h"
64#include "mbedtls/nist_kw.h"
65#include "mbedtls/oid.h"
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010066#include "mbedtls/pem.h"
67#include "mbedtls/pk.h"
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010068#include "mbedtls/pkcs12.h"
69#include "mbedtls/pkcs5.h"
70#include "mbedtls/platform_time.h"
71#include "mbedtls/platform_util.h"
72#include "mbedtls/poly1305.h"
73#include "mbedtls/ripemd160.h"
74#include "mbedtls/rsa.h"
75#include "mbedtls/sha1.h"
76#include "mbedtls/sha256.h"
77#include "mbedtls/sha512.h"
78#include "mbedtls/ssl.h"
79#include "mbedtls/ssl_cache.h"
80#include "mbedtls/ssl_ciphersuites.h"
81#include "mbedtls/ssl_cookie.h"
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010082#include "mbedtls/ssl_ticket.h"
83#include "mbedtls/threading.h"
84#include "mbedtls/timing.h"
85#include "mbedtls/version.h"
86#include "mbedtls/x509.h"
87#include "mbedtls/x509_crl.h"
88#include "mbedtls/x509_crt.h"
89#include "mbedtls/x509_csr.h"
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010090
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010091#include <string.h>
92
Andres Amaya Garcia27b33722018-12-05 10:47:31 +000093/*
94 * Helper macros to convert a macro or its expansion into a string
95 * WARNING: This does not work for expanding function-like macros. However,
96 * Mbed TLS does not currently have configuration options used in this fashion.
97 */
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010098#define MACRO_EXPANSION_TO_STR(macro) MACRO_NAME_TO_STR(macro)
Andres Amaya Garcia27b33722018-12-05 10:47:31 +000099#define MACRO_NAME_TO_STR(macro) \
100 mbedtls_printf( "%s", strlen( #macro "" ) > 0 ? #macro "\n" : "" )
Andres Amaya Garcia88121a92018-10-16 22:00:13 +0100101
Andres Amaya Garcia17c53c52019-01-24 09:55:14 +0000102#if defined(_MSC_VER)
103/*
104 * Visual Studio throws the warning 4003 because many Mbed TLS feature macros
105 * are defined empty. This means that from the preprocessor's point of view
106 * the macro MBEDTLS_EXPANSION_TO_STR is being invoked without arguments as
107 * some macros expand to nothing. We suppress that specific warning to get a
108 * clean build and to ensure that tests treating warnings as errors do not
109 * fail.
110 */
111#pragma warning(push)
112#pragma warning(disable:4003)
113#endif /* _MSC_VER */
114
Andres Amaya Garcia88121a92018-10-16 22:00:13 +0100115int query_config( const char *config )
116{
Andres Amaya Garciac28da7e2018-10-29 18:58:41 +0000117CHECK_CONFIG /* If the symbol is not found, return an error */
118 return( 1 );
Andres Amaya Garcia88121a92018-10-16 22:00:13 +0100119}
Andres Amaya Garcia17c53c52019-01-24 09:55:14 +0000120
121#if defined(_MSC_VER)
122#pragma warning(pop)
123#endif /* _MSC_VER */