2016-08-25 05:00:28 -04:00
|
|
|
curl internals
|
|
|
|
==============
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
- [Intro](#intro)
|
|
|
|
- [git](#git)
|
|
|
|
- [Portability](#Portability)
|
|
|
|
- [Windows vs Unix](#winvsunix)
|
|
|
|
- [Library](#Library)
|
|
|
|
- [`Curl_connect`](#Curl_connect)
|
2019-01-02 15:00:08 -05:00
|
|
|
- [`multi_do`](#multi_do)
|
2015-06-09 17:57:22 -04:00
|
|
|
- [`Curl_readwrite`](#Curl_readwrite)
|
2019-01-02 15:00:08 -05:00
|
|
|
- [`multi_done`](#multi_done)
|
2015-06-09 17:57:22 -04:00
|
|
|
- [`Curl_disconnect`](#Curl_disconnect)
|
|
|
|
- [HTTP(S)](#http)
|
|
|
|
- [FTP](#ftp)
|
2019-04-23 06:38:31 -04:00
|
|
|
- [Kerberos](#kerberos)
|
2015-06-09 17:57:22 -04:00
|
|
|
- [TELNET](#telnet)
|
|
|
|
- [FILE](#file)
|
|
|
|
- [SMB](#smb)
|
|
|
|
- [LDAP](#ldap)
|
|
|
|
- [E-mail](#email)
|
|
|
|
- [General](#general)
|
|
|
|
- [Persistent Connections](#persistent)
|
|
|
|
- [multi interface/non-blocking](#multi)
|
|
|
|
- [SSL libraries](#ssl)
|
|
|
|
- [Library Symbols](#symbols)
|
|
|
|
- [Return Codes and Informationals](#returncodes)
|
|
|
|
- [AP/ABI](#abi)
|
|
|
|
- [Client](#client)
|
|
|
|
- [Memory Debugging](#memorydebug)
|
|
|
|
- [Test Suite](#test)
|
|
|
|
- [Asynchronous name resolves](#asyncdns)
|
|
|
|
- [c-ares](#cares)
|
|
|
|
- [`curl_off_t`](#curl_off_t)
|
|
|
|
- [curlx](#curlx)
|
|
|
|
- [Content Encoding](#contentencoding)
|
2019-05-16 18:11:27 -04:00
|
|
|
- [`hostip.c` explained](#hostip)
|
2015-06-09 17:57:22 -04:00
|
|
|
- [Track Down Memory Leaks](#memoryleak)
|
|
|
|
- [`multi_socket`](#multi_socket)
|
2015-06-09 18:11:54 -04:00
|
|
|
- [Structs in libcurl](#structs)
|
2019-04-23 05:36:22 -04:00
|
|
|
- [Curl_easy](#Curl_easy)
|
|
|
|
- [connectdata](#connectdata)
|
|
|
|
- [Curl_multi](#Curl_multi)
|
|
|
|
- [Curl_handler](#Curl_handler)
|
|
|
|
- [conncache](#conncache)
|
|
|
|
- [Curl_share](#Curl_share)
|
|
|
|
- [CookieInfo](#CookieInfo)
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
<a name="intro"></a>
|
2016-08-25 05:00:28 -04:00
|
|
|
Intro
|
|
|
|
=====
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
This project is split in two. The library and the client. The client part
|
|
|
|
uses the library, but the library is designed to allow other applications to
|
|
|
|
use it.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2001-03-13 10:44:31 -05:00
|
|
|
The largest amount of code and complexity is in the library part.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
<a name="git"></a>
|
|
|
|
git
|
2000-11-29 02:47:51 -05:00
|
|
|
===
|
2014-09-10 17:10:20 -04:00
|
|
|
|
2010-03-21 19:34:09 -04:00
|
|
|
All changes to the sources are committed to the git repository as soon as
|
2011-01-27 17:37:16 -05:00
|
|
|
they're somewhat verified to work. Changes shall be committed as independently
|
2017-01-24 10:14:59 -05:00
|
|
|
as possible so that individual changes can be easily spotted and tracked
|
2000-11-29 02:47:51 -05:00
|
|
|
afterwards.
|
|
|
|
|
|
|
|
Tagging shall be used extensively, and by the time we release new archives we
|
|
|
|
should tag the sources with a name similar to the released version number.
|
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="Portability"></a>
|
2008-06-12 17:03:16 -04:00
|
|
|
Portability
|
|
|
|
===========
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
We write curl and libcurl to compile with C89 compilers. On 32-bit and up
|
2008-06-12 17:03:16 -04:00
|
|
|
machines. Most of libcurl assumes more or less POSIX compliance but that's
|
|
|
|
not a requirement.
|
|
|
|
|
|
|
|
We write libcurl to build and work with lots of third party tools, and we
|
|
|
|
want it to remain functional and buildable with these and later versions
|
|
|
|
(older versions may still work but is not what we work hard to maintain):
|
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
Dependencies
|
|
|
|
------------
|
|
|
|
|
|
|
|
- OpenSSL 0.9.7
|
2020-04-20 16:23:48 -04:00
|
|
|
- GnuTLS 3.1.10
|
2015-06-09 17:57:22 -04:00
|
|
|
- zlib 1.1.4
|
|
|
|
- libssh2 0.16
|
|
|
|
- c-ares 1.6.0
|
2017-11-14 06:47:04 -05:00
|
|
|
- libidn2 2.0.0
|
2019-06-02 10:55:05 -04:00
|
|
|
- wolfSSL 2.0.0
|
2015-06-09 17:57:22 -04:00
|
|
|
- openldap 2.0
|
|
|
|
- MIT Kerberos 1.2.4
|
|
|
|
- GSKit V5R3M0
|
|
|
|
- NSS 3.14.x
|
|
|
|
- Heimdal ?
|
2020-02-21 05:30:05 -05:00
|
|
|
- nghttp2 1.12.0
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
Operating Systems
|
|
|
|
-----------------
|
2008-06-12 17:03:16 -04:00
|
|
|
|
|
|
|
On systems where configure runs, we aim at working on them all - if they have
|
|
|
|
a suitable C compiler. On systems that don't run configure, we strive to keep
|
2017-01-24 10:14:59 -05:00
|
|
|
curl running correctly on:
|
2008-06-12 17:03:16 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
- Windows 98
|
|
|
|
- AS/400 V5R3M0
|
|
|
|
- Symbian 9.1
|
|
|
|
- Windows CE ?
|
|
|
|
- TPF ?
|
|
|
|
|
|
|
|
Build tools
|
|
|
|
-----------
|
2008-06-12 17:03:16 -04:00
|
|
|
|
2008-06-12 17:16:00 -04:00
|
|
|
When writing code (mostly for generating stuff included in release tarballs)
|
|
|
|
we use a few "build tools" and we make sure that we remain functional with
|
|
|
|
these versions:
|
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
- GNU Libtool 1.4.2
|
|
|
|
- GNU Autoconf 2.57
|
|
|
|
- GNU Automake 1.7
|
|
|
|
- GNU M4 1.4
|
|
|
|
- perl 5.004
|
|
|
|
- roffit 0.5
|
2019-05-16 18:11:27 -04:00
|
|
|
- groff ? (any version that supports `groff -Tps -man [in] [out]`)
|
2015-06-09 17:57:22 -04:00
|
|
|
- ps2pdf (gs) ?
|
2008-06-12 17:16:00 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="winvsunix"></a>
|
2000-05-22 13:35:35 -04:00
|
|
|
Windows vs Unix
|
|
|
|
===============
|
|
|
|
|
2017-01-24 10:14:59 -05:00
|
|
|
There are a few differences in how to program curl the Unix way compared to
|
|
|
|
the Windows way. Perhaps the four most notable details are:
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2001-01-26 10:52:51 -05:00
|
|
|
1. Different function names for socket operations.
|
2001-01-19 04:37:39 -05:00
|
|
|
|
|
|
|
In curl, this is solved with defines and macros, so that the source looks
|
2017-01-24 10:14:59 -05:00
|
|
|
the same in all places except for the header file that defines them. The
|
2019-05-16 18:11:27 -04:00
|
|
|
macros in use are `sclose()`, `sread()` and `swrite()`.
|
2001-01-19 04:37:39 -05:00
|
|
|
|
2001-03-13 10:44:31 -05:00
|
|
|
2. Windows requires a couple of init calls for the socket stuff.
|
2001-01-19 04:37:39 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
That's taken care of by the `curl_global_init()` call, but if other libs
|
|
|
|
also do it etc there might be reasons for applications to alter that
|
|
|
|
behaviour.
|
2001-01-19 04:37:39 -05:00
|
|
|
|
2000-05-22 13:35:35 -04:00
|
|
|
3. The file descriptors for network communication and file operations are
|
2017-01-24 10:14:59 -05:00
|
|
|
not as easily interchangeable as in Unix.
|
2001-01-19 04:37:39 -05:00
|
|
|
|
|
|
|
We avoid this by not trying any funny tricks on file descriptors.
|
|
|
|
|
2000-05-22 13:35:35 -04:00
|
|
|
4. When writing data to stdout, Windows makes end-of-lines the DOS way, thus
|
|
|
|
destroying binary data, although you do want that conversion if it is
|
|
|
|
text coming through... (sigh)
|
|
|
|
|
2001-01-19 04:37:39 -05:00
|
|
|
We set stdout to binary under windows
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
Inside the source code, We make an effort to avoid `#ifdef [Your OS]`. All
|
2000-05-22 13:35:35 -04:00
|
|
|
conditionals that deal with features *should* instead be in the format
|
2015-06-09 17:57:22 -04:00
|
|
|
`#ifdef HAVE_THAT_WEIRD_FUNCTION`. Since Windows can't run configure scripts,
|
|
|
|
we maintain a `curl_config-win32.h` file in lib directory that is supposed to
|
2017-01-24 10:14:59 -05:00
|
|
|
look exactly like a `curl_config.h` file would have looked like on a Windows
|
2012-04-06 17:35:15 -04:00
|
|
|
machine!
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2001-01-17 09:17:49 -05:00
|
|
|
Generally speaking: always remember that this will be compiled on dozens of
|
2017-01-24 10:14:59 -05:00
|
|
|
operating systems. Don't walk on the edge!
|
2001-01-17 09:17:49 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="Library"></a>
|
2000-05-22 13:35:35 -04:00
|
|
|
Library
|
|
|
|
=======
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
(See [Structs in libcurl](#structs) for the separate section describing all
|
|
|
|
major internal structs and their purposes.)
|
2013-08-06 08:13:33 -04:00
|
|
|
|
2000-06-14 05:16:11 -04:00
|
|
|
There are plenty of entry points to the library, namely each publicly defined
|
2000-05-22 13:35:35 -04:00
|
|
|
function that libcurl offers to applications. All of those functions are
|
2015-06-09 17:57:22 -04:00
|
|
|
rather small and easy-to-follow. All the ones prefixed with `curl_easy` are
|
2019-05-16 18:11:27 -04:00
|
|
|
put in the `lib/easy.c` file.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2016-10-31 00:38:27 -04:00
|
|
|
`curl_global_init()` and `curl_global_cleanup()` should be called by the
|
2002-02-27 07:40:01 -05:00
|
|
|
application to initialize and clean up global stuff in the library. As of
|
|
|
|
today, it can handle the global SSL initing if SSL is enabled and it can init
|
|
|
|
the socket layer on windows machines. libcurl itself has no "global" scope.
|
2001-05-29 09:23:41 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
All printf()-style functions use the supplied clones in `lib/mprintf.c`. This
|
2013-01-03 20:50:28 -05:00
|
|
|
makes sure we stay absolutely platform independent.
|
2001-01-17 09:17:49 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
[ `curl_easy_init()`][2] allocates an internal struct and makes some
|
|
|
|
initializations. The returned handle does not reveal internals. This is the
|
2016-10-31 00:38:27 -04:00
|
|
|
`Curl_easy` struct which works as an "anchor" struct for all `curl_easy`
|
2015-06-09 17:57:22 -04:00
|
|
|
functions. All connections performed will get connect-specific data allocated
|
|
|
|
that should be used for things related to particular connections/requests.
|
2000-11-29 02:47:51 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
[`curl_easy_setopt()`][1] takes three arguments, where the option stuff must
|
|
|
|
be passed in pairs: the parameter-ID and the parameter-value. The list of
|
2001-05-29 09:23:41 -04:00
|
|
|
options is documented in the man page. This function mainly sets things in
|
2016-10-31 00:38:27 -04:00
|
|
|
the `Curl_easy` struct.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
`curl_easy_perform()` is just a wrapper function that makes use of the multi
|
|
|
|
API. It basically calls `curl_multi_init()`, `curl_multi_add_handle()`,
|
|
|
|
`curl_multi_wait()`, and `curl_multi_perform()` until the transfer is done
|
|
|
|
and then returns.
|
2000-06-14 05:16:11 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
Some of the most important key functions in `url.c` are called from
|
|
|
|
`multi.c` when certain key steps are to be made in the transfer operation.
|
2001-04-27 10:46:17 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="Curl_connect"></a>
|
|
|
|
Curl_connect()
|
|
|
|
--------------
|
2001-04-27 10:46:17 -04:00
|
|
|
|
2013-08-06 08:13:33 -04:00
|
|
|
Analyzes the URL, it separates the different components and connects to the
|
|
|
|
remote host. This may involve using a proxy and/or using SSL. The
|
2019-05-16 18:11:27 -04:00
|
|
|
`Curl_resolv()` function in `lib/hostip.c` is used for looking up host
|
|
|
|
names (it does then use the proper underlying method, which may vary
|
|
|
|
between platforms and builds).
|
2001-04-27 10:46:17 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
When `Curl_connect` is done, we are connected to the remote site. Then it
|
|
|
|
is time to tell the server to get a document/file. `Curl_do()` arranges
|
|
|
|
this.
|
2001-04-27 10:46:17 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
This function makes sure there's an allocated and initiated `connectdata`
|
2001-05-29 09:23:41 -04:00
|
|
|
struct that is used for this particular connection only (although there may
|
|
|
|
be several requests performed on the same connect). A bunch of things are
|
2016-10-31 00:38:27 -04:00
|
|
|
inited/inherited from the `Curl_easy` struct.
|
2001-05-29 09:23:41 -04:00
|
|
|
|
2019-01-02 15:00:08 -05:00
|
|
|
<a name="multi_do"></a>
|
|
|
|
multi_do()
|
2015-06-09 17:57:22 -04:00
|
|
|
---------
|
2001-04-27 10:46:17 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
`multi_do()` makes sure the proper protocol-specific function is called.
|
|
|
|
The functions are named after the protocols they handle.
|
2001-04-27 10:46:17 -04:00
|
|
|
|
|
|
|
The protocol-specific functions of course deal with protocol-specific
|
2015-06-09 17:57:22 -04:00
|
|
|
negotiations and setup. They have access to the `Curl_sendf()` (from
|
2019-05-16 18:11:27 -04:00
|
|
|
`lib/sendf.c`) function to send printf-style formatted data to the remote
|
2013-01-03 20:50:28 -05:00
|
|
|
host and when they're ready to make the actual file transfer they call the
|
2019-05-16 18:11:27 -04:00
|
|
|
`Curl_setup_transfer()` function (in `lib/transfer.c`) to setup the
|
|
|
|
transfer and returns.
|
2001-04-27 10:46:17 -04:00
|
|
|
|
2007-11-26 06:02:45 -05:00
|
|
|
If this DO function fails and the connection is being re-used, libcurl will
|
|
|
|
then close this connection, setup a new connection and re-issue the DO
|
|
|
|
request on that. This is because there is no way to be perfectly sure that
|
|
|
|
we have discovered a dead connection before the DO function and thus we
|
|
|
|
might wrongly be re-using a connection that was closed by the remote peer.
|
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="Curl_readwrite"></a>
|
|
|
|
Curl_readwrite()
|
|
|
|
----------------
|
2001-04-27 10:46:17 -04:00
|
|
|
|
2013-08-06 08:13:33 -04:00
|
|
|
Called during the transfer of the actual protocol payload.
|
2001-04-27 10:46:17 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
During transfer, the progress functions in `lib/progress.c` are called at
|
2017-01-24 10:14:59 -05:00
|
|
|
frequent intervals (or at the user's choice, a specified callback might get
|
2019-05-16 18:11:27 -04:00
|
|
|
called). The speedcheck functions in `lib/speedcheck.c` are also used to
|
2013-01-03 20:50:28 -05:00
|
|
|
verify that the transfer is as fast as required.
|
2001-04-27 10:46:17 -04:00
|
|
|
|
2019-01-02 15:00:08 -05:00
|
|
|
<a name="multi_done"></a>
|
|
|
|
multi_done()
|
2015-06-09 17:57:22 -04:00
|
|
|
-----------
|
2001-04-27 10:46:17 -04:00
|
|
|
|
|
|
|
Called after a transfer is done. This function takes care of everything
|
|
|
|
that has to be done after a transfer. This function attempts to leave
|
2019-01-02 15:00:08 -05:00
|
|
|
matters in a state so that `multi_do()` should be possible to call again on
|
2001-05-29 09:23:41 -04:00
|
|
|
the same connection (in a persistent connection case). It might also soon
|
2015-06-09 17:57:22 -04:00
|
|
|
be closed with `Curl_disconnect()`.
|
2001-04-27 10:46:17 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="Curl_disconnect"></a>
|
|
|
|
Curl_disconnect()
|
|
|
|
-----------------
|
2001-04-27 10:46:17 -04:00
|
|
|
|
2001-05-29 09:23:41 -04:00
|
|
|
When doing normal connections and transfers, no one ever tries to close any
|
2015-06-09 17:57:22 -04:00
|
|
|
connections so this is not normally called when `curl_easy_perform()` is
|
2001-04-27 10:46:17 -04:00
|
|
|
used. This function is only used when we are certain that no more transfers
|
2017-01-24 10:14:59 -05:00
|
|
|
are going to be made on the connection. It can be also closed by force, or
|
2001-05-29 09:23:41 -04:00
|
|
|
it can be called to make sure that libcurl doesn't keep too many
|
2013-08-06 08:13:33 -04:00
|
|
|
connections alive at the same time.
|
2001-04-27 10:46:17 -04:00
|
|
|
|
|
|
|
This function cleans up all resources that are associated with a single
|
|
|
|
connection.
|
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="http"></a>
|
|
|
|
HTTP(S)
|
|
|
|
=======
|
2000-05-22 13:35:35 -04:00
|
|
|
|
|
|
|
HTTP offers a lot and is the protocol in curl that uses the most lines of
|
2019-05-16 18:11:27 -04:00
|
|
|
code. There is a special file `lib/formdata.c` that offers all the
|
|
|
|
multipart post functions.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
base64-functions for user+password stuff (and more) is in `lib/base64.c`
|
|
|
|
and all functions for parsing and sending cookies are found in
|
|
|
|
`lib/cookie.c`.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2017-01-24 10:14:59 -05:00
|
|
|
HTTPS uses in almost every case the same procedure as HTTP, with only two
|
2000-06-14 05:16:11 -04:00
|
|
|
exceptions: the connect procedure is different and the function used to read
|
|
|
|
or write from the socket is different, although the latter fact is hidden in
|
2015-06-09 17:57:22 -04:00
|
|
|
the source by the use of `Curl_read()` for reading and `Curl_write()` for
|
|
|
|
writing data to the remote server.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
`http_chunks.c` contains functions that understands HTTP 1.1 chunked transfer
|
2013-01-03 20:50:28 -05:00
|
|
|
encoding.
|
2001-03-13 10:44:31 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
An interesting detail with the HTTP(S) request, is the `Curl_add_buffer()`
|
2011-04-17 10:34:25 -04:00
|
|
|
series of functions we use. They append data to one single buffer, and when
|
2018-10-05 14:00:15 -04:00
|
|
|
the building is finished the entire request is sent off in one single write.
|
|
|
|
This is done this way to overcome problems with flawed firewalls and lame
|
|
|
|
servers.
|
2001-03-13 10:44:31 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="ftp"></a>
|
|
|
|
FTP
|
|
|
|
===
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
The `Curl_if2ip()` function can be used for getting the IP number of a
|
2019-05-16 18:11:27 -04:00
|
|
|
specified network interface, and it resides in `lib/if2ip.c`.
|
2001-01-17 09:17:49 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
`Curl_ftpsendf()` is used for sending FTP commands to the remote server. It
|
|
|
|
was made a separate function to prevent us programmers from forgetting that
|
2019-05-16 18:11:27 -04:00
|
|
|
they must be CRLF terminated. They must also be sent in one single `write()`
|
|
|
|
to make firewalls and similar happy.
|
2001-01-17 09:17:49 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="kerberos"></a>
|
|
|
|
Kerberos
|
2019-02-06 04:29:14 -05:00
|
|
|
========
|
2001-01-17 09:17:49 -05:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
Kerberos support is mainly in `lib/krb5.c` and `lib/security.c` but also
|
2015-06-09 17:57:22 -04:00
|
|
|
`curl_sasl_sspi.c` and `curl_sasl_gssapi.c` for the email protocols and
|
|
|
|
`socks_gssapi.c` and `socks_sspi.c` for SOCKS5 proxy specifics.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="telnet"></a>
|
|
|
|
TELNET
|
|
|
|
======
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
Telnet is implemented in `lib/telnet.c`.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="file"></a>
|
|
|
|
FILE
|
|
|
|
====
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The `file://` protocol is dealt with in `lib/file.c`.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="smb"></a>
|
|
|
|
SMB
|
|
|
|
===
|
2014-11-30 16:51:26 -05:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The `smb://` protocol is dealt with in `lib/smb.c`.
|
2014-11-30 16:51:26 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="ldap"></a>
|
|
|
|
LDAP
|
|
|
|
====
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
Everything LDAP is in `lib/ldap.c` and `lib/openldap.c`.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="email"></a>
|
|
|
|
E-mail
|
|
|
|
======
|
2014-09-10 17:10:20 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The e-mail related source code is in `lib/imap.c`, `lib/pop3.c` and
|
|
|
|
`lib/smtp.c`.
|
2014-09-10 17:10:20 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="general"></a>
|
|
|
|
General
|
|
|
|
=======
|
2000-05-22 13:35:35 -04:00
|
|
|
|
|
|
|
URL encoding and decoding, called escaping and unescaping in the source code,
|
2019-05-16 18:11:27 -04:00
|
|
|
is found in `lib/escape.c`.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
While transferring data in `Transfer()` a few functions might get used.
|
|
|
|
`curl_getdate()` in `lib/parsedate.c` is for HTTP date comparisons (and
|
|
|
|
more).
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
`lib/getenv.c` offers `curl_getenv()` which is for reading environment
|
2015-06-09 17:57:22 -04:00
|
|
|
variables in a neat platform independent way. That's used in the client, but
|
2019-05-16 18:11:27 -04:00
|
|
|
also in `lib/url.c` when checking the proxy environment variables. Note that
|
|
|
|
contrary to the normal unix `getenv()`, this returns an allocated buffer that
|
|
|
|
must be `free()`ed after use.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
`lib/netrc.c` holds the `.netrc` parser.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
`lib/timeval.c` features replacement functions for systems that don't have
|
|
|
|
`gettimeofday()` and a few support functions for timeval conversions.
|
2010-02-14 14:40:18 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
A function named `curl_version()` that returns the full curl version string
|
2019-05-16 18:11:27 -04:00
|
|
|
is found in `lib/version.c`.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="persistent"></a>
|
2001-04-23 03:09:15 -04:00
|
|
|
Persistent Connections
|
2001-03-13 03:16:54 -05:00
|
|
|
======================
|
|
|
|
|
2001-05-29 09:23:41 -04:00
|
|
|
The persistent connection support in libcurl requires some considerations on
|
|
|
|
how to do things inside of the library.
|
2001-03-13 03:16:54 -05:00
|
|
|
|
2016-10-31 00:38:27 -04:00
|
|
|
- The `Curl_easy` struct returned in the [`curl_easy_init()`][2] call
|
2015-06-09 17:57:22 -04:00
|
|
|
must never hold connection-oriented data. It is meant to hold the root data
|
|
|
|
as well as all the options etc that the library-user may choose.
|
|
|
|
|
2016-10-31 00:38:27 -04:00
|
|
|
- The `Curl_easy` struct holds the "connection cache" (an array of
|
2019-05-16 18:11:27 -04:00
|
|
|
pointers to `connectdata` structs).
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
- This enables the 'curl handle' to be reused on subsequent transfers.
|
|
|
|
|
|
|
|
- When libcurl is told to perform a transfer, it first checks for an already
|
2013-08-06 08:13:33 -04:00
|
|
|
existing connection in the cache that we can use. Otherwise it creates a
|
2017-01-24 10:14:59 -05:00
|
|
|
new one and adds that to the cache. If the cache is full already when a new
|
|
|
|
connection is added, it will first close the oldest unused one.
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
- When the transfer operation is complete, the connection is left
|
2013-08-06 08:13:33 -04:00
|
|
|
open. Particular options may tell libcurl not to, and protocols may signal
|
2017-01-24 10:14:59 -05:00
|
|
|
closure on connections and then they won't be kept open, of course.
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
- When `curl_easy_cleanup()` is called, we close all still opened connections,
|
2007-11-26 06:02:45 -05:00
|
|
|
unless of course the multi interface "owns" the connections.
|
2001-03-13 03:16:54 -05:00
|
|
|
|
2013-08-06 08:13:33 -04:00
|
|
|
The curl handle must be re-used in order for the persistent connections to
|
|
|
|
work.
|
2001-03-13 03:16:54 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="multi"></a>
|
2007-11-26 07:26:58 -05:00
|
|
|
multi interface/non-blocking
|
|
|
|
============================
|
|
|
|
|
2013-08-06 08:13:33 -04:00
|
|
|
The multi interface is a non-blocking interface to the library. To make that
|
2017-01-24 10:14:59 -05:00
|
|
|
interface work as well as possible, no low-level functions within libcurl
|
2013-08-06 08:13:33 -04:00
|
|
|
must be written to work in a blocking manner. (There are still a few spots
|
|
|
|
violating this rule.)
|
2007-11-26 07:26:58 -05:00
|
|
|
|
|
|
|
One of the primary reasons we introduced c-ares support was to allow the name
|
|
|
|
resolve phase to be perfectly non-blocking as well.
|
|
|
|
|
2013-08-06 08:13:33 -04:00
|
|
|
The FTP and the SFTP/SCP protocols are examples of how we adapt and adjust
|
|
|
|
the code to allow non-blocking operations even on multi-stage command-
|
|
|
|
response protocols. They are built around state machines that return when
|
|
|
|
they would otherwise block waiting for data. The DICT, LDAP and TELNET
|
|
|
|
protocols are crappy examples and they are subject for rewrite in the future
|
|
|
|
to better fit the libcurl protocol family.
|
2007-11-26 07:26:58 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="ssl"></a>
|
2007-11-26 07:26:58 -05:00
|
|
|
SSL libraries
|
|
|
|
=============
|
|
|
|
|
|
|
|
Originally libcurl supported SSLeay for SSL/TLS transports, but that was then
|
|
|
|
extended to its successor OpenSSL but has since also been extended to several
|
|
|
|
other SSL/TLS libraries and we expect and hope to further extend the support
|
|
|
|
in future libcurl versions.
|
|
|
|
|
|
|
|
To deal with this internally in the best way possible, we have a generic SSL
|
2019-05-16 18:11:27 -04:00
|
|
|
function API as provided by the `vtls/vtls.[ch]` system, and they are the only
|
2015-06-09 17:57:22 -04:00
|
|
|
SSL functions we must use from within libcurl. vtls is then crafted to use
|
|
|
|
the appropriate lower-level function calls to whatever SSL library that is in
|
2019-05-16 18:11:27 -04:00
|
|
|
use. For example `vtls/openssl.[ch]` for the OpenSSL library.
|
2007-11-26 07:26:58 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="symbols"></a>
|
2001-01-26 10:52:51 -05:00
|
|
|
Library Symbols
|
|
|
|
===============
|
2010-02-14 14:40:18 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
All symbols used internally in libcurl must use a `Curl_` prefix if they're
|
2001-05-29 09:23:41 -04:00
|
|
|
used in more than a single file. Single-file symbols must be made static.
|
2015-06-09 17:57:22 -04:00
|
|
|
Public ("exported") symbols must use a `curl_` prefix. (There are exceptions,
|
2011-01-27 17:37:16 -05:00
|
|
|
but they are to be changed to follow this pattern in future versions.) Public
|
2015-06-09 17:57:22 -04:00
|
|
|
API functions are marked with `CURL_EXTERN` in the public header files so
|
|
|
|
that all others can be hidden on platforms where this is possible.
|
2001-01-26 10:52:51 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="returncodes"></a>
|
2001-01-17 09:17:49 -05:00
|
|
|
Return Codes and Informationals
|
|
|
|
===============================
|
|
|
|
|
|
|
|
I've made things simple. Almost every function in libcurl returns a CURLcode,
|
2015-06-09 17:57:22 -04:00
|
|
|
that must be `CURLE_OK` if everything is OK or otherwise a suitable error
|
2019-05-16 18:11:27 -04:00
|
|
|
code as the `curl/curl.h` include file defines. The very spot that detects an
|
2015-06-09 17:57:22 -04:00
|
|
|
error must use the `Curl_failf()` function to set the human-readable error
|
2001-01-17 09:17:49 -05:00
|
|
|
description.
|
|
|
|
|
|
|
|
In aiding the user to understand what's happening and to debug curl usage, we
|
2017-01-24 10:14:59 -05:00
|
|
|
must supply a fair number of informational messages by using the
|
2015-06-09 17:57:22 -04:00
|
|
|
`Curl_infof()` function. Those messages are only displayed when the user
|
|
|
|
explicitly asks for them. They are best used when revealing information that
|
|
|
|
isn't otherwise obvious.
|
2001-01-17 09:17:49 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="abi"></a>
|
2007-11-26 07:26:58 -05:00
|
|
|
API/ABI
|
|
|
|
=======
|
|
|
|
|
|
|
|
We make an effort to not export or show internals or how internals work, as
|
|
|
|
that makes it easier to keep a solid API/ABI over time. See docs/libcurl/ABI
|
|
|
|
for our promise to users.
|
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="client"></a>
|
2000-05-22 13:35:35 -04:00
|
|
|
Client
|
|
|
|
======
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
`main()` resides in `src/tool_main.c`.
|
2001-04-27 10:46:17 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
`src/tool_hugehelp.c` is automatically generated by the `mkhelp.pl` perl
|
|
|
|
script to display the complete "manual" and the `src/tool_urlglob.c` file
|
|
|
|
holds the functions used for the URL-"globbing" support. Globbing in the
|
|
|
|
sense that the `{}` and `[]` expansion stuff is there.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The client mostly sets up its `config` struct properly, then
|
2015-06-09 17:57:22 -04:00
|
|
|
it calls the `curl_easy_*()` functions of the library and when it gets back
|
|
|
|
control after the `curl_easy_perform()` it cleans up the library, checks
|
|
|
|
status and exits.
|
2000-05-22 13:35:35 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
When the operation is done, the `ourWriteOut()` function in `src/writeout.c`
|
|
|
|
may be called to report about the operation. That function is using the
|
2015-06-09 17:57:22 -04:00
|
|
|
`curl_easy_getinfo()` function to extract useful information from the curl
|
2013-01-03 20:50:28 -05:00
|
|
|
session.
|
2000-10-11 06:59:36 -04:00
|
|
|
|
2013-08-06 08:13:33 -04:00
|
|
|
It may loop and do all this several times if many URLs were specified on the
|
|
|
|
command line or config file.
|
2001-01-17 09:17:49 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="memorydebug"></a>
|
2001-01-17 09:17:49 -05:00
|
|
|
Memory Debugging
|
|
|
|
================
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The file `lib/memdebug.c` contains debug-versions of a few functions.
|
|
|
|
Functions such as `malloc()`, `free()`, `fopen()`, `fclose()`, etc that
|
|
|
|
somehow deal with resources that might give us problems if we "leak" them.
|
|
|
|
The functions in the memdebug system do nothing fancy, they do their normal
|
|
|
|
function and then log information about what they just did. The logged data
|
|
|
|
can then be analyzed after a complete session,
|
2001-01-17 09:17:49 -05:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
`memanalyze.pl` is the perl script present in `tests/` that analyzes a log
|
|
|
|
file generated by the memory tracking system. It detects if resources are
|
2010-03-21 19:34:09 -04:00
|
|
|
allocated but never freed and other kinds of errors related to resource
|
|
|
|
management.
|
2001-01-17 09:17:49 -05:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
Internally, definition of preprocessor symbol `DEBUGBUILD` restricts code
|
|
|
|
which is only compiled for debug enabled builds. And symbol `CURLDEBUG` is
|
|
|
|
used to differentiate code which is _only_ used for memory
|
|
|
|
tracking/debugging.
|
2009-10-21 14:01:11 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
Use `-DCURLDEBUG` when compiling to enable memory debugging, this is also
|
|
|
|
switched on by running configure with `--enable-curldebug`. Use
|
|
|
|
`-DDEBUGBUILD` when compiling to enable a debug build or run configure with
|
|
|
|
`--enable-debug`.
|
2009-10-21 14:01:11 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
`curl --version` will list 'Debug' feature for debug enabled builds, and
|
2009-10-21 14:01:11 -04:00
|
|
|
will list 'TrackMemory' feature for curl debug memory tracking capable
|
|
|
|
builds. These features are independent and can be controlled when running
|
2019-05-16 18:11:27 -04:00
|
|
|
the configure script. When `--enable-debug` is given both features will be
|
2009-10-21 14:01:11 -04:00
|
|
|
enabled, unless some restriction prevents memory tracking from being used.
|
2001-01-17 09:17:49 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="test"></a>
|
2000-11-29 02:47:51 -05:00
|
|
|
Test Suite
|
|
|
|
==========
|
|
|
|
|
2011-04-17 10:34:25 -04:00
|
|
|
The test suite is placed in its own subdirectory directly off the root in the
|
|
|
|
curl archive tree, and it contains a bunch of scripts and a lot of test case
|
|
|
|
data.
|
2000-11-29 02:47:51 -05:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The main test script is `runtests.pl` that will invoke test servers like
|
|
|
|
`httpserver.pl` and `ftpserver.pl` before all the test cases are performed.
|
|
|
|
The test suite currently only runs on Unix-like platforms.
|
2000-10-11 06:59:36 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
You'll find a description of the test suite in the `tests/README` file, and
|
|
|
|
the test case data files in the `tests/FILEFORMAT` file.
|
2001-01-17 09:17:49 -05:00
|
|
|
|
|
|
|
The test suite automatically detects if curl was built with the memory
|
2017-01-24 10:14:59 -05:00
|
|
|
debugging enabled, and if it was, it will detect memory leaks, too.
|
2001-01-17 09:17:49 -05:00
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
<a name="asyncdns"></a>
|
|
|
|
Asynchronous name resolves
|
|
|
|
==========================
|
|
|
|
|
|
|
|
libcurl can be built to do name resolves asynchronously, using either the
|
|
|
|
normal resolver in a threaded manner or by using c-ares.
|
|
|
|
|
|
|
|
<a name="cares"></a>
|
|
|
|
[c-ares][3]
|
|
|
|
------
|
|
|
|
|
|
|
|
### Build libcurl to use a c-ares
|
|
|
|
|
|
|
|
1. ./configure --enable-ares=/path/to/ares/install
|
|
|
|
2. make
|
|
|
|
|
|
|
|
### c-ares on win32
|
|
|
|
|
|
|
|
First I compiled c-ares. I changed the default C runtime library to be the
|
|
|
|
single-threaded rather than the multi-threaded (this seems to be required to
|
|
|
|
prevent linking errors later on). Then I simply build the areslib project
|
|
|
|
(the other projects adig/ahost seem to fail under MSVC).
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
Next was libcurl. I opened `lib/config-win32.h` and I added a:
|
2015-06-09 17:57:22 -04:00
|
|
|
`#define USE_ARES 1`
|
|
|
|
|
|
|
|
Next thing I did was I added the path for the ares includes to the include
|
|
|
|
path, and the libares.lib to the libraries.
|
|
|
|
|
|
|
|
Lastly, I also changed libcurl to be single-threaded rather than
|
|
|
|
multi-threaded, again this was to prevent some duplicate symbol errors. I'm
|
|
|
|
not sure why I needed to change everything to single-threaded, but when I
|
2019-05-16 18:11:27 -04:00
|
|
|
didn't I got redefinition errors for several CRT functions (`malloc()`,
|
|
|
|
`stricmp()`, etc.)
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
<a name="curl_off_t"></a>
|
|
|
|
`curl_off_t`
|
|
|
|
==========
|
|
|
|
|
2016-10-31 00:38:27 -04:00
|
|
|
`curl_off_t` is a data type provided by the external libcurl include
|
2015-06-09 17:57:22 -04:00
|
|
|
headers. It is the type meant to be used for the [`curl_easy_setopt()`][1]
|
2019-05-16 18:11:27 -04:00
|
|
|
options that end with LARGE. The type is 64-bit large on most modern
|
2015-06-09 17:57:22 -04:00
|
|
|
platforms.
|
|
|
|
|
2019-02-06 04:29:14 -05:00
|
|
|
<a name="curlx"></a>
|
2015-06-09 17:57:22 -04:00
|
|
|
curlx
|
|
|
|
=====
|
|
|
|
|
|
|
|
The libcurl source code offers a few functions by source only. They are not
|
|
|
|
part of the official libcurl API, but the source files might be useful for
|
|
|
|
others so apps can optionally compile/build with these sources to gain
|
|
|
|
additional functions.
|
|
|
|
|
|
|
|
We provide them through a single header file for easy access for apps:
|
2019-05-16 18:11:27 -04:00
|
|
|
`curlx.h`
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
`curlx_strtoofft()`
|
|
|
|
-------------------
|
2016-10-31 00:38:27 -04:00
|
|
|
A macro that converts a string containing a number to a `curl_off_t` number.
|
|
|
|
This might use the `curlx_strtoll()` function which is provided as source
|
2015-06-09 17:57:22 -04:00
|
|
|
code in strtoofft.c. Note that the function is only provided if no
|
2019-05-16 18:11:27 -04:00
|
|
|
`strtoll()` (or equivalent) function exist on your platform. If `curl_off_t`
|
|
|
|
is only a 32-bit number on your platform, this macro uses `strtol()`.
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
Future
|
|
|
|
------
|
|
|
|
|
2016-10-31 00:38:27 -04:00
|
|
|
Several functions will be removed from the public `curl_` name space in a
|
|
|
|
future libcurl release. They will then only become available as `curlx_`
|
2015-06-09 17:57:22 -04:00
|
|
|
functions instead. To make the transition easier, we already today provide
|
2017-01-24 10:14:59 -05:00
|
|
|
these functions with the `curlx_` prefix to allow sources to be built
|
|
|
|
properly with the new function names. The concerned functions are:
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
- `curlx_getenv`
|
|
|
|
- `curlx_strequal`
|
|
|
|
- `curlx_strnequal`
|
|
|
|
- `curlx_mvsnprintf`
|
|
|
|
- `curlx_msnprintf`
|
|
|
|
- `curlx_maprintf`
|
|
|
|
- `curlx_mvaprintf`
|
|
|
|
- `curlx_msprintf`
|
|
|
|
- `curlx_mprintf`
|
|
|
|
- `curlx_mfprintf`
|
|
|
|
- `curlx_mvsprintf`
|
|
|
|
- `curlx_mvprintf`
|
|
|
|
- `curlx_mvfprintf`
|
|
|
|
|
|
|
|
<a name="contentencoding"></a>
|
|
|
|
Content Encoding
|
|
|
|
================
|
|
|
|
|
|
|
|
## About content encodings
|
|
|
|
|
|
|
|
[HTTP/1.1][4] specifies that a client may request that a server encode its
|
2017-10-20 13:01:32 -04:00
|
|
|
response. This is usually used to compress a response using one (or more)
|
|
|
|
encodings from a set of commonly available compression techniques. These
|
2019-05-16 18:11:27 -04:00
|
|
|
schemes include `deflate` (the zlib algorithm), `gzip`, `br` (brotli) and
|
|
|
|
`compress`. A client requests that the server perform an encoding by including
|
|
|
|
an `Accept-Encoding` header in the request document. The value of the header
|
|
|
|
should be one of the recognized tokens `deflate`, ... (there's a way to
|
2017-10-20 13:01:32 -04:00
|
|
|
register new schemes/tokens, see sec 3.5 of the spec). A server MAY honor
|
|
|
|
the client's encoding request. When a response is encoded, the server
|
2019-05-16 18:11:27 -04:00
|
|
|
includes a `Content-Encoding` header in the response. The value of the
|
|
|
|
`Content-Encoding` header indicates which encodings were used to encode the
|
2017-10-20 13:01:32 -04:00
|
|
|
data, in the order in which they were applied.
|
|
|
|
|
2015-06-09 17:57:22 -04:00
|
|
|
It's also possible for a client to attach priorities to different schemes so
|
|
|
|
that the server knows which it prefers. See sec 14.3 of RFC 2616 for more
|
2019-05-16 18:11:27 -04:00
|
|
|
information on the `Accept-Encoding` header. See sec
|
|
|
|
[3.1.2.2 of RFC 7231][15] for more information on the `Content-Encoding`
|
|
|
|
header.
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
## Supported content encodings
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The `deflate`, `gzip` and `br` content encodings are supported by libcurl.
|
2017-11-05 09:28:16 -05:00
|
|
|
Both regular and chunked transfers work fine. The zlib library is required
|
2019-05-16 18:11:27 -04:00
|
|
|
for the `deflate` and `gzip` encodings, while the brotli decoding library is
|
|
|
|
for the `br` encoding.
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
## The libcurl interface
|
|
|
|
|
|
|
|
To cause libcurl to request a content encoding use:
|
|
|
|
|
|
|
|
[`curl_easy_setopt`][1](curl, [`CURLOPT_ACCEPT_ENCODING`][5], string)
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
where string is the intended value of the `Accept-Encoding` header.
|
2015-06-09 17:57:22 -04:00
|
|
|
|
2017-11-05 09:09:48 -05:00
|
|
|
Currently, libcurl does support multiple encodings but only
|
2019-05-16 18:11:27 -04:00
|
|
|
understands how to process responses that use the `deflate`, `gzip` and/or
|
|
|
|
`br` content encodings, so the only values for [`CURLOPT_ACCEPT_ENCODING`][5]
|
|
|
|
that will work (besides `identity`, which does nothing) are `deflate`,
|
|
|
|
`gzip` and `br`. If a response is encoded using the `compress` or methods,
|
2017-10-20 13:01:32 -04:00
|
|
|
libcurl will return an error indicating that the response could
|
2019-05-16 18:11:27 -04:00
|
|
|
not be decoded. If `<string>` is NULL no `Accept-Encoding` header is
|
|
|
|
generated. If `<string>` is a zero-length string, then an `Accept-Encoding`
|
|
|
|
header containing all supported encodings will be generated.
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
The [`CURLOPT_ACCEPT_ENCODING`][5] must be set to any non-NULL value for
|
|
|
|
content to be automatically decoded. If it is not set and the server still
|
|
|
|
sends encoded content (despite not having been asked), the data is returned
|
2019-05-16 18:11:27 -04:00
|
|
|
in its raw form and the `Content-Encoding` type is not checked.
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
## The curl interface
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
Use the [`--compressed`][6] option with curl to cause it to ask servers to
|
2015-06-09 17:57:22 -04:00
|
|
|
compress responses using any format supported by curl.
|
|
|
|
|
|
|
|
<a name="hostip"></a>
|
2019-05-16 18:11:27 -04:00
|
|
|
`hostip.c` explained
|
|
|
|
====================
|
2015-06-09 17:57:22 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The main compile-time defines to keep in mind when reading the `host*.c`
|
|
|
|
source file are these:
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
## `CURLRES_IPV6`
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
this host has `getaddrinfo()` and family, and thus we use that. The host may
|
2015-06-09 17:57:22 -04:00
|
|
|
not be able to resolve IPv6, but we don't really have to take that into
|
2016-10-31 00:38:27 -04:00
|
|
|
account. Hosts that aren't IPv6-enabled have `CURLRES_IPV4` defined.
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
## `CURLRES_ARES`
|
|
|
|
|
|
|
|
is defined if libcurl is built to use c-ares for asynchronous name
|
2019-05-16 18:11:27 -04:00
|
|
|
resolves. This can be Windows or \*nix.
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
## `CURLRES_THREADED`
|
|
|
|
|
|
|
|
is defined if libcurl is built to use threading for asynchronous name
|
|
|
|
resolves. The name resolve will be done in a new thread, and the supported
|
|
|
|
asynch API will be the same as for ares-builds. This is the default under
|
|
|
|
(native) Windows.
|
|
|
|
|
|
|
|
If any of the two previous are defined, `CURLRES_ASYNCH` is defined too. If
|
|
|
|
libcurl is not built to use an asynchronous resolver, `CURLRES_SYNCH` is
|
|
|
|
defined.
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
## `host*.c` sources
|
2015-06-09 17:57:22 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The `host*.c` sources files are split up like this:
|
2015-06-09 17:57:22 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
- `hostip.c` - method-independent resolver functions and utility functions
|
|
|
|
- `hostasyn.c` - functions for asynchronous name resolves
|
|
|
|
- `hostsyn.c` - functions for synchronous name resolves
|
|
|
|
- `asyn-ares.c` - functions for asynchronous name resolves using c-ares
|
|
|
|
- `asyn-thread.c` - functions for asynchronous name resolves using threads
|
|
|
|
- `hostip4.c` - IPv4 specific functions
|
|
|
|
- `hostip6.c` - IPv6 specific functions
|
2015-06-09 17:57:22 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The `hostip.h` is the single united header file for all this. It defines the
|
|
|
|
`CURLRES_*` defines based on the `config*.h` and `curl_setup.h` defines.
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
<a name="memoryleak"></a>
|
|
|
|
Track Down Memory Leaks
|
|
|
|
=======================
|
|
|
|
|
|
|
|
## Single-threaded
|
|
|
|
|
|
|
|
Please note that this memory leak system is not adjusted to work in more
|
|
|
|
than one thread. If you want/need to use it in a multi-threaded app. Please
|
|
|
|
adjust accordingly.
|
|
|
|
|
|
|
|
## Build
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
Rebuild libcurl with `-DCURLDEBUG` (usually, rerunning configure with
|
|
|
|
`--enable-debug` fixes this). `make clean` first, then `make` so that all
|
2017-01-24 10:14:59 -05:00
|
|
|
files are actually rebuilt properly. It will also make sense to build
|
2019-05-16 18:11:27 -04:00
|
|
|
libcurl with the debug option (usually `-g` to the compiler) so that
|
|
|
|
debugging it will be easier if you actually do find a leak in the library.
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
This will create a library that has memory debugging enabled.
|
|
|
|
|
|
|
|
## Modify Your Application
|
|
|
|
|
|
|
|
Add a line in your application code:
|
|
|
|
|
2019-08-08 08:51:01 -04:00
|
|
|
`curl_dbg_memdebug("dump");`
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
This will make the malloc debug system output a full trace of all resource
|
|
|
|
using functions to the given file name. Make sure you rebuild your program
|
|
|
|
and that you link with the same libcurl you built for this purpose as
|
|
|
|
described above.
|
|
|
|
|
|
|
|
## Run Your Application
|
|
|
|
|
|
|
|
Run your program as usual. Watch the specified memory trace file grow.
|
|
|
|
|
|
|
|
Make your program exit and use the proper libcurl cleanup functions etc. So
|
|
|
|
that all non-leaks are returned/freed properly.
|
|
|
|
|
|
|
|
## Analyze the Flow
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
Use the `tests/memanalyze.pl` perl script to analyze the dump file:
|
2015-06-09 17:57:22 -04:00
|
|
|
|
|
|
|
tests/memanalyze.pl dump
|
|
|
|
|
|
|
|
This now outputs a report on what resources that were allocated but never
|
|
|
|
freed etc. This report is very fine for posting to the list!
|
|
|
|
|
|
|
|
If this doesn't produce any output, no leak was detected in libcurl. Then
|
|
|
|
the leak is mostly likely to be in your code.
|
|
|
|
|
|
|
|
<a name="multi_socket"></a>
|
|
|
|
`multi_socket`
|
|
|
|
==============
|
|
|
|
|
|
|
|
Implementation of the `curl_multi_socket` API
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The main ideas of this API are simply:
|
|
|
|
|
|
|
|
1. The application can use whatever event system it likes as it gets info
|
|
|
|
from libcurl about what file descriptors libcurl waits for what action
|
|
|
|
on. (The previous API returns `fd_sets` which is very
|
|
|
|
`select()`-centric).
|
|
|
|
|
|
|
|
2. When the application discovers action on a single socket, it calls
|
|
|
|
libcurl and informs that there was action on this particular socket and
|
|
|
|
libcurl can then act on that socket/transfer only and not care about
|
|
|
|
any other transfers. (The previous API always had to scan through all
|
|
|
|
the existing transfers.)
|
|
|
|
|
|
|
|
The idea is that [`curl_multi_socket_action()`][7] calls a given callback
|
|
|
|
with information about what socket to wait for what action on, and the
|
|
|
|
callback only gets called if the status of that socket has changed.
|
|
|
|
|
|
|
|
We also added a timer callback that makes libcurl call the application when
|
|
|
|
the timeout value changes, and you set that with [`curl_multi_setopt()`][9]
|
|
|
|
and the [`CURLMOPT_TIMERFUNCTION`][10] option. To get this to work,
|
|
|
|
Internally, there's an added struct to each easy handle in which we store
|
|
|
|
an "expire time" (if any). The structs are then "splay sorted" so that we
|
|
|
|
can add and remove times from the linked list and yet somewhat swiftly
|
|
|
|
figure out both how long there is until the next nearest timer expires
|
|
|
|
and which timer (handle) we should take care of now. Of course, the upside
|
|
|
|
of all this is that we get a [`curl_multi_timeout()`][8] that should also
|
|
|
|
work with old-style applications that use [`curl_multi_perform()`][11].
|
|
|
|
|
|
|
|
We created an internal "socket to easy handles" hash table that given
|
|
|
|
a socket (file descriptor) returns the easy handle that waits for action on
|
|
|
|
that socket. This hash is made using the already existing hash code
|
|
|
|
(previously only used for the DNS cache).
|
|
|
|
|
|
|
|
To make libcurl able to report plain sockets in the socket callback, we had
|
|
|
|
to re-organize the internals of the [`curl_multi_fdset()`][12] etc so that
|
|
|
|
the conversion from sockets to `fd_sets` for that function is only done in
|
|
|
|
the last step before the data is returned. I also had to extend c-ares to
|
|
|
|
get a function that can return plain sockets, as that library too returned
|
|
|
|
only `fd_sets` and that is no longer good enough. The changes done to c-ares
|
|
|
|
are available in c-ares 1.3.1 and later.
|
2011-04-17 10:34:25 -04:00
|
|
|
|
2015-06-09 18:11:54 -04:00
|
|
|
<a name="structs"></a>
|
|
|
|
Structs in libcurl
|
|
|
|
==================
|
|
|
|
|
|
|
|
This section should cover 7.32.0 pretty accurately, but will make sense even
|
|
|
|
for older and later versions as things don't change drastically that often.
|
|
|
|
|
2019-04-23 05:36:22 -04:00
|
|
|
<a name="Curl_easy"></a>
|
2016-06-21 09:47:12 -04:00
|
|
|
## Curl_easy
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
The `Curl_easy` struct is the one returned to the outside in the external API
|
2019-05-16 18:11:27 -04:00
|
|
|
as a `CURL *`. This is usually known as an easy handle in API documentations
|
2016-06-21 09:47:12 -04:00
|
|
|
and examples.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
|
|
|
Information and state that is related to the actual connection is in the
|
2019-05-16 18:11:27 -04:00
|
|
|
`connectdata` struct. When a transfer is about to be made, libcurl will
|
2015-06-09 18:11:54 -04:00
|
|
|
either create a new connection or re-use an existing one. The particular
|
|
|
|
connectdata that is used by this handle is pointed out by
|
2016-10-30 18:45:25 -04:00
|
|
|
`Curl_easy->easy_conn`.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
|
|
|
Data and information that regard this particular single transfer is put in
|
2019-05-16 18:11:27 -04:00
|
|
|
the `SingleRequest` sub-struct.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
When the `Curl_easy` struct is added to a multi handle, as it must be in
|
2019-05-16 18:11:27 -04:00
|
|
|
order to do any transfer, the `->multi` member will point to the `Curl_multi`
|
|
|
|
struct it belongs to. The `->prev` and `->next` members will then be used by
|
|
|
|
the multi code to keep a linked list of `Curl_easy` structs that are added to
|
|
|
|
that same multi handle. libcurl always uses multi so `->multi` *will* point
|
|
|
|
to a `Curl_multi` when a transfer is in progress.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
`->mstate` is the multi state of this particular `Curl_easy`. When
|
2015-06-09 18:11:54 -04:00
|
|
|
`multi_runsingle()` is called, it will act on this handle according to which
|
|
|
|
state it is in. The mstate is also what tells which sockets to return for a
|
2016-10-30 18:45:25 -04:00
|
|
|
specific `Curl_easy` when [`curl_multi_fdset()`][12] is called etc.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The libcurl source code generally use the name `data` for the variable that
|
2016-10-30 18:45:25 -04:00
|
|
|
points to the `Curl_easy`.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
When doing multiplexed HTTP/2 transfers, each `Curl_easy` is associated with
|
2016-06-21 09:47:12 -04:00
|
|
|
an individual stream, sharing the same connectdata struct. Multiplexing
|
2015-06-09 18:11:54 -04:00
|
|
|
makes it even more important to keep things associated with the right thing!
|
|
|
|
|
2019-04-23 05:36:22 -04:00
|
|
|
<a name="connectdata"></a>
|
2015-06-09 18:11:54 -04:00
|
|
|
## connectdata
|
|
|
|
|
|
|
|
A general idea in libcurl is to keep connections around in a connection
|
|
|
|
"cache" after they have been used in case they will be used again and then
|
|
|
|
re-use an existing one instead of creating a new as it creates a significant
|
|
|
|
performance boost.
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
Each `connectdata` identifies a single physical connection to a server. If
|
2015-06-09 18:11:54 -04:00
|
|
|
the connection can't be kept alive, the connection will be closed after use
|
|
|
|
and then this struct can be removed from the cache and freed.
|
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
Thus, the same `Curl_easy` can be used multiple times and each time select
|
2019-05-16 18:11:27 -04:00
|
|
|
another `connectdata` struct to use for the connection. Keep this in mind,
|
|
|
|
as it is then important to consider if options or choices are based on the
|
2016-10-30 18:45:25 -04:00
|
|
|
connection or the `Curl_easy`.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
Functions in libcurl will assume that `connectdata->data` points to the
|
2016-10-30 18:45:25 -04:00
|
|
|
`Curl_easy` that uses this connection (for the moment).
|
2015-06-09 18:11:54 -04:00
|
|
|
|
|
|
|
As a special complexity, some protocols supported by libcurl require a
|
|
|
|
special disconnect procedure that is more than just shutting down the
|
|
|
|
socket. It can involve sending one or more commands to the server before
|
|
|
|
doing so. Since connections are kept in the connection cache after use, the
|
2016-10-30 18:45:25 -04:00
|
|
|
original `Curl_easy` may no longer be around when the time comes to shut down
|
2016-06-21 09:47:12 -04:00
|
|
|
a particular connection. For this purpose, libcurl holds a special dummy
|
2016-10-31 00:38:27 -04:00
|
|
|
`closure_handle` `Curl_easy` in the `Curl_multi` struct to use when needed.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
|
|
|
FTP uses two TCP connections for a typical transfer but it keeps both in
|
|
|
|
this single struct and thus can be considered a single connection for most
|
|
|
|
internal concerns.
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The libcurl source code generally use the name `conn` for the variable that
|
2015-06-09 18:11:54 -04:00
|
|
|
points to the connectdata.
|
|
|
|
|
2019-04-23 05:36:22 -04:00
|
|
|
<a name="Curl_multi"></a>
|
2015-06-09 18:11:54 -04:00
|
|
|
## Curl_multi
|
|
|
|
|
|
|
|
Internally, the easy interface is implemented as a wrapper around multi
|
|
|
|
interface functions. This makes everything multi interface.
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
`Curl_multi` is the multi handle struct exposed as `CURLM *` in external
|
2016-10-31 00:38:27 -04:00
|
|
|
APIs.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
This struct holds a list of `Curl_easy` structs that have been added to this
|
2016-06-21 09:47:12 -04:00
|
|
|
handle with [`curl_multi_add_handle()`][13]. The start of the list is
|
2016-10-30 18:45:25 -04:00
|
|
|
`->easyp` and `->num_easy` is a counter of added `Curl_easy`s.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
`->msglist` is a linked list of messages to send back when
|
2015-06-09 18:11:54 -04:00
|
|
|
[`curl_multi_info_read()`][14] is called. Basically a node is added to that
|
2016-10-30 18:45:25 -04:00
|
|
|
list when an individual `Curl_easy`'s transfer has completed.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2016-10-31 00:38:27 -04:00
|
|
|
`->hostcache` points to the name cache. It is a hash table for looking up
|
|
|
|
name to IP. The nodes have a limited life time in there and this cache is
|
|
|
|
meant to reduce the time for when the same name is wanted within a short
|
|
|
|
period of time.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
`->timetree` points to a tree of `Curl_easy`s, sorted by the remaining time
|
|
|
|
until it should be checked - normally some sort of timeout. Each `Curl_easy`
|
2016-06-21 09:47:12 -04:00
|
|
|
has one node in the tree.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2017-01-24 10:14:59 -05:00
|
|
|
`->sockhash` is a hash table to allow fast lookups of socket descriptor for
|
|
|
|
which `Curl_easy` uses that descriptor. This is necessary for the
|
2015-06-09 18:11:54 -04:00
|
|
|
`multi_socket` API.
|
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
`->conn_cache` points to the connection cache. It keeps track of all
|
2015-06-09 18:11:54 -04:00
|
|
|
connections that are kept after use. The cache has a maximum size.
|
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
`->closure_handle` is described in the `connectdata` section.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
The libcurl source code generally use the name `multi` for the variable that
|
2016-10-30 18:45:25 -04:00
|
|
|
points to the `Curl_multi` struct.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2019-04-23 05:36:22 -04:00
|
|
|
<a name="Curl_handler"></a>
|
2015-06-09 18:11:54 -04:00
|
|
|
## Curl_handler
|
|
|
|
|
|
|
|
Each unique protocol that is supported by libcurl needs to provide at least
|
|
|
|
one `Curl_handler` struct. It defines what the protocol is called and what
|
|
|
|
functions the main code should call to deal with protocol specific issues.
|
2019-05-16 18:11:27 -04:00
|
|
|
In general, there's a source file named `[protocol].c` in which there's a
|
|
|
|
`struct Curl_handler Curl_handler_[protocol]` declared. In `url.c` there's
|
2015-06-09 18:11:54 -04:00
|
|
|
then the main array with all individual `Curl_handler` structs pointed to
|
|
|
|
from a single array which is scanned through when a URL is given to libcurl
|
|
|
|
to work with.
|
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
`->scheme` is the URL scheme name, usually spelled out in uppercase. That's
|
2018-10-05 14:00:15 -04:00
|
|
|
"HTTP" or "FTP" etc. SSL versions of the protocol need their own
|
|
|
|
`Curl_handler` setup so HTTPS separate from HTTP.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2016-10-31 00:38:27 -04:00
|
|
|
`->setup_connection` is called to allow the protocol code to allocate
|
|
|
|
protocol specific data that then gets associated with that `Curl_easy` for
|
|
|
|
the rest of this transfer. It gets freed again at the end of the transfer.
|
2019-05-16 18:11:27 -04:00
|
|
|
It will be called before the `connectdata` for the transfer has been
|
2016-10-31 00:38:27 -04:00
|
|
|
selected/created. Most protocols will allocate its private
|
2019-05-16 18:11:27 -04:00
|
|
|
`struct [PROTOCOL]` here and assign `Curl_easy->req.protop` to point to it.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
`->connect_it` allows a protocol to do some specific actions after the TCP
|
2015-06-09 18:11:54 -04:00
|
|
|
connect is done, that can still be considered part of the connection phase.
|
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
Some protocols will alter the `connectdata->recv[]` and
|
|
|
|
`connectdata->send[]` function pointers in this function.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
`->connecting` is similarly a function that keeps getting called as long as
|
|
|
|
the protocol considers itself still in the connecting phase.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
`->do_it` is the function called to issue the transfer request. What we call
|
2015-06-09 18:11:54 -04:00
|
|
|
the DO action internally. If the DO is not enough and things need to be kept
|
2016-10-30 18:45:25 -04:00
|
|
|
getting done for the entire DO sequence to complete, `->doing` is then
|
|
|
|
usually also provided. Each protocol that needs to do multiple commands or
|
|
|
|
similar for do/doing need to implement their own state machines (see SCP,
|
|
|
|
SFTP, FTP). Some protocols (only FTP and only due to historical reasons) has
|
|
|
|
a separate piece of the DO state called `DO_MORE`.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
`->doing` keeps getting called while issuing the transfer request command(s)
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
`->done` gets called when the transfer is complete and DONE. That's after the
|
2015-06-09 18:11:54 -04:00
|
|
|
main data has been transferred.
|
|
|
|
|
2016-10-31 00:38:27 -04:00
|
|
|
`->do_more` gets called during the `DO_MORE` state. The FTP protocol uses
|
|
|
|
this state when setting up the second connection.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2019-04-23 05:29:47 -04:00
|
|
|
`->proto_getsock`
|
|
|
|
`->doing_getsock`
|
|
|
|
`->domore_getsock`
|
|
|
|
`->perform_getsock`
|
2015-06-09 18:11:54 -04:00
|
|
|
Functions that return socket information. Which socket(s) to wait for which
|
|
|
|
action(s) during the particular multi state.
|
|
|
|
|
2019-04-23 05:29:47 -04:00
|
|
|
`->disconnect` is called immediately before the TCP connection is shutdown.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2019-04-23 05:29:47 -04:00
|
|
|
`->readwrite` gets called during transfer to allow the protocol to do extra
|
2015-06-09 18:11:54 -04:00
|
|
|
reads/writes
|
|
|
|
|
2019-04-23 05:29:47 -04:00
|
|
|
`->defport` is the default report TCP or UDP port this protocol uses
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2019-04-23 05:29:47 -04:00
|
|
|
`->protocol` is one or more bits in the `CURLPROTO_*` set. The SSL versions
|
2015-06-09 18:11:54 -04:00
|
|
|
have their "base" protocol set and then the SSL variation. Like
|
|
|
|
"HTTP|HTTPS".
|
|
|
|
|
2019-04-23 05:29:47 -04:00
|
|
|
`->flags` is a bitmask with additional information about the protocol that will
|
2015-06-09 18:11:54 -04:00
|
|
|
make it get treated differently by the generic engine:
|
|
|
|
|
|
|
|
- `PROTOPT_SSL` - will make it connect and negotiate SSL
|
|
|
|
|
|
|
|
- `PROTOPT_DUAL` - this protocol uses two connections
|
|
|
|
|
|
|
|
- `PROTOPT_CLOSEACTION` - this protocol has actions to do before closing the
|
|
|
|
connection. This flag is no longer used by code, yet still set for a bunch
|
2017-01-24 10:14:59 -05:00
|
|
|
of protocol handlers.
|
2016-06-21 09:47:12 -04:00
|
|
|
|
2015-06-09 18:11:54 -04:00
|
|
|
- `PROTOPT_DIRLOCK` - "direction lock". The SSH protocols set this bit to
|
|
|
|
limit which "direction" of socket actions that the main engine will
|
2017-01-24 10:14:59 -05:00
|
|
|
concern itself with.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2019-05-16 18:11:27 -04:00
|
|
|
- `PROTOPT_NONETWORK` - a protocol that doesn't use network (read `file:`)
|
2015-06-09 18:11:54 -04:00
|
|
|
|
|
|
|
- `PROTOPT_NEEDSPWD` - this protocol needs a password and will use a default
|
|
|
|
one unless one is provided
|
|
|
|
|
|
|
|
- `PROTOPT_NOURLQUERY` - this protocol can't handle a query part on the URL
|
|
|
|
(?foo=bar)
|
|
|
|
|
2019-04-23 05:36:22 -04:00
|
|
|
<a name="conncache"></a>
|
2015-06-09 18:11:54 -04:00
|
|
|
## conncache
|
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
Is a hash table with connections for later re-use. Each `Curl_easy` has a
|
2016-06-21 09:47:12 -04:00
|
|
|
pointer to its connection cache. Each multi handle sets up a connection
|
2016-10-30 18:45:25 -04:00
|
|
|
cache that all added `Curl_easy`s share by default.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2019-04-23 05:36:22 -04:00
|
|
|
<a name="Curl_share"></a>
|
2015-06-09 18:11:54 -04:00
|
|
|
## Curl_share
|
2016-06-21 09:47:12 -04:00
|
|
|
|
2015-06-09 18:11:54 -04:00
|
|
|
The libcurl share API allocates a `Curl_share` struct, exposed to the
|
2019-05-16 18:11:27 -04:00
|
|
|
external API as `CURLSH *`.
|
2015-06-09 18:11:54 -04:00
|
|
|
|
2017-01-24 10:14:59 -05:00
|
|
|
The idea is that the struct can have a set of its own versions of caches and
|
2015-06-09 18:11:54 -04:00
|
|
|
pools and then by providing this struct in the `CURLOPT_SHARE` option, those
|
2016-10-30 18:45:25 -04:00
|
|
|
specific `Curl_easy`s will use the caches/pools that this share handle
|
2015-06-09 18:11:54 -04:00
|
|
|
holds.
|
|
|
|
|
2016-10-30 18:45:25 -04:00
|
|
|
Then individual `Curl_easy` structs can be made to share specific things
|
2015-06-09 18:11:54 -04:00
|
|
|
that they otherwise wouldn't, such as cookies.
|
|
|
|
|
|
|
|
The `Curl_share` struct can currently hold cookies, DNS cache and the SSL
|
|
|
|
session cache.
|
|
|
|
|
2019-04-23 05:36:22 -04:00
|
|
|
<a name="CookieInfo"></a>
|
2015-06-09 18:11:54 -04:00
|
|
|
## CookieInfo
|
|
|
|
|
|
|
|
This is the main cookie struct. It holds all known cookies and related
|
2019-05-16 18:11:27 -04:00
|
|
|
information. Each `Curl_easy` has its own private `CookieInfo` even when
|
2015-06-09 18:11:54 -04:00
|
|
|
they are added to a multi handle. They can be made to share cookies by using
|
|
|
|
the share API.
|
|
|
|
|
2011-04-17 10:34:25 -04:00
|
|
|
|
2016-02-01 18:24:30 -05:00
|
|
|
[1]: https://curl.haxx.se/libcurl/c/curl_easy_setopt.html
|
|
|
|
[2]: https://curl.haxx.se/libcurl/c/curl_easy_init.html
|
2017-08-08 15:22:34 -04:00
|
|
|
[3]: https://c-ares.haxx.se/
|
2015-06-09 17:57:22 -04:00
|
|
|
[4]: https://tools.ietf.org/html/rfc7230 "RFC 7230"
|
2016-02-01 18:24:30 -05:00
|
|
|
[5]: https://curl.haxx.se/libcurl/c/CURLOPT_ACCEPT_ENCODING.html
|
|
|
|
[6]: https://curl.haxx.se/docs/manpage.html#--compressed
|
|
|
|
[7]: https://curl.haxx.se/libcurl/c/curl_multi_socket_action.html
|
|
|
|
[8]: https://curl.haxx.se/libcurl/c/curl_multi_timeout.html
|
|
|
|
[9]: https://curl.haxx.se/libcurl/c/curl_multi_setopt.html
|
|
|
|
[10]: https://curl.haxx.se/libcurl/c/CURLMOPT_TIMERFUNCTION.html
|
|
|
|
[11]: https://curl.haxx.se/libcurl/c/curl_multi_perform.html
|
|
|
|
[12]: https://curl.haxx.se/libcurl/c/curl_multi_fdset.html
|
|
|
|
[13]: https://curl.haxx.se/libcurl/c/curl_multi_add_handle.html
|
|
|
|
[14]: https://curl.haxx.se/libcurl/c/curl_multi_info_read.html
|
2017-10-20 13:01:32 -04:00
|
|
|
[15]: https://tools.ietf.org/html/rfc7231#section-3.1.2.2
|