1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
|
#ifndef TARNATOOL_HTTPC_H_INCLUDED
#define TARANTOOL_HTTPC_H_INCLUDED 1
/*
* Copyright 2010-2017, Tarantool AUTHORS, please see AUTHORS file.
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* 1. Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY AUTHORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <small/ibuf.h>
#include <small/region.h>
#include <small/mempool.h>
#include <tarantool_ev.h>
#include "diag.h"
#include "curl.h"
/** {{{ Environment */
typedef void CURLM;
typedef void CURL;
struct curl_slist;
/**
* HTTP Client Statistics
*/
struct httpc_stat {
uint64_t total_requests;
uint64_t http_200_responses;
uint64_t http_other_responses;
uint64_t failed_requests;
uint64_t active_requests;
};
/**
* HTTP Client Environment
*/
struct httpc_env {
/** Curl enviroment. */
struct curl_env curl_env;
/** Memory pool for requests */
struct mempool req_pool;
/** Statistics */
struct httpc_stat stat;
};
/**
* @brief Creates new HTTP client environment
* @param env pointer to a structure to initialize
* @param max_conn The maximum number of entries in connection cache
* @retval 0 on success
* @retval -1 on error, check diag
*/
int
httpc_env_create(struct httpc_env *ctx, int max_conns, int max_total_conns);
/**
* Destroy HTTP client environment
* @param env pointer to a structure to destroy
*/
void
httpc_env_destroy(struct httpc_env *env);
/** Environment }}} */
/** {{{ Request */
/**
* HTTP request
*/
struct httpc_request {
/** Environment */
struct httpc_env *env;
/** HTTP headers */
struct curl_slist *headers;
/** Buffer for the request body */
struct ibuf body;
/** curl resuest. */
struct curl_request curl_request;
/** HTTP status code */
int status;
/** Error message */
const char *reason;
/** buffer of headers */
struct region resp_headers;
/** buffer of body */
struct region resp_body;
/**
* Idle delay, in seconds, that the operating system will
* wait while the connection is idle before sending
* keepalive probes.
*/
long keep_alive_timeout;
/**
* True when connection header must be set before
* execution automatically.
*/
bool set_connection_header;
/**
* True when accept Any MIME header must be set
* before execution automatically.
*/
bool set_accept_header;
/**
* True when Keep-Alive header must be set before
* execution automatically.
*/
bool set_keep_alive_header;
};
/**
* @brief Create a new HTTP request
* @param ctx - reference to context
* @return a new HTTP request object
*/
struct httpc_request *
httpc_request_new(struct httpc_env *env, const char *method,
const char *url);
/**
* @brief Delete HTTP request
* @param request - reference to object
* @details Should be called even if error in execute appeared
*/
void
httpc_request_delete(struct httpc_request *req);
/**
* Set HTTP header
* @param req request
* @param fmt format string
* @param ... format arguments
*/
int
httpc_set_header(struct httpc_request *req, const char *fmt, ...);
/**
* Sets body of request
* @param req request
* @param body body
* @param bytes sizeof body
*/
int
httpc_set_body(struct httpc_request *req, const char *body, size_t size);
/**
* Set TCP keep-alive probing
* @param req request
* @param idle delay, in seconds, that the operating system will wait
* while the connection is idle before sending keepalive probes
* @param interval the interval, in seconds, that the operating system
* will wait between sending keepalive probes
* @details Does nothing on libcurl < 7.25.0
* @see https://curl.haxx.se/libcurl/c/CURLOPT_TCP_KEEPALIVE.html
*/
void
httpc_set_keepalive(struct httpc_request *req, long idle, long interval);
/**
* Set the "low speed time" - the time that the transfer speed should be
* below the "low speed limit" for the library to consider it too slow and
* abort.
* @param req request
* @param low_speed_time low speed time
* @details If the download receives less than "low speed limit" bytes/second
* during "low speed time" seconds, the operations is aborted.
* You could i.e if you have a pretty high speed Connection,
* abort if it is less than 2000 bytes/sec during 20 seconds;
* @see httpc_set_low_speed_limit()
* @see https://curl.haxx.se/libcurl/c/CURLOPT_LOW_SPEED_TIME.html
*/
void
httpc_set_low_speed_time(struct httpc_request *req, long low_speed_time);
/**
* Set the "low speed limit" - the average transfer speed in bytes per second
* that the transfer should be below during "low speed time" seconds for the
* library to consider it to be too slow and abort.
* @param req request
* @param low_speed_limit low speed limit
* @details If the download receives less than "low speed limit" bytes/second
* during "low speed time" seconds, the operations is aborted.
* You could i.e if you have a pretty high speed Connection,
* abort if it is less than 2000 bytes/sec during 20 seconds.
* @see httpc_set_low_speed_time()
* @see https://curl.haxx.se/libcurl/c/CURLOPT_LOW_SPEED_LIMIT.html
*/
void
httpc_set_low_speed_limit(struct httpc_request *req, long low_speed_limit);
/**
* Enables/Disables libcurl verbose mode
* @param req request
* @param verbose flag
*/
void
httpc_set_verbose(struct httpc_request *req, bool verbose);
/**
* Specify directory holding CA certificates
* @param req request
* @param ca_path path to directory holding one or more certificates
* to verify the peer with. The application does not have to keep the string
* around after setting this option.
*/
void
httpc_set_ca_path(struct httpc_request *req, const char *ca_path);
/**
* Specify path to Certificate Authority (CA) bundle
* @param req request
* @param ca_file - File holding one or more certificates
* to verify the peer with. The application does not have to keep the string
* around after setting this option.
* @see https://curl.haxx.se/libcurl/c/CURLOPT_CAINFO.html
*/
void
httpc_set_ca_file(struct httpc_request *req, const char *ca_file);
/**
* Specify path to Unix domain socket
* @param req request
* @param unix_socket path to Unix domain socket used as connection
* endpoint instead of TCP. The application does not have to keep the string
* around after setting this option.
* @see https://curl.haxx.se/libcurl/c/CURLOPT_UNIX_SOCKET_PATH.html
* @return 0 on success
*/
int
httpc_set_unix_socket(struct httpc_request *req, const char *unix_socket);
/**
* Enables/disables verification of the certificate's name (CN) against host
* @param req request
* @param verify flag
* @see https://curl.haxx.se/libcurl/c/CURLOPT_SSL_VERIFYHOST.html
*/
void
httpc_set_verify_host(struct httpc_request *req, long verify);
/**
* Enables/disables verification of the peer's SSL certificate
* @param req request
* @param verify flag
* @see https://curl.haxx.se/libcurl/c/CURLOPT_SSL_VERIFYPEER.html
*/
void
httpc_set_verify_peer(struct httpc_request *req, long verify);
/**
* Specify path to private key for TLS ans SSL client certificate
* @param req request
* @param ssl_key - path to the private key. The application does not have to
* keep the string around after setting this option.
* @see https://curl.haxx.se/libcurl/c/CURLOPT_SSLKEY.html
*/
void
httpc_set_ssl_key(struct httpc_request *req, const char *ssl_key);
/**
* Specify path to SSL client certificate
* @param req request
* @param ssl_cert - path to the client certificate. The application does not
* have to keep the string around after setting this option.
* @see https://curl.haxx.se/libcurl/c/CURLOPT_SSLCERT.html
*/
void
httpc_set_ssl_cert(struct httpc_request *req, const char *ssl_cert);
/**
* Specify a proxy to use (optionally may be prefixed with a scheme -
* e.g. http:// or https://).
*
* If this option is not set a value from the corresponding
* environment variable will be used. Environment variable names are:
* 'http_proxy', 'https_proxy', 'ftp_proxy' etc. 'all_proxy' variable
* is used if no protocol specific proxy was set.
*
* Setting this option to an empty string will explicitly disable the
* use of a proxy, even if there is an environment variable set for it.
*
* @param req request
* @param proxy - a host name or an IP address. The application does not
* have to keep the string around after setting this option.
* @see https://curl.haxx.se/libcurl/c/CURLOPT_PROXY.html
*/
void
httpc_set_proxy(struct httpc_request *req, const char *proxy);
/**
* Specify a port number the proxy listens on
* @param req request
* @param port - a port number the proxy listens on
* @see https://curl.haxx.se/libcurl/c/CURLOPT_PROXYPORT.html
*/
void
httpc_set_proxy_port(struct httpc_request *req, long port);
/**
* Specify a user name and a password to use in authentication
* @param req request
* @param user_pwd - a login details string for the connection.
* The format is: [user name]:[password]. The application does not
* have to keep the string around after setting this option.
* @see https://curl.haxx.se/libcurl/c/CURLOPT_USERPWD.html
*/
void
httpc_set_proxy_user_pwd(struct httpc_request *req, const char *user_pwd);
/**
* Specify a comma separated list of host names that do not require a proxy
* to get reached, even if one is specified by 'proxy' option. The only
* wildcard available is a single * character, which matches all hosts, and
* effectively disables the proxy.
*
* 'no_proxy' environment variable will be used if this option is not set.
*
* Setting this option to an empty string will
* explicitly enable the proxy for all host names, even if there is an
* environment variable set for it.
*
* @param req request
* @param no_proxy - a comma separated list of host names. The application
* does not have to keep the string around after setting this option.
* @see https://curl.haxx.se/libcurl/c/CURLOPT_NOPROXY.html
*/
void
httpc_set_no_proxy(struct httpc_request *req, const char *no_proxy);
/**
* Specify source interface for outgoing traffic
* @param req request
* @param interface - interface name to use as outgoing network interface.
* The name can be an interface name, an IP address, or a host name.
* The application does not have to keep the string around after setting this option.
* @see https://curl.haxx.se/libcurl/c/CURLOPT_INTERFACE.html
*/
void
httpc_set_interface(struct httpc_request *req, const char *interface);
/**
* Specify whether the client will follow 'Location' header that
* a server sends as part of an 3xx response.
* @param req request
* @param follow flag
* @see https://curl.haxx.se/libcurl/c/CURLOPT_FOLLOWLOCATION.html
*/
void
httpc_set_follow_location(struct httpc_request *req, long follow);
/**
* Enable automatic decompression of HTTP responses: set the
* contents of the Accept-Encoding header sent in a HTTP request
* and enable decoding of a response when a Content-Encoding
* header is received.
*
* This is a request, not an order; the server may or may not do
* it. Servers might respond with Content-Encoding even without
* getting an Accept-Encoding in the request. Servers might
* respond with a different Content-Encoding than what was asked
* for in the request.
*
* @param req request
* @param encoding - specify what encoding you'd like. This param
* can be an empty string which means Accept-Encoding header will
* contain all built-in supported encodings. This param can be
* comma-separated list of accepted encodings, like:
* "br, gzip, deflate".
*
* Bundled libcurl supports "identity", meaning non-compressed,
* "deflate" which requests the server to compress its response
* using the zlib algorithm and "gzip" which requests the gzip
* algorithm. System libcurl also possibly supports "br" which
* is brotli.
*
* @see https://curl.haxx.se/libcurl/c/CURLOPT_ACCEPT_ENCODING.html
*/
void
httpc_set_accept_encoding(struct httpc_request *req, const char *encoding);
/**
* This function does async HTTP request
* @param request - reference to request object with filled fields
* @param timeout - timeout of waiting for libcurl api
* @return 0 for success or NULL
*/
int
httpc_execute(struct httpc_request *req, double timeout);
/** Request }}} */
#endif /* TARANTOOL_HTTPC_H_INCLUDED */
|