2019-06-06 02:57:29 +00:00
|
|
|
idf_build_get_property(idf_target IDF_TARGET)
|
2020-03-26 02:53:50 +00:00
|
|
|
idf_build_get_property(python PYTHON)
|
2019-06-06 02:57:29 +00:00
|
|
|
|
2019-09-29 10:04:34 +00:00
|
|
|
idf_component_register(SRCS "esp_crt_bundle/esp_crt_bundle.c"
|
|
|
|
INCLUDE_DIRS "port/include" "mbedtls/include" "esp_crt_bundle/include"
|
2019-08-08 03:44:24 +00:00
|
|
|
REQUIRES lwip
|
2019-11-08 04:50:28 +00:00
|
|
|
PRIV_REQUIRES soc
|
2019-08-08 03:44:24 +00:00
|
|
|
)
|
2018-01-12 02:49:13 +00:00
|
|
|
|
2019-09-29 10:04:34 +00:00
|
|
|
if(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE)
|
|
|
|
set(bundle_name "x509_crt_bundle")
|
|
|
|
set(DEFAULT_CRT_DIR ${COMPONENT_DIR}/esp_crt_bundle)
|
|
|
|
|
|
|
|
# Generate custom certificate bundle using the generate_cert_bundle utility
|
|
|
|
set(GENERATE_CERT_BUNDLEPY ${python} ${COMPONENT_DIR}/esp_crt_bundle/gen_crt_bundle.py)
|
|
|
|
|
|
|
|
if(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL)
|
|
|
|
list(APPEND crt_paths ${DEFAULT_CRT_DIR}/cacrt_all.pem)
|
|
|
|
elseif(CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN)
|
|
|
|
list(APPEND crt_paths ${DEFAULT_CRT_DIR}/cacrt_all.pem)
|
|
|
|
list(APPEND args --filter ${DEFAULT_CRT_DIR}/cmn_crt_authorities.csv)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE)
|
|
|
|
get_filename_component(custom_bundle_path
|
|
|
|
${CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE_PATH} ABSOLUTE BASE_DIR "${project_dir}")
|
|
|
|
list(APPEND crt_paths ${custom_bundle_path})
|
|
|
|
|
|
|
|
endif()
|
|
|
|
list(APPEND args --input ${crt_paths} -q)
|
|
|
|
|
|
|
|
get_filename_component(crt_bundle
|
|
|
|
${bundle_name}
|
|
|
|
ABSOLUTE BASE_DIR "${CMAKE_CURRENT_BINARY_DIR}")
|
|
|
|
|
|
|
|
# Generate bundle according to config
|
|
|
|
add_custom_command(OUTPUT ${crt_bundle}
|
|
|
|
COMMAND ${GENERATE_CERT_BUNDLEPY} ${args}
|
|
|
|
DEPENDS ${custom_bundle_path}
|
|
|
|
VERBATIM)
|
|
|
|
|
|
|
|
add_custom_target(custom_bundle DEPENDS ${cert_bundle})
|
|
|
|
add_dependencies(${COMPONENT_LIB} custom_bundle)
|
|
|
|
|
|
|
|
|
|
|
|
target_add_binary_data(${COMPONENT_LIB} ${crt_bundle} BINARY)
|
|
|
|
set_property(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
|
|
|
|
APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES
|
|
|
|
"${crt_bundle}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2018-11-11 07:44:54 +00:00
|
|
|
# Only build mbedtls libraries
|
|
|
|
set(ENABLE_TESTING CACHE BOOL OFF)
|
|
|
|
set(ENABLE_PROGRAMS CACHE BOOL OFF)
|
|
|
|
|
|
|
|
# Needed to for include_next includes to work from within mbedtls
|
2019-05-10 02:53:08 +00:00
|
|
|
include_directories("${COMPONENT_DIR}/port/include")
|
2018-11-11 07:44:54 +00:00
|
|
|
|
|
|
|
# Import mbedtls library targets
|
|
|
|
add_subdirectory(mbedtls)
|
|
|
|
|
2018-11-08 05:56:33 +00:00
|
|
|
# Use port specific implementation of net_socket.c instead of one from mbedtls
|
|
|
|
get_target_property(src_tls mbedtls SOURCES)
|
|
|
|
list(REMOVE_ITEM src_tls net_sockets.c)
|
|
|
|
set_property(TARGET mbedtls PROPERTY SOURCES ${src_tls})
|
|
|
|
|
2018-11-11 07:44:54 +00:00
|
|
|
set(mbedtls_targets mbedtls mbedcrypto mbedx509)
|
|
|
|
|
|
|
|
# Add port files to mbedtls targets
|
2019-08-12 12:32:14 +00:00
|
|
|
target_sources(mbedtls PRIVATE "${COMPONENT_DIR}/port/mbedtls_debug.c"
|
|
|
|
"${COMPONENT_DIR}/port/net_sockets.c")
|
|
|
|
|
2019-09-29 10:04:34 +00:00
|
|
|
|
|
|
|
|
2019-08-16 09:06:34 +00:00
|
|
|
target_sources(mbedcrypto PRIVATE "${COMPONENT_DIR}/port/esp_hardware.c"
|
2019-08-12 12:32:14 +00:00
|
|
|
"${COMPONENT_DIR}/port/esp_mem.c"
|
2019-04-13 11:15:28 +00:00
|
|
|
"${COMPONENT_DIR}/port/esp_timing.c"
|
2020-01-16 06:31:10 +00:00
|
|
|
"${COMPONENT_DIR}/port/esp_sha.c"
|
2020-03-09 05:58:05 +00:00
|
|
|
"${COMPONENT_DIR}/port/esp_bignum.c"
|
2020-01-16 06:31:10 +00:00
|
|
|
"${COMPONENT_DIR}/port/esp_aes_xts.c"
|
2020-03-09 05:58:05 +00:00
|
|
|
"${COMPONENT_DIR}/port/${idf_target}/bignum.c"
|
2019-06-06 02:57:29 +00:00
|
|
|
"${COMPONENT_DIR}/port/${idf_target}/aes.c"
|
2020-01-16 06:31:10 +00:00
|
|
|
"${COMPONENT_DIR}/port/${idf_target}/sha.c"
|
|
|
|
"${COMPONENT_DIR}/port/${idf_target}/esp_sha1.c"
|
|
|
|
"${COMPONENT_DIR}/port/${idf_target}/esp_sha256.c"
|
|
|
|
"${COMPONENT_DIR}/port/${idf_target}/esp_sha512.c")
|
2018-11-11 07:44:54 +00:00
|
|
|
|
|
|
|
foreach(target ${mbedtls_targets})
|
|
|
|
target_compile_definitions(${target} PUBLIC -DMBEDTLS_CONFIG_FILE="mbedtls/esp_config.h")
|
|
|
|
endforeach()
|
|
|
|
|
2019-08-18 05:28:52 +00:00
|
|
|
set_property(TARGET mbedcrypto APPEND PROPERTY LINK_INTERFACE_LIBRARIES mbedtls)
|
|
|
|
|
2018-11-11 07:44:54 +00:00
|
|
|
# Link mbedtls libraries to component library
|
2019-10-31 02:39:17 +00:00
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE ${mbedtls_targets})
|
|
|
|
|
2019-09-29 10:04:34 +00:00
|
|
|
|