Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 1 | /* |
Bence Szépkúti | bb0cfeb | 2021-05-28 09:42:25 +0200 | [diff] [blame] | 2 | * Query Mbed TLS compile time configurations from mbedtls_config.h |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 3 | * |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 4 | * Copyright The Mbed TLS Contributors |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 5 | * 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 Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 18 | */ |
| 19 | |
Bence Szépkúti | c662b36 | 2021-05-27 11:25:03 +0200 | [diff] [blame] | 20 | #include "mbedtls/build_info.h" |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 21 | |
Gilles Peskine | c772b18 | 2021-01-12 15:55:10 +0100 | [diff] [blame] | 22 | #include "query_config.h" |
| 23 | |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 24 | #include "mbedtls/platform.h" |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 25 | |
Andres Amaya Garcia | c28da7e | 2018-10-29 18:58:41 +0000 | [diff] [blame] | 26 | /* |
| 27 | * Include all the headers with public APIs in case they define a macro to its |
Tom Cosgrove | b839c54 | 2022-07-26 11:54:08 +0100 | [diff] [blame] | 28 | * default value when that configuration is not set in mbedtls_config.h, or |
| 29 | * for PSA_WANT macros, in case they're auto-defined based on mbedtls_config.h |
| 30 | * rather than defined directly in crypto_config.h. |
Andres Amaya Garcia | c28da7e | 2018-10-29 18:58:41 +0000 | [diff] [blame] | 31 | */ |
Tom Cosgrove | b839c54 | 2022-07-26 11:54:08 +0100 | [diff] [blame] | 32 | #include "psa/crypto.h" |
| 33 | |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 34 | #include "mbedtls/aes.h" |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 35 | #include "mbedtls/aria.h" |
| 36 | #include "mbedtls/asn1.h" |
| 37 | #include "mbedtls/asn1write.h" |
| 38 | #include "mbedtls/base64.h" |
| 39 | #include "mbedtls/bignum.h" |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 40 | #include "mbedtls/camellia.h" |
| 41 | #include "mbedtls/ccm.h" |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 42 | #include "mbedtls/chacha20.h" |
| 43 | #include "mbedtls/chachapoly.h" |
| 44 | #include "mbedtls/cipher.h" |
| 45 | #include "mbedtls/cmac.h" |
| 46 | #include "mbedtls/ctr_drbg.h" |
| 47 | #include "mbedtls/debug.h" |
| 48 | #include "mbedtls/des.h" |
| 49 | #include "mbedtls/dhm.h" |
| 50 | #include "mbedtls/ecdh.h" |
| 51 | #include "mbedtls/ecdsa.h" |
| 52 | #include "mbedtls/ecjpake.h" |
| 53 | #include "mbedtls/ecp.h" |
| 54 | #include "mbedtls/entropy.h" |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 55 | #include "mbedtls/error.h" |
| 56 | #include "mbedtls/gcm.h" |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 57 | #include "mbedtls/hkdf.h" |
| 58 | #include "mbedtls/hmac_drbg.h" |
| 59 | #include "mbedtls/md.h" |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 60 | #include "mbedtls/md5.h" |
| 61 | #include "mbedtls/memory_buffer_alloc.h" |
| 62 | #include "mbedtls/net_sockets.h" |
| 63 | #include "mbedtls/nist_kw.h" |
| 64 | #include "mbedtls/oid.h" |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 65 | #include "mbedtls/pem.h" |
| 66 | #include "mbedtls/pk.h" |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 67 | #include "mbedtls/pkcs12.h" |
| 68 | #include "mbedtls/pkcs5.h" |
Daniel Axtens | f071024 | 2020-05-28 11:43:41 +1000 | [diff] [blame] | 69 | #if defined(MBEDTLS_HAVE_TIME) |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 70 | #include "mbedtls/platform_time.h" |
Daniel Axtens | f071024 | 2020-05-28 11:43:41 +1000 | [diff] [blame] | 71 | #endif |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 72 | #include "mbedtls/platform_util.h" |
| 73 | #include "mbedtls/poly1305.h" |
| 74 | #include "mbedtls/ripemd160.h" |
| 75 | #include "mbedtls/rsa.h" |
| 76 | #include "mbedtls/sha1.h" |
| 77 | #include "mbedtls/sha256.h" |
| 78 | #include "mbedtls/sha512.h" |
| 79 | #include "mbedtls/ssl.h" |
| 80 | #include "mbedtls/ssl_cache.h" |
| 81 | #include "mbedtls/ssl_ciphersuites.h" |
| 82 | #include "mbedtls/ssl_cookie.h" |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 83 | #include "mbedtls/ssl_ticket.h" |
| 84 | #include "mbedtls/threading.h" |
| 85 | #include "mbedtls/timing.h" |
| 86 | #include "mbedtls/version.h" |
| 87 | #include "mbedtls/x509.h" |
| 88 | #include "mbedtls/x509_crl.h" |
| 89 | #include "mbedtls/x509_crt.h" |
| 90 | #include "mbedtls/x509_csr.h" |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 91 | |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 92 | #include <string.h> |
| 93 | |
Andres Amaya Garcia | 27b3372 | 2018-12-05 10:47:31 +0000 | [diff] [blame] | 94 | /* |
| 95 | * Helper macros to convert a macro or its expansion into a string |
| 96 | * WARNING: This does not work for expanding function-like macros. However, |
| 97 | * Mbed TLS does not currently have configuration options used in this fashion. |
| 98 | */ |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 99 | #define MACRO_EXPANSION_TO_STR(macro) MACRO_NAME_TO_STR(macro) |
Andres Amaya Garcia | 27b3372 | 2018-12-05 10:47:31 +0000 | [diff] [blame] | 100 | #define MACRO_NAME_TO_STR(macro) \ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame^] | 101 | mbedtls_printf("%s", strlen( #macro "") > 0 ? #macro "\n" : "") |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 102 | |
Jerry Yu | 2e8b001 | 2021-12-10 20:29:02 +0800 | [diff] [blame] | 103 | #define STRINGIFY(macro) #macro |
Jerry Yu | 84e63a7 | 2021-12-06 13:40:37 +0800 | [diff] [blame] | 104 | #define OUTPUT_MACRO_NAME_VALUE(macro) mbedtls_printf( #macro "%s\n", \ |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame^] | 105 | (STRINGIFY(macro) "")[0] != 0 ? "=" STRINGIFY( \ |
| 106 | macro) : "") |
Jerry Yu | 84e63a7 | 2021-12-06 13:40:37 +0800 | [diff] [blame] | 107 | |
Andres Amaya Garcia | 17c53c5 | 2019-01-24 09:55:14 +0000 | [diff] [blame] | 108 | #if defined(_MSC_VER) |
| 109 | /* |
| 110 | * Visual Studio throws the warning 4003 because many Mbed TLS feature macros |
| 111 | * are defined empty. This means that from the preprocessor's point of view |
| 112 | * the macro MBEDTLS_EXPANSION_TO_STR is being invoked without arguments as |
| 113 | * some macros expand to nothing. We suppress that specific warning to get a |
| 114 | * clean build and to ensure that tests treating warnings as errors do not |
| 115 | * fail. |
| 116 | */ |
| 117 | #pragma warning(push) |
| 118 | #pragma warning(disable:4003) |
| 119 | #endif /* _MSC_VER */ |
| 120 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame^] | 121 | int query_config(const char *config) |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 122 | { |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame^] | 123 | CHECK_CONFIG /* If the symbol is not found, return an error */ |
| 124 | return 1; |
Andres Amaya Garcia | 88121a9 | 2018-10-16 22:00:13 +0100 | [diff] [blame] | 125 | } |
Andres Amaya Garcia | 17c53c5 | 2019-01-24 09:55:14 +0000 | [diff] [blame] | 126 | |
Gilles Peskine | 449bd83 | 2023-01-11 14:50:10 +0100 | [diff] [blame^] | 127 | void list_config(void) |
Jerry Yu | 84e63a7 | 2021-12-06 13:40:37 +0800 | [diff] [blame] | 128 | { |
| 129 | LIST_CONFIG |
| 130 | } |
Andres Amaya Garcia | 17c53c5 | 2019-01-24 09:55:14 +0000 | [diff] [blame] | 131 | #if defined(_MSC_VER) |
| 132 | #pragma warning(pop) |
| 133 | #endif /* _MSC_VER */ |