cmake/Source/cmCurl.cxx

59 lines
2.2 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2015-04-27 22:25:09 +02:00
#include "cmCurl.h"
2016-07-09 11:21:54 +02:00
2016-10-30 18:24:19 +01:00
#include "cmThirdParty.h"
#if !defined(CMAKE_USE_SYSTEM_CURL) && !defined(_WIN32) && \
!defined(__APPLE__) && !defined(CURL_CA_BUNDLE) && !defined(CURL_CA_PATH)
#define CMAKE_FIND_CAFILE
2015-04-27 22:25:09 +02:00
#include "cmSystemTools.h"
2016-10-30 18:24:19 +01:00
#endif
2015-04-27 22:25:09 +02:00
2016-03-13 13:35:51 +01:00
// curl versions before 7.21.5 did not provide this error code
#if defined(LIBCURL_VERSION_NUM) && LIBCURL_VERSION_NUM < 0x071505
2016-07-09 11:21:54 +02:00
#define CURLE_NOT_BUILT_IN 4
2016-03-13 13:35:51 +01:00
#endif
2016-07-09 11:21:54 +02:00
#define check_curl_result(result, errstr) \
2016-10-30 18:24:19 +01:00
if ((result) != CURLE_OK && (result) != CURLE_NOT_BUILT_IN) { \
2016-07-09 11:21:54 +02:00
e += e.empty() ? "" : "\n"; \
2016-10-30 18:24:19 +01:00
e += (errstr); \
2016-07-09 11:21:54 +02:00
e += ::curl_easy_strerror(result); \
}
2015-04-27 22:25:09 +02:00
2016-07-09 11:21:54 +02:00
std::string cmCurlSetCAInfo(::CURL* curl, const char* cafile)
2015-04-27 22:25:09 +02:00
{
std::string e;
2016-07-09 11:21:54 +02:00
if (cafile && *cafile) {
2015-04-27 22:25:09 +02:00
::CURLcode res = ::curl_easy_setopt(curl, CURLOPT_CAINFO, cafile);
check_curl_result(res, "Unable to set TLS/SSL Verify CAINFO: ");
2016-07-09 11:21:54 +02:00
}
2016-10-30 18:24:19 +01:00
#ifdef CMAKE_FIND_CAFILE
2016-07-09 11:21:54 +02:00
#define CMAKE_CAFILE_FEDORA "/etc/pki/tls/certs/ca-bundle.crt"
else if (cmSystemTools::FileExists(CMAKE_CAFILE_FEDORA, true)) {
2015-04-27 22:25:09 +02:00
::CURLcode res =
::curl_easy_setopt(curl, CURLOPT_CAINFO, CMAKE_CAFILE_FEDORA);
check_curl_result(res, "Unable to set TLS/SSL Verify CAINFO: ");
2016-07-09 11:21:54 +02:00
}
#undef CMAKE_CAFILE_FEDORA
else {
#define CMAKE_CAFILE_COMMON "/etc/ssl/certs/ca-certificates.crt"
if (cmSystemTools::FileExists(CMAKE_CAFILE_COMMON, true)) {
2015-04-27 22:25:09 +02:00
::CURLcode res =
::curl_easy_setopt(curl, CURLOPT_CAINFO, CMAKE_CAFILE_COMMON);
check_curl_result(res, "Unable to set TLS/SSL Verify CAINFO: ");
2016-07-09 11:21:54 +02:00
}
#undef CMAKE_CAFILE_COMMON
#define CMAKE_CAPATH_COMMON "/etc/ssl/certs"
if (cmSystemTools::FileIsDirectory(CMAKE_CAPATH_COMMON)) {
2015-04-27 22:25:09 +02:00
::CURLcode res =
::curl_easy_setopt(curl, CURLOPT_CAPATH, CMAKE_CAPATH_COMMON);
check_curl_result(res, "Unable to set TLS/SSL Verify CAPATH: ");
}
2016-07-09 11:21:54 +02:00
#undef CMAKE_CAPATH_COMMON
}
2015-04-27 22:25:09 +02:00
#endif
return e;
}