Loading [MathJax]/extensions/tex2jax.js
azure-core
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
curl_connection_private.hpp
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
10#pragma once
11
13#include "azure/core/internal/unique_handle.hpp"
14
15#include <chrono>
16#include <string>
17
18#if defined(_MSC_VER)
19// C6101 : Returning uninitialized memory '*Mtu'->libcurl calling WSAGetIPUserMtu from WS2tcpip.h
20#pragma warning(push)
21#pragma warning(disable : 6101)
22#endif
23
24#include <curl/curl.h>
25
26#if defined(_MSC_VER)
27#pragma warning(pop)
28#endif
29
31typedef struct x509_store_ctx_st X509_STORE_CTX;
32
33namespace Azure { namespace Core {
34 namespace _detail {
41 template <> struct UniqueHandleHelper<CURL>
42 {
43 using type = _internal::BasicUniqueHandle<CURL, curl_easy_cleanup>;
44 };
45 } // namespace _detail
46
47 namespace Http {
48 namespace _detail {
49 // libcurl CURL_MAX_WRITE_SIZE is 64k. Using same value for default uploading chunk size.
50 // This can be customizable in the HttpRequest
51 constexpr static size_t DefaultUploadChunkSize = 1024 * 64;
52 constexpr static size_t DefaultLibcurlReaderSize = 4 * 1024;
53 // Run time error template
54 constexpr static const char* DefaultFailedToGetNewConnectionTemplate
55 = "Fail to get a new connection for: ";
56 constexpr static int32_t DefaultMaxOpenNewConnectionIntentsAllowed = 10;
57 // After 3 connections are received from the pool and failed to send a request, the next
58 // connections would ask the pool to be clean and spawn new connection.
59 constexpr static int32_t RequestPoolResetAfterConnectionFailed = 3;
60 // 90 sec -> cleaner wait time before next clean routine
61 constexpr static int32_t DefaultCleanerIntervalMilliseconds = 1000 * 90;
62 // 60 sec -> expired connection is when it waits for 60 sec or more and it's not re-used
63 constexpr static int32_t DefaultConnectionExpiredMilliseconds = 1000 * 60;
64 // Define the maximum allowed connections per host-index in the pool. If this number is
65 // reached for the host-index, next connections trying to be added to the pool will be
66 // ignored.
67 constexpr static int32_t MaxConnectionsPerIndex = 1024;
68
69 } // namespace _detail
70
79 private:
80 bool m_isShutDown = false;
81
82 public:
87 virtual ~CurlNetworkConnection() = default;
88
93 virtual std::string const& GetConnectionKey() const = 0;
94
99 virtual void UpdateLastUsageTime() = 0;
100
105 virtual bool IsExpired() = 0;
106
113 virtual size_t ReadFromSocket(uint8_t* buffer, size_t bufferSize, Context const& context) = 0;
114
119 virtual CURLcode SendBuffer(uint8_t const* buffer, size_t bufferSize, Context const& context)
120 = 0;
121
128 virtual void Shutdown() { m_isShutDown = true; }
129
135 bool IsShutdown() const { return m_isShutDown; }
136 };
137
143 private:
144 Azure::Core::_internal::UniqueHandle<CURL> m_handle;
145 curl_socket_t m_curlSocket;
146 std::chrono::steady_clock::time_point m_lastUseTime;
147 std::string m_connectionKey;
148 // CRL validation is disabled by default to be consistent with WinHTTP behavior
149 bool m_enableCrlValidation{false};
150 // Allow the connection to proceed if retrieving the CRL failed.
151 bool m_allowFailedCrlRetrieval{true};
152
153 static int CurlLoggingCallback(
154 CURL* handle,
155 curl_infotype type,
156 char* data,
157 size_t size,
158 void* userp);
159
160 static int CurlSslCtxCallback(CURL* curl, void* sslctx, void* parm);
161 int SslCtxCallback(CURL* curl, void* sslctx);
162 int VerifyCertificateError(int ok, X509_STORE_CTX* storeContext);
163
164 public:
177 std::string const& hostDisplayName,
178 std::string const& connectionPropertiesKey);
179
184 ~CurlConnection() override {}
185
186 std::string const& GetConnectionKey() const override { return this->m_connectionKey; }
187
192 void UpdateLastUsageTime() override
193 {
194 this->m_lastUseTime = std::chrono::steady_clock::now();
195 }
196
201 bool IsExpired() override
202 {
203 auto connectionOnWaitingTimeMs = std::chrono::duration_cast<std::chrono::milliseconds>(
204 std::chrono::steady_clock::now() - this->m_lastUseTime);
205 return connectionOnWaitingTimeMs.count() >= _detail::DefaultConnectionExpiredMilliseconds;
206 }
207
219 size_t ReadFromSocket(uint8_t* buffer, size_t bufferSize, Context const& context) override;
220
231 CURLcode SendBuffer(uint8_t const* buffer, size_t bufferSize, Context const& context)
232 override;
233 };
234 } // namespace Http
235}} // namespace Azure::Core
A context is a node within a unidirectional tree that represents deadlines and key/value pairs.
Definition context.hpp:72
CURL HTTP connection.
Definition curl_connection_private.hpp:142
bool IsExpired() override
Checks whether this CURL connection is expired.
Definition curl_connection_private.hpp:201
void UpdateLastUsageTime() override
Update last usage time for the connection.
Definition curl_connection_private.hpp:192
std::string const & GetConnectionKey() const override
Get the Connection Properties Key object.
Definition curl_connection_private.hpp:186
CURLcode SendBuffer(uint8_t const *buffer, size_t bufferSize, Context const &context) override
This method will use libcurl socket to write all the bytes from buffer.
Definition curl.cpp:574
size_t ReadFromSocket(uint8_t *buffer, size_t bufferSize, Context const &context) override
This function is used when working with streams to pull more data from the wire. Function will try to...
Definition curl.cpp:1204
~CurlConnection() override
Destructor.
Definition curl_connection_private.hpp:184
Interface for the connection to the network with Curl.
Definition curl_connection_private.hpp:78
virtual std::string const & GetConnectionKey() const =0
Get the Connection Properties Key object.
virtual void UpdateLastUsageTime()=0
Update last usage time for the connection.
virtual bool IsExpired()=0
Checks whether this CURL connection is expired.
virtual void Shutdown()
Set the connection into an invalid and unusable state.
Definition curl_connection_private.hpp:128
virtual size_t ReadFromSocket(uint8_t *buffer, size_t bufferSize, Context const &context)=0
This function is used when working with streams to pull more data from the wire. Function will try to...
virtual ~CurlNetworkConnection()=default
Allow derived classes calling a destructor.
bool IsShutdown() const
Check if the the connection was shut it down.
Definition curl_connection_private.hpp:135
virtual CURLcode SendBuffer(uint8_t const *buffer, size_t bufferSize, Context const &context)=0
This method will use libcurl socket to write all the bytes from buffer.
A request message from a client to a server.
Definition http.hpp:183
struct x509_store_ctx_st X509_STORE_CTX
From openssl/x509.h. Avoids needing to include openssl headers.
Definition curl_connection_private.hpp:31
HTTP request and response functionality.
Compute the hash value for the input binary data, using SHA256, SHA384 and SHA512.
Definition azure_assert.hpp:57
Set the libcurl connection options like a proxy and CA path.
Definition curl_transport.hpp:78