Install curl-7.25.0.tar.bz2
[msysgit.git] / mingw / share / man / man3 / libcurl-tutorial.3
blob1cca23f33505e469b3ddd82f04d37d92e1271b71
1 .\" **************************************************************************
2 .\" *                                  _   _ ____  _
3 .\" *  Project                     ___| | | |  _ \| |
4 .\" *                             / __| | | | |_) | |
5 .\" *                            | (__| |_| |  _ <| |___
6 .\" *                             \___|\___/|_| \_\_____|
7 .\" *
8 .\" * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
9 .\" *
10 .\" * This software is licensed as described in the file COPYING, which
11 .\" * you should have received as part of this distribution. The terms
12 .\" * are also available at http://curl.haxx.se/docs/copyright.html.
13 .\" *
14 .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 .\" * copies of the Software, and permit persons to whom the Software is
16 .\" * furnished to do so, under the terms of the COPYING file.
17 .\" *
18 .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 .\" * KIND, either express or implied.
20 .\" *
21 .\" **************************************************************************
22 .\"
23 .TH libcurl-tutorial 3 "4 Mar 2009" "libcurl" "libcurl programming"
24 .SH NAME
25 libcurl-tutorial \- libcurl programming tutorial
26 .SH "Objective"
27 This document attempts to describe the general principles and some basic
28 approaches to consider when programming with libcurl. The text will focus
29 mainly on the C interface but might apply fairly well on other interfaces as
30 well as they usually follow the C one pretty closely.
32 This document will refer to 'the user' as the person writing the source code
33 that uses libcurl. That would probably be you or someone in your position.
34 What will be generally referred to as 'the program' will be the collected
35 source code that you write that is using libcurl for transfers. The program
36 is outside libcurl and libcurl is outside of the program.
38 To get more details on all options and functions described herein, please
39 refer to their respective man pages.
41 .SH "Building"
42 There are many different ways to build C programs. This chapter will assume a
43 UNIX-style build process. If you use a different build system, you can still
44 read this to get general information that may apply to your environment as
45 well.
46 .IP "Compiling the Program"
47 Your compiler needs to know where the libcurl headers are located. Therefore
48 you must set your compiler's include path to point to the directory where you
49 installed them. The 'curl-config'[3] tool can be used to get this information:
51 $ curl-config --cflags
53 .IP "Linking the Program with libcurl"
54 When having compiled the program, you need to link your object files to create
55 a single executable. For that to succeed, you need to link with libcurl and
56 possibly also with other libraries that libcurl itself depends on. Like the
57 OpenSSL libraries, but even some standard OS libraries may be needed on the
58 command line. To figure out which flags to use, once again the 'curl-config'
59 tool comes to the rescue:
61 $ curl-config --libs
63 .IP "SSL or Not"
64 libcurl can be built and customized in many ways. One of the things that
65 varies from different libraries and builds is the support for SSL-based
66 transfers, like HTTPS and FTPS. If a supported SSL library was detected
67 properly at build-time, libcurl will be built with SSL support. To figure out
68 if an installed libcurl has been built with SSL support enabled, use
69 \&'curl-config' like this:
71 $ curl-config --feature
73 And if SSL is supported, the keyword 'SSL' will be written to stdout,
74 possibly together with a few other features that could be either on or off on
75 for different libcurls.
77 See also the "Features libcurl Provides" further down.
78 .IP "autoconf macro"
79 When you write your configure script to detect libcurl and setup variables
80 accordingly, we offer a prewritten macro that probably does everything you
81 need in this area. See docs/libcurl/libcurl.m4 file - it includes docs on how
82 to use it.
84 .SH "Portable Code in a Portable World"
85 The people behind libcurl have put a considerable effort to make libcurl work
86 on a large amount of different operating systems and environments.
88 You program libcurl the same way on all platforms that libcurl runs on. There
89 are only very few minor considerations that differ. If you just make sure to
90 write your code portable enough, you may very well create yourself a very
91 portable program. libcurl shouldn't stop you from that.
93 .SH "Global Preparation"
94 The program must initialize some of the libcurl functionality globally. That
95 means it should be done exactly once, no matter how many times you intend to
96 use the library. Once for your program's entire life time. This is done using
98  curl_global_init()
100 and it takes one parameter which is a bit pattern that tells libcurl what to
101 initialize. Using \fICURL_GLOBAL_ALL\fP will make it initialize all known
102 internal sub modules, and might be a good default option. The current two bits
103 that are specified are:
105 .IP "CURL_GLOBAL_WIN32"
106 which only does anything on Windows machines. When used on
107 a Windows machine, it'll make libcurl initialize the win32 socket
108 stuff. Without having that initialized properly, your program cannot use
109 sockets properly. You should only do this once for each application, so if
110 your program already does this or of another library in use does it, you
111 should not tell libcurl to do this as well.
112 .IP CURL_GLOBAL_SSL
113 which only does anything on libcurls compiled and built SSL-enabled. On these
114 systems, this will make libcurl initialize the SSL library properly for this
115 application. This only needs to be done once for each application so if your
116 program or another library already does this, this bit should not be needed.
119 libcurl has a default protection mechanism that detects if
120 \fIcurl_global_init(3)\fP hasn't been called by the time
121 \fIcurl_easy_perform(3)\fP is called and if that is the case, libcurl runs the
122 function itself with a guessed bit pattern. Please note that depending solely
123 on this is not considered nice nor very good.
125 When the program no longer uses libcurl, it should call
126 \fIcurl_global_cleanup(3)\fP, which is the opposite of the init call. It will
127 then do the reversed operations to cleanup the resources the
128 \fIcurl_global_init(3)\fP call initialized.
130 Repeated calls to \fIcurl_global_init(3)\fP and \fIcurl_global_cleanup(3)\fP
131 should be avoided. They should only be called once each.
133 .SH "Features libcurl Provides"
134 It is considered best-practice to determine libcurl features at run-time
135 rather than at build-time (if possible of course). By calling
136 \fIcurl_version_info(3)\fP and checking out the details of the returned
137 struct, your program can figure out exactly what the currently running libcurl
138 supports.
140 .SH "Handle the Easy libcurl"
141 libcurl first introduced the so called easy interface. All operations in the
142 easy interface are prefixed with 'curl_easy'.
144 Recent libcurl versions also offer the multi interface. More about that
145 interface, what it is targeted for and how to use it is detailed in a separate
146 chapter further down. You still need to understand the easy interface first,
147 so please continue reading for better understanding.
149 To use the easy interface, you must first create yourself an easy handle. You
150 need one handle for each easy session you want to perform. Basically, you
151 should use one handle for every thread you plan to use for transferring. You
152 must never share the same handle in multiple threads.
154 Get an easy handle with
156  easyhandle = curl_easy_init();
158 It returns an easy handle. Using that you proceed to the next step: setting
159 up your preferred actions. A handle is just a logic entity for the upcoming
160 transfer or series of transfers.
162 You set properties and options for this handle using
163 \fIcurl_easy_setopt(3)\fP. They control how the subsequent transfer or
164 transfers will be made. Options remain set in the handle until set again to
165 something different. Alas, multiple requests using the same handle will use
166 the same options.
168 Many of the options you set in libcurl are "strings", pointers to data
169 terminated with a zero byte. When you set strings with
170 \fIcurl_easy_setopt(3)\fP, libcurl makes its own copy so that they don't
171 need to be kept around in your application after being set[4].
173 One of the most basic properties to set in the handle is the URL. You set
174 your preferred URL to transfer with CURLOPT_URL in a manner similar to:
177  curl_easy_setopt(handle, CURLOPT_URL, "http://domain.com/");
180 Let's assume for a while that you want to receive data as the URL identifies a
181 remote resource you want to get here. Since you write a sort of application
182 that needs this transfer, I assume that you would like to get the data passed
183 to you directly instead of simply getting it passed to stdout. So, you write
184 your own function that matches this prototype:
186  size_t write_data(void *buffer, size_t size, size_t nmemb, void *userp);
188 You tell libcurl to pass all data to this function by issuing a function
189 similar to this:
191  curl_easy_setopt(easyhandle, CURLOPT_WRITEFUNCTION, write_data);
193 You can control what data your callback function gets in the fourth argument
194 by setting another property:
196  curl_easy_setopt(easyhandle, CURLOPT_WRITEDATA, &internal_struct);
198 Using that property, you can easily pass local data between your application
199 and the function that gets invoked by libcurl. libcurl itself won't touch the
200 data you pass with \fICURLOPT_WRITEDATA\fP.
202 libcurl offers its own default internal callback that will take care of the data
203 if you don't set the callback with \fICURLOPT_WRITEFUNCTION\fP. It will then
204 simply output the received data to stdout. You can have the default callback
205 write the data to a different file handle by passing a 'FILE *' to a file
206 opened for writing with the \fICURLOPT_WRITEDATA\fP option.
208 Now, we need to take a step back and have a deep breath. Here's one of those
209 rare platform-dependent nitpicks. Did you spot it? On some platforms[2],
210 libcurl won't be able to operate on files opened by the program. Thus, if you
211 use the default callback and pass in an open file with
212 \fICURLOPT_WRITEDATA\fP, it will crash. You should therefore avoid this to
213 make your program run fine virtually everywhere.
215 (\fICURLOPT_WRITEDATA\fP was formerly known as \fICURLOPT_FILE\fP. Both names
216 still work and do the same thing).
218 If you're using libcurl as a win32 DLL, you MUST use the
219 \fICURLOPT_WRITEFUNCTION\fP if you set \fICURLOPT_WRITEDATA\fP - or you will
220 experience crashes.
222 There are of course many more options you can set, and we'll get back to a few
223 of them later. Let's instead continue to the actual transfer:
225  success = curl_easy_perform(easyhandle);
227 \fIcurl_easy_perform(3)\fP will connect to the remote site, do the necessary
228 commands and receive the transfer. Whenever it receives data, it calls the
229 callback function we previously set. The function may get one byte at a time,
230 or it may get many kilobytes at once. libcurl delivers as much as possible as
231 often as possible. Your callback function should return the number of bytes it
232 \&"took care of". If that is not the exact same amount of bytes that was
233 passed to it, libcurl will abort the operation and return with an error code.
235 When the transfer is complete, the function returns a return code that informs
236 you if it succeeded in its mission or not. If a return code isn't enough for
237 you, you can use the CURLOPT_ERRORBUFFER to point libcurl to a buffer of yours
238 where it'll store a human readable error message as well.
240 If you then want to transfer another file, the handle is ready to be used
241 again. Mind you, it is even preferred that you re-use an existing handle if
242 you intend to make another transfer. libcurl will then attempt to re-use the
243 previous connection.
245 For some protocols, downloading a file can involve a complicated process of
246 logging in, setting the transfer mode, changing the current directory and
247 finally transferring the file data. libcurl takes care of all that
248 complication for you. Given simply the URL to a file, libcurl will take care
249 of all the details needed to get the file moved from one machine to another.
251 .SH "Multi-threading Issues"
252 The first basic rule is that you must \fBnever\fP simultaneously share a
253 libcurl handle (be it easy or multi or whatever) between multiple
254 threads. Only use one handle in one thread at any time. You can pass the
255 handles around among threads, but you must never use a single handle from more
256 than one thread at any given time.
258 libcurl is completely thread safe, except for two issues: signals and SSL/TLS
259 handlers. Signals are used for timing out name resolves (during DNS lookup) -
260 when built without c-ares support and not on Windows.
262 If you are accessing HTTPS or FTPS URLs in a multi-threaded manner, you are
263 then of course using the underlying SSL library multi-threaded and those libs
264 might have their own requirements on this issue. Basically, you need to
265 provide one or two functions to allow it to function properly. For all
266 details, see this:
268 OpenSSL
270  http://www.openssl.org/docs/crypto/threads.html#DESCRIPTION
272 GnuTLS
274  http://www.gnu.org/software/gnutls/manual/html_node/Multi_002dthreaded-applications.html
278  is claimed to be thread-safe already without anything required.
280 PolarSSL
282  Required actions unknown.
284 yassl
286  Required actions unknown.
288 axTLS
290  Required actions unknown.
292 When using multiple threads you should set the CURLOPT_NOSIGNAL option to 1
293 for all handles. Everything will or might work fine except that timeouts are
294 not honored during the DNS lookup - which you can work around by building
295 libcurl with c-ares support. c-ares is a library that provides asynchronous
296 name resolves. On some platforms, libcurl simply will not function properly
297 multi-threaded unless this option is set.
299 Also, note that CURLOPT_DNS_USE_GLOBAL_CACHE is not thread-safe.
301 .SH "When It Doesn't Work"
302 There will always be times when the transfer fails for some reason. You might
303 have set the wrong libcurl option or misunderstood what the libcurl option
304 actually does, or the remote server might return non-standard replies that
305 confuse the library which then confuses your program.
307 There's one golden rule when these things occur: set the CURLOPT_VERBOSE
308 option to 1. It'll cause the library to spew out the entire protocol
309 details it sends, some internal info and some received protocol data as well
310 (especially when using FTP). If you're using HTTP, adding the headers in the
311 received output to study is also a clever way to get a better understanding
312 why the server behaves the way it does. Include headers in the normal body
313 output with CURLOPT_HEADER set 1.
315 Of course, there are bugs left. We need to know about them to be able
316 to fix them, so we're quite dependent on your bug reports! When you do report
317 suspected bugs in libcurl, please include as many details as you possibly can: a
318 protocol dump that CURLOPT_VERBOSE produces, library version, as much as
319 possible of your code that uses libcurl, operating system name and version,
320 compiler name and version etc.
322 If CURLOPT_VERBOSE is not enough, you increase the level of debug data your
323 application receive by using the CURLOPT_DEBUGFUNCTION.
325 Getting some in-depth knowledge about the protocols involved is never wrong,
326 and if you're trying to do funny things, you might very well understand
327 libcurl and how to use it better if you study the appropriate RFC documents
328 at least briefly.
330 .SH "Upload Data to a Remote Site"
331 libcurl tries to keep a protocol independent approach to most transfers, thus
332 uploading to a remote FTP site is very similar to uploading data to a HTTP
333 server with a PUT request.
335 Of course, first you either create an easy handle or you re-use one existing
336 one. Then you set the URL to operate on just like before. This is the remote
337 URL, that we now will upload.
339 Since we write an application, we most likely want libcurl to get the upload
340 data by asking us for it. To make it do that, we set the read callback and
341 the custom pointer libcurl will pass to our read callback. The read callback
342 should have a prototype similar to:
344  size_t function(char *bufptr, size_t size, size_t nitems, void *userp);
346 Where bufptr is the pointer to a buffer we fill in with data to upload and
347 size*nitems is the size of the buffer and therefore also the maximum amount
348 of data we can return to libcurl in this call. The 'userp' pointer is the
349 custom pointer we set to point to a struct of ours to pass private data
350 between the application and the callback.
352  curl_easy_setopt(easyhandle, CURLOPT_READFUNCTION, read_function);
354  curl_easy_setopt(easyhandle, CURLOPT_READDATA, &filedata);
356 Tell libcurl that we want to upload:
358  curl_easy_setopt(easyhandle, CURLOPT_UPLOAD, 1L);
360 A few protocols won't behave properly when uploads are done without any prior
361 knowledge of the expected file size. So, set the upload file size using the
362 CURLOPT_INFILESIZE_LARGE for all known file sizes like this[1]:
365  /* in this example, file_size must be an curl_off_t variable */
366  curl_easy_setopt(easyhandle, CURLOPT_INFILESIZE_LARGE, file_size);
369 When you call \fIcurl_easy_perform(3)\fP this time, it'll perform all the
370 necessary operations and when it has invoked the upload it'll call your
371 supplied callback to get the data to upload. The program should return as much
372 data as possible in every invoke, as that is likely to make the upload perform
373 as fast as possible. The callback should return the number of bytes it wrote
374 in the buffer. Returning 0 will signal the end of the upload.
376 .SH "Passwords"
377 Many protocols use or even require that user name and password are provided
378 to be able to download or upload the data of your choice. libcurl offers
379 several ways to specify them.
381 Most protocols support that you specify the name and password in the URL
382 itself. libcurl will detect this and use them accordingly. This is written
383 like this:
385  protocol://user:password@example.com/path/
387 If you need any odd letters in your user name or password, you should enter
388 them URL encoded, as %XX where XX is a two-digit hexadecimal number.
390 libcurl also provides options to set various passwords. The user name and
391 password as shown embedded in the URL can instead get set with the
392 CURLOPT_USERPWD option. The argument passed to libcurl should be a char * to
393 a string in the format "user:password". In a manner like this:
395  curl_easy_setopt(easyhandle, CURLOPT_USERPWD, "myname:thesecret");
397 Another case where name and password might be needed at times, is for those
398 users who need to authenticate themselves to a proxy they use. libcurl offers
399 another option for this, the CURLOPT_PROXYUSERPWD. It is used quite similar
400 to the CURLOPT_USERPWD option like this:
402  curl_easy_setopt(easyhandle, CURLOPT_PROXYUSERPWD, "myname:thesecret");
404 There's a long time UNIX "standard" way of storing ftp user names and
405 passwords, namely in the $HOME/.netrc file. The file should be made private
406 so that only the user may read it (see also the "Security Considerations"
407 chapter), as it might contain the password in plain text. libcurl has the
408 ability to use this file to figure out what set of user name and password to
409 use for a particular host. As an extension to the normal functionality,
410 libcurl also supports this file for non-FTP protocols such as HTTP. To make
411 curl use this file, use the CURLOPT_NETRC option:
413  curl_easy_setopt(easyhandle, CURLOPT_NETRC, 1L);
415 And a very basic example of how such a .netrc file may look like:
418  machine myhost.mydomain.com
419  login userlogin
420  password secretword
423 All these examples have been cases where the password has been optional, or
424 at least you could leave it out and have libcurl attempt to do its job
425 without it. There are times when the password isn't optional, like when
426 you're using an SSL private key for secure transfers.
428 To pass the known private key password to libcurl:
430  curl_easy_setopt(easyhandle, CURLOPT_KEYPASSWD, "keypassword");
432 .SH "HTTP Authentication"
433 The previous chapter showed how to set user name and password for getting
434 URLs that require authentication. When using the HTTP protocol, there are
435 many different ways a client can provide those credentials to the server and
436 you can control which way libcurl will (attempt to) use them. The default HTTP
437 authentication method is called 'Basic', which is sending the name and
438 password in clear-text in the HTTP request, base64-encoded. This is insecure.
440 At the time of this writing, libcurl can be built to use: Basic, Digest, NTLM,
441 Negotiate, GSS-Negotiate and SPNEGO. You can tell libcurl which one to use
442 with CURLOPT_HTTPAUTH as in:
444  curl_easy_setopt(easyhandle, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
446 And when you send authentication to a proxy, you can also set authentication
447 type the same way but instead with CURLOPT_PROXYAUTH:
449  curl_easy_setopt(easyhandle, CURLOPT_PROXYAUTH, CURLAUTH_NTLM);
451 Both these options allow you to set multiple types (by ORing them together),
452 to make libcurl pick the most secure one out of the types the server/proxy
453 claims to support. This method does however add a round-trip since libcurl
454 must first ask the server what it supports:
456  curl_easy_setopt(easyhandle, CURLOPT_HTTPAUTH,
457  CURLAUTH_DIGEST|CURLAUTH_BASIC);
459 For convenience, you can use the 'CURLAUTH_ANY' define (instead of a list
460 with specific types) which allows libcurl to use whatever method it wants.
462 When asking for multiple types, libcurl will pick the available one it
463 considers "best" in its own internal order of preference.
465 .SH "HTTP POSTing"
466 We get many questions regarding how to issue HTTP POSTs with libcurl the
467 proper way. This chapter will thus include examples using both different
468 versions of HTTP POST that libcurl supports.
470 The first version is the simple POST, the most common version, that most HTML
471 pages using the <form> tag uses. We provide a pointer to the data and tell
472 libcurl to post it all to the remote site:
475     char *data="name=daniel&project=curl";
476     curl_easy_setopt(easyhandle, CURLOPT_POSTFIELDS, data);
477     curl_easy_setopt(easyhandle, CURLOPT_URL, "http://posthere.com/");
479     curl_easy_perform(easyhandle); /* post away! */
482 Simple enough, huh? Since you set the POST options with the
483 CURLOPT_POSTFIELDS, this automatically switches the handle to use POST in the
484 upcoming request.
486 Ok, so what if you want to post binary data that also requires you to set the
487 Content-Type: header of the post? Well, binary posts prevent libcurl from
488 being able to do strlen() on the data to figure out the size, so therefore we
489 must tell libcurl the size of the post data. Setting headers in libcurl
490 requests are done in a generic way, by building a list of our own headers and
491 then passing that list to libcurl.
494  struct curl_slist *headers=NULL;
495  headers = curl_slist_append(headers, "Content-Type: text/xml");
497  /* post binary data */
498  curl_easy_setopt(easyhandle, CURLOPT_POSTFIELDS, binaryptr);
500  /* set the size of the postfields data */
501  curl_easy_setopt(easyhandle, CURLOPT_POSTFIELDSIZE, 23L);
503  /* pass our list of custom made headers */
504  curl_easy_setopt(easyhandle, CURLOPT_HTTPHEADER, headers);
506  curl_easy_perform(easyhandle); /* post away! */
508  curl_slist_free_all(headers); /* free the header list */
511 While the simple examples above cover the majority of all cases where HTTP
512 POST operations are required, they don't do multi-part formposts. Multi-part
513 formposts were introduced as a better way to post (possibly large) binary data
514 and were first documented in the RFC1867 (updated in RFC2388). They're called
515 multi-part because they're built by a chain of parts, each part being a single
516 unit of data. Each part has its own name and contents. You can in fact create
517 and post a multi-part formpost with the regular libcurl POST support described
518 above, but that would require that you build a formpost yourself and provide
519 to libcurl. To make that easier, libcurl provides \fIcurl_formadd(3)\fP. Using
520 this function, you add parts to the form. When you're done adding parts, you
521 post the whole form.
523 The following example sets two simple text parts with plain textual contents,
524 and then a file with binary contents and uploads the whole thing.
527  struct curl_httppost *post=NULL;
528  struct curl_httppost *last=NULL;
529  curl_formadd(&post, &last,
530               CURLFORM_COPYNAME, "name",
531               CURLFORM_COPYCONTENTS, "daniel", CURLFORM_END);
532  curl_formadd(&post, &last,
533               CURLFORM_COPYNAME, "project",
534               CURLFORM_COPYCONTENTS, "curl", CURLFORM_END);
535  curl_formadd(&post, &last,
536               CURLFORM_COPYNAME, "logotype-image",
537               CURLFORM_FILECONTENT, "curl.png", CURLFORM_END);
539  /* Set the form info */
540  curl_easy_setopt(easyhandle, CURLOPT_HTTPPOST, post);
542  curl_easy_perform(easyhandle); /* post away! */
544  /* free the post data again */
545  curl_formfree(post);
548 Multipart formposts are chains of parts using MIME-style separators and
549 headers. It means that each one of these separate parts get a few headers set
550 that describe the individual content-type, size etc. To enable your
551 application to handicraft this formpost even more, libcurl allows you to
552 supply your own set of custom headers to such an individual form part. You can
553 of course supply headers to as many parts as you like, but this little example
554 will show how you set headers to one specific part when you add that to the
555 post handle:
558  struct curl_slist *headers=NULL;
559  headers = curl_slist_append(headers, "Content-Type: text/xml");
561  curl_formadd(&post, &last,
562               CURLFORM_COPYNAME, "logotype-image",
563               CURLFORM_FILECONTENT, "curl.xml",
564               CURLFORM_CONTENTHEADER, headers,
565               CURLFORM_END);
567  curl_easy_perform(easyhandle); /* post away! */
569  curl_formfree(post); /* free post */
570  curl_slist_free_all(headers); /* free custom header list */
573 Since all options on an easyhandle are "sticky", they remain the same until
574 changed even if you do call \fIcurl_easy_perform(3)\fP, you may need to tell
575 curl to go back to a plain GET request if you intend to do one as your
576 next request. You force an easyhandle to go back to GET by using the
577 CURLOPT_HTTPGET option:
579  curl_easy_setopt(easyhandle, CURLOPT_HTTPGET, 1L);
581 Just setting CURLOPT_POSTFIELDS to "" or NULL will *not* stop libcurl from
582 doing a POST. It will just make it POST without any data to send!
584 .SH "Showing Progress"
586 For historical and traditional reasons, libcurl has a built-in progress meter
587 that can be switched on and then makes it present a progress meter in your
588 terminal.
590 Switch on the progress meter by, oddly enough, setting CURLOPT_NOPROGRESS to
591 zero. This option is set to 1 by default.
593 For most applications however, the built-in progress meter is useless and
594 what instead is interesting is the ability to specify a progress
595 callback. The function pointer you pass to libcurl will then be called on
596 irregular intervals with information about the current transfer.
598 Set the progress callback by using CURLOPT_PROGRESSFUNCTION. And pass a
599 pointer to a function that matches this prototype:
602  int progress_callback(void *clientp,
603                        double dltotal,
604                        double dlnow,
605                        double ultotal,
606                        double ulnow);
609 If any of the input arguments is unknown, a 0 will be passed. The first
610 argument, the 'clientp' is the pointer you pass to libcurl with
611 CURLOPT_PROGRESSDATA. libcurl won't touch it.
613 .SH "libcurl with C++"
615 There's basically only one thing to keep in mind when using C++ instead of C
616 when interfacing libcurl:
618 The callbacks CANNOT be non-static class member functions
620 Example C++ code:
623 class AClass {
624     static size_t write_data(void *ptr, size_t size, size_t nmemb,
625                              void *ourpointer)
626     {
627       /* do what you want with the data */
628     }
632 .SH "Proxies"
634 What "proxy" means according to Merriam-Webster: "a person authorized to act
635 for another" but also "the agency, function, or office of a deputy who acts as
636 a substitute for another".
638 Proxies are exceedingly common these days. Companies often only offer Internet
639 access to employees through their proxies. Network clients or user-agents ask
640 the proxy for documents, the proxy does the actual request and then it returns
641 them.
643 libcurl supports SOCKS and HTTP proxies. When a given URL is wanted, libcurl
644 will ask the proxy for it instead of trying to connect to the actual host
645 identified in the URL.
647 If you're using a SOCKS proxy, you may find that libcurl doesn't quite support
648 all operations through it.
650 For HTTP proxies: the fact that the proxy is a HTTP proxy puts certain
651 restrictions on what can actually happen. A requested URL that might not be a
652 HTTP URL will be still be passed to the HTTP proxy to deliver back to
653 libcurl. This happens transparently, and an application may not need to
654 know. I say "may", because at times it is very important to understand that
655 all operations over a HTTP proxy use the HTTP protocol. For example, you
656 can't invoke your own custom FTP commands or even proper FTP directory
657 listings.
659 .IP "Proxy Options"
661 To tell libcurl to use a proxy at a given port number:
663  curl_easy_setopt(easyhandle, CURLOPT_PROXY, "proxy-host.com:8080");
665 Some proxies require user authentication before allowing a request, and you
666 pass that information similar to this:
668  curl_easy_setopt(easyhandle, CURLOPT_PROXYUSERPWD, "user:password");
670 If you want to, you can specify the host name only in the CURLOPT_PROXY
671 option, and set the port number separately with CURLOPT_PROXYPORT.
673 Tell libcurl what kind of proxy it is with CURLOPT_PROXYTYPE (if not, it will
674 default to assume a HTTP proxy):
676  curl_easy_setopt(easyhandle, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS4);
678 .IP "Environment Variables"
680 libcurl automatically checks and uses a set of environment variables to know
681 what proxies to use for certain protocols. The names of the variables are
682 following an ancient de facto standard and are built up as "[protocol]_proxy"
683 (note the lower casing). Which makes the variable \&'http_proxy' checked for a
684 name of a proxy to use when the input URL is HTTP. Following the same rule,
685 the variable named 'ftp_proxy' is checked for FTP URLs. Again, the proxies are
686 always HTTP proxies, the different names of the variables simply allows
687 different HTTP proxies to be used.
689 The proxy environment variable contents should be in the format
690 \&"[protocol://][user:password@]machine[:port]". Where the protocol:// part is
691 simply ignored if present (so http://proxy and bluerk://proxy will do the
692 same) and the optional port number specifies on which port the proxy operates
693 on the host. If not specified, the internal default port number will be used
694 and that is most likely *not* the one you would like it to be.
696 There are two special environment variables. 'all_proxy' is what sets proxy
697 for any URL in case the protocol specific variable wasn't set, and
698 \&'no_proxy' defines a list of hosts that should not use a proxy even though a
699 variable may say so. If 'no_proxy' is a plain asterisk ("*") it matches all
700 hosts.
702 To explicitly disable libcurl's checking for and using the proxy environment
703 variables, set the proxy name to "" - an empty string - with CURLOPT_PROXY.
704 .IP "SSL and Proxies"
706 SSL is for secure point-to-point connections. This involves strong encryption
707 and similar things, which effectively makes it impossible for a proxy to
708 operate as a "man in between" which the proxy's task is, as previously
709 discussed. Instead, the only way to have SSL work over a HTTP proxy is to ask
710 the proxy to tunnel trough everything without being able to check or fiddle
711 with the traffic.
713 Opening an SSL connection over a HTTP proxy is therefor a matter of asking the
714 proxy for a straight connection to the target host on a specified port. This
715 is made with the HTTP request CONNECT. ("please mr proxy, connect me to that
716 remote host").
718 Because of the nature of this operation, where the proxy has no idea what kind
719 of data that is passed in and out through this tunnel, this breaks some of the
720 very few advantages that come from using a proxy, such as caching.  Many
721 organizations prevent this kind of tunneling to other destination port numbers
722 than 443 (which is the default HTTPS port number).
724 .IP "Tunneling Through Proxy"
725 As explained above, tunneling is required for SSL to work and often even
726 restricted to the operation intended for SSL; HTTPS.
728 This is however not the only time proxy-tunneling might offer benefits to
729 you or your application.
731 As tunneling opens a direct connection from your application to the remote
732 machine, it suddenly also re-introduces the ability to do non-HTTP
733 operations over a HTTP proxy. You can in fact use things such as FTP
734 upload or FTP custom commands this way.
736 Again, this is often prevented by the administrators of proxies and is
737 rarely allowed.
739 Tell libcurl to use proxy tunneling like this:
741  curl_easy_setopt(easyhandle, CURLOPT_HTTPPROXYTUNNEL, 1L);
743 In fact, there might even be times when you want to do plain HTTP
744 operations using a tunnel like this, as it then enables you to operate on
745 the remote server instead of asking the proxy to do so. libcurl will not
746 stand in the way for such innovative actions either!
748 .IP "Proxy Auto-Config"
750 Netscape first came up with this. It is basically a web page (usually using a
751 \&.pac extension) with a Javascript that when executed by the browser with the
752 requested URL as input, returns information to the browser on how to connect
753 to the URL. The returned information might be "DIRECT" (which means no proxy
754 should be used), "PROXY host:port" (to tell the browser where the proxy for
755 this particular URL is) or "SOCKS host:port" (to direct the browser to a SOCKS
756 proxy).
758 libcurl has no means to interpret or evaluate Javascript and thus it doesn't
759 support this. If you get yourself in a position where you face this nasty
760 invention, the following advice have been mentioned and used in the past:
762 - Depending on the Javascript complexity, write up a script that translates it
763 to another language and execute that.
765 - Read the Javascript code and rewrite the same logic in another language.
767 - Implement a Javascript interpreter; people have successfully used the
768 Mozilla Javascript engine in the past.
770 - Ask your admins to stop this, for a static proxy setup or similar.
772 .SH "Persistence Is The Way to Happiness"
774 Re-cycling the same easy handle several times when doing multiple requests is
775 the way to go.
777 After each single \fIcurl_easy_perform(3)\fP operation, libcurl will keep the
778 connection alive and open. A subsequent request using the same easy handle to
779 the same host might just be able to use the already open connection! This
780 reduces network impact a lot.
782 Even if the connection is dropped, all connections involving SSL to the same
783 host again, will benefit from libcurl's session ID cache that drastically
784 reduces re-connection time.
786 FTP connections that are kept alive save a lot of time, as the command-
787 response round-trips are skipped, and also you don't risk getting blocked
788 without permission to login again like on many FTP servers only allowing N
789 persons to be logged in at the same time.
791 libcurl caches DNS name resolving results, to make lookups of a previously
792 looked up name a lot faster.
794 Other interesting details that improve performance for subsequent requests
795 may also be added in the future.
797 Each easy handle will attempt to keep the last few connections alive for a
798 while in case they are to be used again. You can set the size of this "cache"
799 with the CURLOPT_MAXCONNECTS option. Default is 5. There is very seldom any
800 point in changing this value, and if you think of changing this it is often
801 just a matter of thinking again.
803 To force your upcoming request to not use an already existing connection (it
804 will even close one first if there happens to be one alive to the same host
805 you're about to operate on), you can do that by setting CURLOPT_FRESH_CONNECT
806 to 1. In a similar spirit, you can also forbid the upcoming request to be
807 "lying" around and possibly get re-used after the request by setting
808 CURLOPT_FORBID_REUSE to 1.
810 .SH "HTTP Headers Used by libcurl"
811 When you use libcurl to do HTTP requests, it'll pass along a series of headers
812 automatically. It might be good for you to know and understand these. You
813 can replace or remove them by using the CURLOPT_HTTPHEADER option.
815 .IP "Host"
816 This header is required by HTTP 1.1 and even many 1.0 servers and should be
817 the name of the server we want to talk to. This includes the port number if
818 anything but default.
820 .IP "Accept"
821 \&"*/*".
823 .IP "Expect"
824 When doing POST requests, libcurl sets this header to \&"100-continue" to ask
825 the server for an "OK" message before it proceeds with sending the data part
826 of the post. If the POSTed data amount is deemed "small", libcurl will not use
827 this header.
829 .SH "Customizing Operations"
830 There is an ongoing development today where more and more protocols are built
831 upon HTTP for transport. This has obvious benefits as HTTP is a tested and
832 reliable protocol that is widely deployed and has excellent proxy-support.
834 When you use one of these protocols, and even when doing other kinds of
835 programming you may need to change the traditional HTTP (or FTP or...)
836 manners. You may need to change words, headers or various data.
838 libcurl is your friend here too.
840 .IP CUSTOMREQUEST
841 If just changing the actual HTTP request keyword is what you want, like when
842 GET, HEAD or POST is not good enough for you, CURLOPT_CUSTOMREQUEST is there
843 for you. It is very simple to use:
845  curl_easy_setopt(easyhandle, CURLOPT_CUSTOMREQUEST, "MYOWNREQUEST");
847 When using the custom request, you change the request keyword of the actual
848 request you are performing. Thus, by default you make a GET request but you can
849 also make a POST operation (as described before) and then replace the POST
850 keyword if you want to. You're the boss.
852 .IP "Modify Headers"
853 HTTP-like protocols pass a series of headers to the server when doing the
854 request, and you're free to pass any amount of extra headers that you
855 think fit. Adding headers is this easy:
858  struct curl_slist *headers=NULL; /* init to NULL is important */
860  headers = curl_slist_append(headers, "Hey-server-hey: how are you?");
861  headers = curl_slist_append(headers, "X-silly-content: yes");
863  /* pass our list of custom made headers */
864  curl_easy_setopt(easyhandle, CURLOPT_HTTPHEADER, headers);
866  curl_easy_perform(easyhandle); /* transfer http */
868  curl_slist_free_all(headers); /* free the header list */
871 \&... and if you think some of the internally generated headers, such as
872 Accept: or Host: don't contain the data you want them to contain, you can
873 replace them by simply setting them too:
876  headers = curl_slist_append(headers, "Accept: Agent-007");
877  headers = curl_slist_append(headers, "Host: munged.host.line");
880 .IP "Delete Headers"
881 If you replace an existing header with one with no contents, you will prevent
882 the header from being sent. For instance, if you want to completely prevent the
883 \&"Accept:" header from being sent, you can disable it with code similar to this:
885  headers = curl_slist_append(headers, "Accept:");
887 Both replacing and canceling internal headers should be done with careful
888 consideration and you should be aware that you may violate the HTTP protocol
889 when doing so.
891 .IP "Enforcing chunked transfer-encoding"
893 By making sure a request uses the custom header "Transfer-Encoding: chunked"
894 when doing a non-GET HTTP operation, libcurl will switch over to "chunked"
895 upload, even though the size of the data to upload might be known. By default,
896 libcurl usually switches over to chunked upload automatically if the upload
897 data size is unknown.
899 .IP "HTTP Version"
901 All HTTP requests includes the version number to tell the server which version
902 we support. libcurl speaks HTTP 1.1 by default. Some very old servers don't
903 like getting 1.1-requests and when dealing with stubborn old things like that,
904 you can tell libcurl to use 1.0 instead by doing something like this:
906  curl_easy_setopt(easyhandle, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
908 .IP "FTP Custom Commands"
910 Not all protocols are HTTP-like, and thus the above may not help you when
911 you want to make, for example, your FTP transfers to behave differently.
913 Sending custom commands to a FTP server means that you need to send the
914 commands exactly as the FTP server expects them (RFC959 is a good guide
915 here), and you can only use commands that work on the control-connection
916 alone. All kinds of commands that require data interchange and thus need
917 a data-connection must be left to libcurl's own judgement. Also be aware
918 that libcurl will do its very best to change directory to the target
919 directory before doing any transfer, so if you change directory (with CWD
920 or similar) you might confuse libcurl and then it might not attempt to
921 transfer the file in the correct remote directory.
923 A little example that deletes a given file before an operation:
926  headers = curl_slist_append(headers, "DELE file-to-remove");
928  /* pass the list of custom commands to the handle */
929  curl_easy_setopt(easyhandle, CURLOPT_QUOTE, headers);
931  curl_easy_perform(easyhandle); /* transfer ftp data! */
933  curl_slist_free_all(headers); /* free the header list */
936 If you would instead want this operation (or chain of operations) to happen
937 _after_ the data transfer took place the option to \fIcurl_easy_setopt(3)\fP
938 would instead be called CURLOPT_POSTQUOTE and used the exact same way.
940 The custom FTP command will be issued to the server in the same order they are
941 added to the list, and if a command gets an error code returned back from the
942 server, no more commands will be issued and libcurl will bail out with an
943 error code (CURLE_QUOTE_ERROR). Note that if you use CURLOPT_QUOTE to send
944 commands before a transfer, no transfer will actually take place when a quote
945 command has failed.
947 If you set the CURLOPT_HEADER to 1, you will tell libcurl to get
948 information about the target file and output "headers" about it. The headers
949 will be in "HTTP-style", looking like they do in HTTP.
951 The option to enable headers or to run custom FTP commands may be useful to
952 combine with CURLOPT_NOBODY. If this option is set, no actual file content
953 transfer will be performed.
955 .IP "FTP Custom CUSTOMREQUEST"
956 If you do want to list the contents of a FTP directory using your own defined FTP
957 command, CURLOPT_CUSTOMREQUEST will do just that. "NLST" is the default one
958 for listing directories but you're free to pass in your idea of a good
959 alternative.
961 .SH "Cookies Without Chocolate Chips"
962 In the HTTP sense, a cookie is a name with an associated value. A server sends
963 the name and value to the client, and expects it to get sent back on every
964 subsequent request to the server that matches the particular conditions
965 set. The conditions include that the domain name and path match and that the
966 cookie hasn't become too old.
968 In real-world cases, servers send new cookies to replace existing ones to
969 update them. Server use cookies to "track" users and to keep "sessions".
971 Cookies are sent from server to clients with the header Set-Cookie: and
972 they're sent from clients to servers with the Cookie: header.
974 To just send whatever cookie you want to a server, you can use CURLOPT_COOKIE
975 to set a cookie string like this:
977  curl_easy_setopt(easyhandle, CURLOPT_COOKIE, "name1=var1; name2=var2;");
979 In many cases, that is not enough. You might want to dynamically save
980 whatever cookies the remote server passes to you, and make sure those cookies
981 are then used accordingly on later requests.
983 One way to do this, is to save all headers you receive in a plain file and
984 when you make a request, you tell libcurl to read the previous headers to
985 figure out which cookies to use. Set the header file to read cookies from with
986 CURLOPT_COOKIEFILE.
988 The CURLOPT_COOKIEFILE option also automatically enables the cookie parser in
989 libcurl. Until the cookie parser is enabled, libcurl will not parse or
990 understand incoming cookies and they will just be ignored. However, when the
991 parser is enabled the cookies will be understood and the cookies will be kept
992 in memory and used properly in subsequent requests when the same handle is
993 used. Many times this is enough, and you may not have to save the cookies to
994 disk at all. Note that the file you specify to CURLOPT_COOKIEFILE doesn't have
995 to exist to enable the parser, so a common way to just enable the parser and
996 not read any cookies is to use the name of a file you know doesn't exist.
998 If you would rather use existing cookies that you've previously received with
999 your Netscape or Mozilla browsers, you can make libcurl use that cookie file
1000 as input. The CURLOPT_COOKIEFILE is used for that too, as libcurl will
1001 automatically find out what kind of file it is and act accordingly.
1003 Perhaps the most advanced cookie operation libcurl offers, is saving the
1004 entire internal cookie state back into a Netscape/Mozilla formatted cookie
1005 file. We call that the cookie-jar. When you set a file name with
1006 CURLOPT_COOKIEJAR, that file name will be created and all received cookies
1007 will be stored in it when \fIcurl_easy_cleanup(3)\fP is called. This enables
1008 cookies to get passed on properly between multiple handles without any
1009 information getting lost.
1011 .SH "FTP Peculiarities We Need"
1013 FTP transfers use a second TCP/IP connection for the data transfer. This is
1014 usually a fact you can forget and ignore but at times this fact will come
1015 back to haunt you. libcurl offers several different ways to customize how the
1016 second connection is being made.
1018 libcurl can either connect to the server a second time or tell the server to
1019 connect back to it. The first option is the default and it is also what works
1020 best for all the people behind firewalls, NATs or IP-masquerading setups.
1021 libcurl then tells the server to open up a new port and wait for a second
1022 connection. This is by default attempted with EPSV first, and if that doesn't
1023 work it tries PASV instead. (EPSV is an extension to the original FTP spec
1024 and does not exist nor work on all FTP servers.)
1026 You can prevent libcurl from first trying the EPSV command by setting
1027 CURLOPT_FTP_USE_EPSV to zero.
1029 In some cases, you will prefer to have the server connect back to you for the
1030 second connection. This might be when the server is perhaps behind a firewall
1031 or something and only allows connections on a single port. libcurl then
1032 informs the remote server which IP address and port number to connect to.
1033 This is made with the CURLOPT_FTPPORT option. If you set it to "-", libcurl
1034 will use your system's "default IP address". If you want to use a particular
1035 IP, you can set the full IP address, a host name to resolve to an IP address
1036 or even a local network interface name that libcurl will get the IP address
1037 from.
1039 When doing the "PORT" approach, libcurl will attempt to use the EPRT and the
1040 LPRT before trying PORT, as they work with more protocols. You can disable
1041 this behavior by setting CURLOPT_FTP_USE_EPRT to zero.
1043 .SH "Headers Equal Fun"
1045 Some protocols provide "headers", meta-data separated from the normal
1046 data. These headers are by default not included in the normal data stream,
1047 but you can make them appear in the data stream by setting CURLOPT_HEADER to
1050 What might be even more useful, is libcurl's ability to separate the headers
1051 from the data and thus make the callbacks differ. You can for example set a
1052 different pointer to pass to the ordinary write callback by setting
1053 CURLOPT_WRITEHEADER.
1055 Or, you can set an entirely separate function to receive the headers, by
1056 using CURLOPT_HEADERFUNCTION.
1058 The headers are passed to the callback function one by one, and you can
1059 depend on that fact. It makes it easier for you to add custom header parsers
1060 etc.
1062 \&"Headers" for FTP transfers equal all the FTP server responses. They aren't
1063 actually true headers, but in this case we pretend they are! ;-)
1065 .SH "Post Transfer Information"
1067  [ curl_easy_getinfo ]
1069 .SH "Security Considerations"
1071 The libcurl project takes security seriously.  The library is written with
1072 caution and precautions are taken to mitigate many kinds of risks encountered
1073 while operating with potentially malicious servers on the Internet.  It is a
1074 powerful library, however, which allows application writers to make trade offs
1075 between ease of writing and exposure to potential risky operations.  If
1076 used the right way, you can use libcurl to transfer data pretty safely.
1078 Many applications are used in closed networks where users and servers
1079 can be trusted, but many others are used on arbitrary servers and are fed
1080 input from potentially untrusted users.  Following is a discussion about
1081 some risks in the ways in which applications commonly use libcurl and
1082 potential mitigations of those risks. It is by no means comprehensive, but
1083 shows classes of attacks that robust applications should consider. The
1084 Common Weakness Enumeration project at http://cwe.mitre.org/ is a good
1085 reference for many of these and similar types of weaknesses of which
1086 application writers should be aware.
1088 .IP "Command Lines"
1089 If you use a command line tool (such as curl) that uses libcurl, and you give
1090 options to the tool on the command line those options can very likely get read
1091 by other users of your system when they use 'ps' or other tools to list
1092 currently running processes.
1094 To avoid this problem, never feed sensitive things to programs using command
1095 line options. Write them to a protected file and use the \-K option to
1096 avoid this.
1098 .IP ".netrc"
1099 \&.netrc is a pretty handy file/feature that allows you to login quickly and
1100 automatically to frequently visited sites. The file contains passwords in
1101 clear text and is a real security risk. In some cases, your .netrc is also
1102 stored in a home directory that is NFS mounted or used on another network
1103 based file system, so the clear text password will fly through your network
1104 every time anyone reads that file!
1106 To avoid this problem, don't use .netrc files and never store passwords in
1107 plain text anywhere.
1109 .IP "Clear Text Passwords"
1110 Many of the protocols libcurl supports send name and password unencrypted as
1111 clear text (HTTP Basic authentication, FTP, TELNET etc). It is very easy for
1112 anyone on your network or a network nearby yours to just fire up a network
1113 analyzer tool and eavesdrop on your passwords. Don't let the fact that HTTP
1114 Basic uses base64 encoded passwords fool you. They may not look readable at a
1115 first glance, but they very easily "deciphered" by anyone within seconds.
1117 To avoid this problem, use HTTP authentication methods or other protocols that
1118 don't let snoopers see your password: HTTP with Digest, NTLM or GSS
1119 authentication, HTTPS, FTPS, SCP, SFTP and FTP-Kerberos are a few examples.
1121 .IP "Redirects"
1122 The CURLOPT_FOLLOWLOCATION option automatically follows HTTP redirects sent
1123 by a remote server.  These redirects can refer to any kind of URL, not just
1124 HTTP.  A redirect to a file: URL would cause the libcurl to read (or write)
1125 arbitrary files from the local filesystem.  If the application returns
1126 the data back to the user (as would happen in some kinds of CGI scripts),
1127 an attacker could leverage this to read otherwise forbidden data (e.g.
1128 file://localhost/etc/passwd).
1130 If authentication credentials are stored in the ~/.netrc file, or Kerberos
1131 is in use, any other URL type (not just file:) that requires
1132 authentication is also at risk.  A redirect such as
1133 ftp://some-internal-server/private-file would then return data even when
1134 the server is password protected.
1136 In the same way, if an unencrypted SSH private key has been configured for
1137 the user running the libcurl application, SCP: or SFTP: URLs could access
1138 password or private-key protected resources,
1139 e.g. sftp://user@some-internal-server/etc/passwd
1141 The CURLOPT_REDIR_PROTOCOLS and CURLOPT_NETRC options can be used to
1142 mitigate against this kind of attack.
1144 A redirect can also specify a location available only on the machine running
1145 libcurl, including servers hidden behind a firewall from the attacker.
1146 e.g. http://127.0.0.1/ or http://intranet/delete-stuff.cgi?delete=all or
1147 tftp://bootp-server/pc-config-data
1149 Apps can mitigate against this by disabling CURLOPT_FOLLOWLOCATION and
1150 handling redirects itself, sanitizing URLs as necessary. Alternately, an
1151 app could leave CURLOPT_FOLLOWLOCATION enabled but set CURLOPT_REDIR_PROTOCOLS
1152 and install a CURLOPT_OPENSOCKETFUNCTION callback function in which addresses
1153 are sanitized before use.
1155 .IP "Private Resources"
1156 A user who can control the DNS server of a domain being passed in within
1157 a URL can change the address of the host to a local, private address
1158 which the libcurl application will then use. e.g. The innocuous URL
1159 http://fuzzybunnies.example.com/ could actually resolve to the IP address
1160 of a server behind a firewall, such as 127.0.0.1 or 10.1.2.3
1161 Apps can mitigate against this by setting a CURLOPT_OPENSOCKETFUNCTION
1162 and checking the address before a connection.
1164 All the malicious scenarios regarding redirected URLs apply just as well
1165 to non-redirected URLs, if the user is allowed to specify an arbitrary URL
1166 that could point to a private resource. For example, a web app providing
1167 a translation service might happily translate file://localhost/etc/passwd
1168 and display the result.  Apps can mitigate against this with the
1169 CURLOPT_PROTOCOLS option as well as by similar mitigation techniques for
1170 redirections.
1172 A malicious FTP server could in response to the PASV command return an
1173 IP address and port number for a server local to the app running libcurl
1174 but behind a firewall.  Apps can mitigate against this by using the
1175 CURLOPT_FTP_SKIP_PASV_IP option or CURLOPT_FTPPORT.
1177 .IP Uploads
1178 When uploading, a redirect can cause a local (or remote) file to be
1179 overwritten.  Apps must not allow any unsanitized URL to be passed in
1180 for uploads.  Also, CURLOPT_FOLLOWLOCATION should not be used on uploads.
1181 Instead, the app should handle redirects itself, sanitizing each URL first.
1183 .IP Authentication
1184 Use of CURLOPT_UNRESTRICTED_AUTH could cause authentication information to
1185 be sent to an unknown second server.  Apps can mitigate against this
1186 by disabling CURLOPT_FOLLOWLOCATION and handling redirects itself,
1187 sanitizing where necessary.
1189 Use of the CURLAUTH_ANY option to CURLOPT_HTTPAUTH could result in user
1190 name and password being sent in clear text to an HTTP server.  Instead,
1191 use CURLAUTH_ANYSAFE which ensures that the password is encrypted over
1192 the network, or else fail the request.
1194 Use of the CURLUSESSL_TRY option to CURLOPT_USE_SSL could result in user
1195 name and password being sent in clear text to an FTP server.  Instead,
1196 use CURLUSESSL_CONTROL to ensure that an encrypted connection is used or
1197 else fail the request.
1199 .IP Cookies
1200 If cookies are enabled and cached, then a user could craft a URL which
1201 performs some malicious action to a site whose authentication is already
1202 stored in a cookie. e.g. http://mail.example.com/delete-stuff.cgi?delete=all
1203 Apps can mitigate against this by disabling cookies or clearing them
1204 between requests.
1206 .IP "Dangerous URLs"
1207 SCP URLs can contain raw commands within the scp: URL, which is a side effect
1208 of how the SCP protocol is designed. e.g.
1209 scp://user:pass@host/a;date >/tmp/test;
1210 Apps must not allow unsanitized SCP: URLs to be passed in for downloads.
1212 .IP "Denial of Service"
1213 A malicious server could cause libcurl to effectively hang by sending
1214 a trickle of data through, or even no data at all but just keeping the TCP
1215 connection open.  This could result in a denial-of-service attack. The
1216 CURLOPT_TIMEOUT and/or CURLOPT_LOW_SPEED_LIMIT options can be used to
1217 mitigate against this.
1219 A malicious server could cause libcurl to effectively hang by starting to
1220 send data, then severing the connection without cleanly closing the
1221 TCP connection.  The app could install a CURLOPT_SOCKOPTFUNCTION callback
1222 function and set the TCP SO_KEEPALIVE option to mitigate against this.
1223 Setting one of the timeout options would also work against this attack.
1225 A malicious server could cause libcurl to download an infinite amount of
1226 data, potentially causing all of memory or disk to be filled. Setting
1227 the CURLOPT_MAXFILESIZE_LARGE option is not sufficient to guard against this.
1228 Instead, the app should monitor the amount of data received within the
1229 write or progress callback and abort once the limit is reached.
1231 A malicious HTTP server could cause an infinite redirection loop, causing a
1232 denial-of-service. This can be mitigated by using the CURLOPT_MAXREDIRS
1233 option.
1235 .IP "Arbitrary Headers"
1236 User-supplied data must be sanitized when used in options like
1237 CURLOPT_USERAGENT, CURLOPT_HTTPHEADER, CURLOPT_POSTFIELDS and others that
1238 are used to generate structured data. Characters like embedded carriage
1239 returns or ampersands could allow the user to create additional headers or
1240 fields that could cause malicious transactions.
1242 .IP "Server-supplied Names"
1243 A server can supply data which the application may, in some cases, use as
1244 a file name. The curl command-line tool does this with --remote-header-name,
1245 using the Content-disposition: header to generate a file name.  An application
1246 could also use CURLINFO_EFFECTIVE_URL to generate a file name from a
1247 server-supplied redirect URL. Special care must be taken to sanitize such
1248 names to avoid the possibility of a malicious server supplying one like
1249 "/etc/passwd", "\autoexec.bat" or even ".bashrc".
1251 .IP "Server Certificates"
1252 A secure application should never use the CURLOPT_SSL_VERIFYPEER option to
1253 disable certificate validation. There are numerous attacks that are enabled
1254 by apps that fail to properly validate server TLS/SSL certificates,
1255 thus enabling a malicious server to spoof a legitimate one. HTTPS without
1256 validated certificates is potentially as insecure as a plain HTTP connection.
1258 .IP "Showing What You Do"
1259 On a related issue, be aware that even in situations like when you have
1260 problems with libcurl and ask someone for help, everything you reveal in order
1261 to get best possible help might also impose certain security related
1262 risks. Host names, user names, paths, operating system specifics, etc (not to
1263 mention passwords of course) may in fact be used by intruders to gain
1264 additional information of a potential target.
1266 To avoid this problem, you must of course use your common sense. Often, you
1267 can just edit out the sensitive data or just search/replace your true
1268 information with faked data.
1270 .SH "Multiple Transfers Using the multi Interface"
1272 The easy interface as described in detail in this document is a synchronous
1273 interface that transfers one file at a time and doesn't return until it is
1274 done.
1276 The multi interface, on the other hand, allows your program to transfer
1277 multiple files in both directions at the same time, without forcing you
1278 to use multiple threads.  The name might make it seem that the multi
1279 interface is for multi-threaded programs, but the truth is almost the
1280 reverse.  The multi interface can allow a single-threaded application
1281 to perform the same kinds of multiple, simultaneous transfers that
1282 multi-threaded programs can perform.  It allows many of the benefits
1283 of multi-threaded transfers without the complexity of managing and
1284 synchronizing many threads.
1286 To use this interface, you are better off if you first understand the basics
1287 of how to use the easy interface. The multi interface is simply a way to make
1288 multiple transfers at the same time by adding up multiple easy handles into
1289 a "multi stack".
1291 You create the easy handles you want and you set all the options just like you
1292 have been told above, and then you create a multi handle with
1293 \fIcurl_multi_init(3)\fP and add all those easy handles to that multi handle
1294 with \fIcurl_multi_add_handle(3)\fP.
1296 When you've added the handles you have for the moment (you can still add new
1297 ones at any time), you start the transfers by calling
1298 \fIcurl_multi_perform(3)\fP.
1300 \fIcurl_multi_perform(3)\fP is asynchronous. It will only execute as little as
1301 possible and then return back control to your program. It is designed to never
1302 block.
1304 The best usage of this interface is when you do a select() on all possible
1305 file descriptors or sockets to know when to call libcurl again. This also
1306 makes it easy for you to wait and respond to actions on your own application's
1307 sockets/handles. You figure out what to select() for by using
1308 \fIcurl_multi_fdset(3)\fP, that fills in a set of fd_set variables for you
1309 with the particular file descriptors libcurl uses for the moment.
1311 When you then call select(), it'll return when one of the file handles signal
1312 action and you then call \fIcurl_multi_perform(3)\fP to allow libcurl to do
1313 what it wants to do. Take note that libcurl does also feature some time-out
1314 code so we advise you to never use very long timeouts on select() before you
1315 call \fIcurl_multi_perform(3)\fP, which thus should be called unconditionally
1316 every now and then even if none of its file descriptors have signaled
1317 ready. Another precaution you should use: always call
1318 \fIcurl_multi_fdset(3)\fP immediately before the select() call since the
1319 current set of file descriptors may change when calling a curl function.
1321 If you want to stop the transfer of one of the easy handles in the stack, you
1322 can use \fIcurl_multi_remove_handle(3)\fP to remove individual easy
1323 handles. Remember that easy handles should be \fIcurl_easy_cleanup(3)\fPed.
1325 When a transfer within the multi stack has finished, the counter of running
1326 transfers (as filled in by \fIcurl_multi_perform(3)\fP) will decrease. When
1327 the number reaches zero, all transfers are done.
1329 \fIcurl_multi_info_read(3)\fP can be used to get information about completed
1330 transfers. It then returns the CURLcode for each easy transfer, to allow you
1331 to figure out success on each individual transfer.
1333 .SH "SSL, Certificates and Other Tricks"
1335  [ seeding, passwords, keys, certificates, ENGINE, ca certs ]
1337 .SH "Sharing Data Between Easy Handles"
1338 You can share some data between easy handles when the easy interface is used,
1339 and some data is share automatically when you use the multi interface.
1341 When you add easy handles to a multi handle, these easy handles will
1342 automatically share a lot of the data that otherwise would be kept on a
1343 per-easy handle basis when the easy interface is used.
1345 The DNS cache is shared between handles within a multi handle, making
1346 subsequent name resolvings faster and the connection pool that is kept to
1347 better allow persistent connections and connection re-use is shared. If you're
1348 using the easy interface, you can still share these between specific easy
1349 handles by using the share interface, see \fIlibcurl-share(3)\fP.
1351 Some things are never shared automatically, not within multi handles, like for
1352 example cookies so the only way to share that is with the share interface.
1353 .SH "Footnotes"
1355 .IP "[1]"
1356 libcurl 7.10.3 and later have the ability to switch over to chunked
1357 Transfer-Encoding in cases where HTTP uploads are done with data of an unknown
1358 size.
1359 .IP "[2]"
1360 This happens on Windows machines when libcurl is built and used as a
1361 DLL. However, you can still do this on Windows if you link with a static
1362 library.
1363 .IP "[3]"
1364 The curl-config tool is generated at build-time (on UNIX-like systems) and
1365 should be installed with the 'make install' or similar instruction that
1366 installs the library, header files, man pages etc.
1367 .IP "[4]"
1368 This behavior was different in versions before 7.17.0, where strings had to
1369 remain valid past the end of the \fIcurl_easy_setopt(3)\fP call.