query_config.fmt 4.1 KB

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