libcurl-tutorial.3 64 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2014, 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.
  31. This document will refer to 'the user' as the person writing the source code
  32. that uses libcurl. That would probably be you or someone in your position.
  33. What will be generally referred to as 'the program' will be the collected
  34. source code that you write that is using libcurl for transfers. The program
  35. is outside libcurl and libcurl is outside of the program.
  36. To get more details on all options and functions described herein, please
  37. refer to their respective man pages.
  38. .SH "Building"
  39. There are many different ways to build C programs. This chapter will assume a
  40. UNIX-style build process. If you use a different build system, you can still
  41. read this to get general information that may apply to your environment as
  42. well.
  43. .IP "Compiling the Program"
  44. Your compiler needs to know where the libcurl headers are located. Therefore
  45. you must set your compiler's include path to point to the directory where you
  46. installed them. The 'curl-config'[3] tool can be used to get this information:
  47. $ curl-config --cflags
  48. .IP "Linking the Program with libcurl"
  49. When having compiled the program, you need to link your object files to create
  50. a single executable. For that to succeed, you need to link with libcurl and
  51. possibly also with other libraries that libcurl itself depends on. Like the
  52. OpenSSL libraries, but even some standard OS libraries may be needed on the
  53. command line. To figure out which flags to use, once again the 'curl-config'
  54. tool comes to the rescue:
  55. $ curl-config --libs
  56. .IP "SSL or Not"
  57. libcurl can be built and customized in many ways. One of the things that
  58. varies from different libraries and builds is the support for SSL-based
  59. transfers, like HTTPS and FTPS. If a supported SSL library was detected
  60. properly at build-time, libcurl will be built with SSL support. To figure out
  61. if an installed libcurl has been built with SSL support enabled, use
  62. \&'curl-config' like this:
  63. $ curl-config --feature
  64. And if SSL is supported, the keyword 'SSL' will be written to stdout,
  65. possibly together with a few other features that could be either on or off on
  66. for different libcurls.
  67. See also the "Features libcurl Provides" further down.
  68. .IP "autoconf macro"
  69. When you write your configure script to detect libcurl and setup variables
  70. accordingly, we offer a prewritten macro that probably does everything you
  71. need in this area. See docs/libcurl/libcurl.m4 file - it includes docs on how
  72. to use it.
  73. .SH "Portable Code in a Portable World"
  74. The people behind libcurl have put a considerable effort to make libcurl work
  75. on a large amount of different operating systems and environments.
  76. You program libcurl the same way on all platforms that libcurl runs on. There
  77. are only very few minor considerations that differ. If you just make sure to
  78. write your code portable enough, you may very well create yourself a very
  79. portable program. libcurl shouldn't stop you from that.
  80. .SH "Global Preparation"
  81. The program must initialize some of the libcurl functionality globally. That
  82. means it should be done exactly once, no matter how many times you intend to
  83. use the library. Once for your program's entire life time. This is done using
  84. curl_global_init()
  85. and it takes one parameter which is a bit pattern that tells libcurl what to
  86. initialize. Using \fICURL_GLOBAL_ALL\fP will make it initialize all known
  87. internal sub modules, and might be a good default option. The current two bits
  88. that are specified are:
  89. .RS
  90. .IP "CURL_GLOBAL_WIN32"
  91. which only does anything on Windows machines. When used on
  92. a Windows machine, it'll make libcurl initialize the win32 socket
  93. stuff. Without having that initialized properly, your program cannot use
  94. sockets properly. You should only do this once for each application, so if
  95. your program already does this or of another library in use does it, you
  96. should not tell libcurl to do this as well.
  97. .IP CURL_GLOBAL_SSL
  98. which only does anything on libcurls compiled and built SSL-enabled. On these
  99. systems, this will make libcurl initialize the SSL library properly for this
  100. application. This only needs to be done once for each application so if your
  101. program or another library already does this, this bit should not be needed.
  102. .RE
  103. libcurl has a default protection mechanism that detects if
  104. \fIcurl_global_init(3)\fP hasn't been called by the time
  105. \fIcurl_easy_perform(3)\fP is called and if that is the case, libcurl runs the
  106. function itself with a guessed bit pattern. Please note that depending solely
  107. on this is not considered nice nor very good.
  108. When the program no longer uses libcurl, it should call
  109. \fIcurl_global_cleanup(3)\fP, which is the opposite of the init call. It will
  110. then do the reversed operations to cleanup the resources the
  111. \fIcurl_global_init(3)\fP call initialized.
  112. Repeated calls to \fIcurl_global_init(3)\fP and \fIcurl_global_cleanup(3)\fP
  113. should be avoided. They should only be called once each.
  114. .SH "Features libcurl Provides"
  115. It is considered best-practice to determine libcurl features at run-time
  116. rather than at build-time (if possible of course). By calling
  117. \fIcurl_version_info(3)\fP and checking out the details of the returned
  118. struct, your program can figure out exactly what the currently running libcurl
  119. supports.
  120. .SH "Handle the Easy libcurl"
  121. libcurl first introduced the so called easy interface. All operations in the
  122. easy interface are prefixed with 'curl_easy'.
  123. Recent libcurl versions also offer the multi interface. More about that
  124. interface, what it is targeted for and how to use it is detailed in a separate
  125. chapter further down. You still need to understand the easy interface first,
  126. so please continue reading for better understanding.
  127. To use the easy interface, you must first create yourself an easy handle. You
  128. need one handle for each easy session you want to perform. Basically, you
  129. should use one handle for every thread you plan to use for transferring. You
  130. must never share the same handle in multiple threads.
  131. Get an easy handle with
  132. easyhandle = curl_easy_init();
  133. It returns an easy handle. Using that you proceed to the next step: setting
  134. up your preferred actions. A handle is just a logic entity for the upcoming
  135. transfer or series of transfers.
  136. You set properties and options for this handle using
  137. \fIcurl_easy_setopt(3)\fP. They control how the subsequent transfer or
  138. transfers will be made. Options remain set in the handle until set again to
  139. something different. Alas, multiple requests using the same handle will use
  140. the same options.
  141. Many of the options you set in libcurl are "strings", pointers to data
  142. terminated with a zero byte. When you set strings with
  143. \fIcurl_easy_setopt(3)\fP, libcurl makes its own copy so that they don't
  144. need to be kept around in your application after being set[4].
  145. One of the most basic properties to set in the handle is the URL. You set your
  146. preferred URL to transfer with \fICURLOPT_URL(3)\fP in a manner similar to:
  147. .nf
  148. curl_easy_setopt(handle, CURLOPT_URL, "http://domain.com/");
  149. .fi
  150. Let's assume for a while that you want to receive data as the URL identifies a
  151. remote resource you want to get here. Since you write a sort of application
  152. that needs this transfer, I assume that you would like to get the data passed
  153. to you directly instead of simply getting it passed to stdout. So, you write
  154. your own function that matches this prototype:
  155. size_t write_data(void *buffer, size_t size, size_t nmemb, void *userp);
  156. You tell libcurl to pass all data to this function by issuing a function
  157. similar to this:
  158. curl_easy_setopt(easyhandle, CURLOPT_WRITEFUNCTION, write_data);
  159. You can control what data your callback function gets in the fourth argument
  160. by setting another property:
  161. curl_easy_setopt(easyhandle, CURLOPT_WRITEDATA, &internal_struct);
  162. Using that property, you can easily pass local data between your application
  163. and the function that gets invoked by libcurl. libcurl itself won't touch the
  164. data you pass with \fICURLOPT_WRITEDATA(3)\fP.
  165. libcurl offers its own default internal callback that will take care of the
  166. data if you don't set the callback with \fICURLOPT_WRITEFUNCTION(3)\fP. It
  167. will then simply output the received data to stdout. You can have the default
  168. callback write the data to a different file handle by passing a 'FILE *' to a
  169. file opened for writing with the \fICURLOPT_WRITEDATA(3)\fP option.
  170. Now, we need to take a step back and have a deep breath. Here's one of those
  171. rare platform-dependent nitpicks. Did you spot it? On some platforms[2],
  172. libcurl won't be able to operate on files opened by the program. Thus, if you
  173. use the default callback and pass in an open file with
  174. \fICURLOPT_WRITEDATA(3)\fP, it will crash. You should therefore avoid this to
  175. make your program run fine virtually everywhere.
  176. (\fICURLOPT_WRITEDATA(3)\fP was formerly known as \fICURLOPT_FILE\fP. Both
  177. names still work and do the same thing).
  178. If you're using libcurl as a win32 DLL, you MUST use the
  179. \fICURLOPT_WRITEFUNCTION(3)\fP if you set \fICURLOPT_WRITEDATA(3)\fP - or you
  180. will experience crashes.
  181. There are of course many more options you can set, and we'll get back to a few
  182. of them later. Let's instead continue to the actual transfer:
  183. success = curl_easy_perform(easyhandle);
  184. \fIcurl_easy_perform(3)\fP will connect to the remote site, do the necessary
  185. commands and receive the transfer. Whenever it receives data, it calls the
  186. callback function we previously set. The function may get one byte at a time,
  187. or it may get many kilobytes at once. libcurl delivers as much as possible as
  188. often as possible. Your callback function should return the number of bytes it
  189. \&"took care of". If that is not the exact same amount of bytes that was
  190. passed to it, libcurl will abort the operation and return with an error code.
  191. When the transfer is complete, the function returns a return code that informs
  192. you if it succeeded in its mission or not. If a return code isn't enough for
  193. you, you can use the \fICURLOPT_ERRORBUFFER(3)\fP to point libcurl to a buffer
  194. of yours where it'll store a human readable error message as well.
  195. If you then want to transfer another file, the handle is ready to be used
  196. again. Mind you, it is even preferred that you re-use an existing handle if
  197. you intend to make another transfer. libcurl will then attempt to re-use the
  198. previous connection.
  199. For some protocols, downloading a file can involve a complicated process of
  200. logging in, setting the transfer mode, changing the current directory and
  201. finally transferring the file data. libcurl takes care of all that
  202. complication for you. Given simply the URL to a file, libcurl will take care
  203. of all the details needed to get the file moved from one machine to another.
  204. .SH "Multi-threading Issues"
  205. The first basic rule is that you must \fBnever\fP simultaneously share a
  206. libcurl handle (be it easy or multi or whatever) between multiple
  207. threads. Only use one handle in one thread at any time. You can pass the
  208. handles around among threads, but you must never use a single handle from more
  209. than one thread at any given time.
  210. libcurl is completely thread safe, except for two issues: signals and SSL/TLS
  211. handlers. Signals are used for timing out name resolves (during DNS lookup) -
  212. when built without c-ares support and not on Windows.
  213. If you are accessing HTTPS or FTPS URLs in a multi-threaded manner, you are
  214. then of course using the underlying SSL library multi-threaded and those libs
  215. might have their own requirements on this issue. Basically, you need to
  216. provide one or two functions to allow it to function properly. For all
  217. details, see this:
  218. OpenSSL
  219. http://www.openssl.org/docs/crypto/threads.html#DESCRIPTION
  220. GnuTLS
  221. http://www.gnu.org/software/gnutls/manual/html_node/Multi_002dthreaded-applications.html
  222. NSS
  223. is claimed to be thread-safe already without anything required.
  224. PolarSSL
  225. Required actions unknown.
  226. yassl
  227. Required actions unknown.
  228. axTLS
  229. Required actions unknown.
  230. Secure Transport
  231. The engine is fully thread-safe, and no additional steps are required.
  232. When using multiple threads you should set the \fICURLOPT_NOSIGNAL(3)\fP
  233. option to 1 for all handles. Everything will or might work fine except that
  234. timeouts are not honored during the DNS lookup - which you can work around by
  235. building libcurl with c-ares support. c-ares is a library that provides
  236. asynchronous name resolves. On some platforms, libcurl simply will not
  237. function properly multi-threaded unless this option is set.
  238. Also, note that \fICURLOPT_DNS_USE_GLOBAL_CACHE(3)\fP is not thread-safe.
  239. .SH "When It Doesn't Work"
  240. There will always be times when the transfer fails for some reason. You might
  241. have set the wrong libcurl option or misunderstood what the libcurl option
  242. actually does, or the remote server might return non-standard replies that
  243. confuse the library which then confuses your program.
  244. There's one golden rule when these things occur: set the
  245. \fICURLOPT_VERBOSE(3)\fP option to 1. It'll cause the library to spew out the
  246. entire protocol details it sends, some internal info and some received
  247. protocol data as well (especially when using FTP). If you're using HTTP,
  248. adding the headers in the received output to study is also a clever way to get
  249. a better understanding why the server behaves the way it does. Include headers
  250. in the normal body output with \fICURLOPT_HEADER(3)\fP set 1.
  251. Of course, there are bugs left. We need to know about them to be able to fix
  252. them, so we're quite dependent on your bug reports! When you do report
  253. suspected bugs in libcurl, please include as many details as you possibly can:
  254. a protocol dump that \fICURLOPT_VERBOSE(3)\fP produces, library version, as
  255. much as possible of your code that uses libcurl, operating system name and
  256. version, compiler name and version etc.
  257. If \fICURLOPT_VERBOSE(3)\fP is not enough, you increase the level of debug
  258. data your application receive by using the \fICURLOPT_DEBUGFUNCTION(3)\fP.
  259. Getting some in-depth knowledge about the protocols involved is never wrong,
  260. and if you're trying to do funny things, you might very well understand
  261. libcurl and how to use it better if you study the appropriate RFC documents
  262. at least briefly.
  263. .SH "Upload Data to a Remote Site"
  264. libcurl tries to keep a protocol independent approach to most transfers, thus
  265. uploading to a remote FTP site is very similar to uploading data to a HTTP
  266. server with a PUT request.
  267. Of course, first you either create an easy handle or you re-use one existing
  268. one. Then you set the URL to operate on just like before. This is the remote
  269. URL, that we now will upload.
  270. Since we write an application, we most likely want libcurl to get the upload
  271. data by asking us for it. To make it do that, we set the read callback and
  272. the custom pointer libcurl will pass to our read callback. The read callback
  273. should have a prototype similar to:
  274. size_t function(char *bufptr, size_t size, size_t nitems, void *userp);
  275. Where bufptr is the pointer to a buffer we fill in with data to upload and
  276. size*nitems is the size of the buffer and therefore also the maximum amount
  277. of data we can return to libcurl in this call. The 'userp' pointer is the
  278. custom pointer we set to point to a struct of ours to pass private data
  279. between the application and the callback.
  280. curl_easy_setopt(easyhandle, CURLOPT_READFUNCTION, read_function);
  281. curl_easy_setopt(easyhandle, CURLOPT_READDATA, &filedata);
  282. Tell libcurl that we want to upload:
  283. curl_easy_setopt(easyhandle, CURLOPT_UPLOAD, 1L);
  284. A few protocols won't behave properly when uploads are done without any prior
  285. knowledge of the expected file size. So, set the upload file size using the
  286. \fICURLOPT_INFILESIZE_LARGE(3)\fP for all known file sizes like this[1]:
  287. .nf
  288. /* in this example, file_size must be an curl_off_t variable */
  289. curl_easy_setopt(easyhandle, CURLOPT_INFILESIZE_LARGE, file_size);
  290. .fi
  291. When you call \fIcurl_easy_perform(3)\fP this time, it'll perform all the
  292. necessary operations and when it has invoked the upload it'll call your
  293. supplied callback to get the data to upload. The program should return as much
  294. data as possible in every invoke, as that is likely to make the upload perform
  295. as fast as possible. The callback should return the number of bytes it wrote
  296. in the buffer. Returning 0 will signal the end of the upload.
  297. .SH "Passwords"
  298. Many protocols use or even require that user name and password are provided
  299. to be able to download or upload the data of your choice. libcurl offers
  300. several ways to specify them.
  301. Most protocols support that you specify the name and password in the URL
  302. itself. libcurl will detect this and use them accordingly. This is written
  303. like this:
  304. protocol://user:password@example.com/path/
  305. If you need any odd letters in your user name or password, you should enter
  306. them URL encoded, as %XX where XX is a two-digit hexadecimal number.
  307. libcurl also provides options to set various passwords. The user name and
  308. password as shown embedded in the URL can instead get set with the
  309. \fICURLOPT_USERPWD(3)\fP option. The argument passed to libcurl should be a
  310. char * to a string in the format "user:password". In a manner like this:
  311. curl_easy_setopt(easyhandle, CURLOPT_USERPWD, "myname:thesecret");
  312. Another case where name and password might be needed at times, is for those
  313. users who need to authenticate themselves to a proxy they use. libcurl offers
  314. another option for this, the \fICURLOPT_PROXYUSERPWD(3)\fP. It is used quite
  315. similar to the \fICURLOPT_USERPWD(3)\fP option like this:
  316. curl_easy_setopt(easyhandle, CURLOPT_PROXYUSERPWD, "myname:thesecret");
  317. There's a long time UNIX "standard" way of storing ftp user names and
  318. passwords, namely in the $HOME/.netrc file. The file should be made private
  319. so that only the user may read it (see also the "Security Considerations"
  320. chapter), as it might contain the password in plain text. libcurl has the
  321. ability to use this file to figure out what set of user name and password to
  322. use for a particular host. As an extension to the normal functionality,
  323. libcurl also supports this file for non-FTP protocols such as HTTP. To make
  324. curl use this file, use the \fICURLOPT_NETRC(3)\fP option:
  325. curl_easy_setopt(easyhandle, CURLOPT_NETRC, 1L);
  326. And a very basic example of how such a .netrc file may look like:
  327. .nf
  328. machine myhost.mydomain.com
  329. login userlogin
  330. password secretword
  331. .fi
  332. All these examples have been cases where the password has been optional, or
  333. at least you could leave it out and have libcurl attempt to do its job
  334. without it. There are times when the password isn't optional, like when
  335. you're using an SSL private key for secure transfers.
  336. To pass the known private key password to libcurl:
  337. curl_easy_setopt(easyhandle, CURLOPT_KEYPASSWD, "keypassword");
  338. .SH "HTTP Authentication"
  339. The previous chapter showed how to set user name and password for getting
  340. URLs that require authentication. When using the HTTP protocol, there are
  341. many different ways a client can provide those credentials to the server and
  342. you can control which way libcurl will (attempt to) use them. The default HTTP
  343. authentication method is called 'Basic', which is sending the name and
  344. password in clear-text in the HTTP request, base64-encoded. This is insecure.
  345. At the time of this writing, libcurl can be built to use: Basic, Digest, NTLM,
  346. Negotiate, GSS-Negotiate and SPNEGO. You can tell libcurl which one to use
  347. with \fICURLOPT_HTTPAUTH(3)\fP as in:
  348. curl_easy_setopt(easyhandle, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
  349. And when you send authentication to a proxy, you can also set authentication
  350. type the same way but instead with \fICURLOPT_PROXYAUTH(3)\fP:
  351. curl_easy_setopt(easyhandle, CURLOPT_PROXYAUTH, CURLAUTH_NTLM);
  352. Both these options allow you to set multiple types (by ORing them together),
  353. to make libcurl pick the most secure one out of the types the server/proxy
  354. claims to support. This method does however add a round-trip since libcurl
  355. must first ask the server what it supports:
  356. curl_easy_setopt(easyhandle, CURLOPT_HTTPAUTH,
  357. CURLAUTH_DIGEST|CURLAUTH_BASIC);
  358. For convenience, you can use the 'CURLAUTH_ANY' define (instead of a list
  359. with specific types) which allows libcurl to use whatever method it wants.
  360. When asking for multiple types, libcurl will pick the available one it
  361. considers "best" in its own internal order of preference.
  362. .SH "HTTP POSTing"
  363. We get many questions regarding how to issue HTTP POSTs with libcurl the
  364. proper way. This chapter will thus include examples using both different
  365. versions of HTTP POST that libcurl supports.
  366. The first version is the simple POST, the most common version, that most HTML
  367. pages using the <form> tag uses. We provide a pointer to the data and tell
  368. libcurl to post it all to the remote site:
  369. .nf
  370. char *data="name=daniel&project=curl";
  371. curl_easy_setopt(easyhandle, CURLOPT_POSTFIELDS, data);
  372. curl_easy_setopt(easyhandle, CURLOPT_URL, "http://posthere.com/");
  373. curl_easy_perform(easyhandle); /* post away! */
  374. .fi
  375. Simple enough, huh? Since you set the POST options with the
  376. \fICURLOPT_POSTFIELDS(3)\fP, this automatically switches the handle to use
  377. POST in the upcoming request.
  378. Ok, so what if you want to post binary data that also requires you to set the
  379. Content-Type: header of the post? Well, binary posts prevent libcurl from
  380. being able to do strlen() on the data to figure out the size, so therefore we
  381. must tell libcurl the size of the post data. Setting headers in libcurl
  382. requests are done in a generic way, by building a list of our own headers and
  383. then passing that list to libcurl.
  384. .nf
  385. struct curl_slist *headers=NULL;
  386. headers = curl_slist_append(headers, "Content-Type: text/xml");
  387. /* post binary data */
  388. curl_easy_setopt(easyhandle, CURLOPT_POSTFIELDS, binaryptr);
  389. /* set the size of the postfields data */
  390. curl_easy_setopt(easyhandle, CURLOPT_POSTFIELDSIZE, 23L);
  391. /* pass our list of custom made headers */
  392. curl_easy_setopt(easyhandle, CURLOPT_HTTPHEADER, headers);
  393. curl_easy_perform(easyhandle); /* post away! */
  394. curl_slist_free_all(headers); /* free the header list */
  395. .fi
  396. While the simple examples above cover the majority of all cases where HTTP
  397. POST operations are required, they don't do multi-part formposts. Multi-part
  398. formposts were introduced as a better way to post (possibly large) binary data
  399. and were first documented in the RFC1867 (updated in RFC2388). They're called
  400. multi-part because they're built by a chain of parts, each part being a single
  401. unit of data. Each part has its own name and contents. You can in fact create
  402. and post a multi-part formpost with the regular libcurl POST support described
  403. above, but that would require that you build a formpost yourself and provide
  404. to libcurl. To make that easier, libcurl provides \fIcurl_formadd(3)\fP. Using
  405. this function, you add parts to the form. When you're done adding parts, you
  406. post the whole form.
  407. The following example sets two simple text parts with plain textual contents,
  408. and then a file with binary contents and uploads the whole thing.
  409. .nf
  410. struct curl_httppost *post=NULL;
  411. struct curl_httppost *last=NULL;
  412. curl_formadd(&post, &last,
  413. CURLFORM_COPYNAME, "name",
  414. CURLFORM_COPYCONTENTS, "daniel", CURLFORM_END);
  415. curl_formadd(&post, &last,
  416. CURLFORM_COPYNAME, "project",
  417. CURLFORM_COPYCONTENTS, "curl", CURLFORM_END);
  418. curl_formadd(&post, &last,
  419. CURLFORM_COPYNAME, "logotype-image",
  420. CURLFORM_FILECONTENT, "curl.png", CURLFORM_END);
  421. /* Set the form info */
  422. curl_easy_setopt(easyhandle, CURLOPT_HTTPPOST, post);
  423. curl_easy_perform(easyhandle); /* post away! */
  424. /* free the post data again */
  425. curl_formfree(post);
  426. .fi
  427. Multipart formposts are chains of parts using MIME-style separators and
  428. headers. It means that each one of these separate parts get a few headers set
  429. that describe the individual content-type, size etc. To enable your
  430. application to handicraft this formpost even more, libcurl allows you to
  431. supply your own set of custom headers to such an individual form part. You can
  432. of course supply headers to as many parts as you like, but this little example
  433. will show how you set headers to one specific part when you add that to the
  434. post handle:
  435. .nf
  436. struct curl_slist *headers=NULL;
  437. headers = curl_slist_append(headers, "Content-Type: text/xml");
  438. curl_formadd(&post, &last,
  439. CURLFORM_COPYNAME, "logotype-image",
  440. CURLFORM_FILECONTENT, "curl.xml",
  441. CURLFORM_CONTENTHEADER, headers,
  442. CURLFORM_END);
  443. curl_easy_perform(easyhandle); /* post away! */
  444. curl_formfree(post); /* free post */
  445. curl_slist_free_all(headers); /* free custom header list */
  446. .fi
  447. Since all options on an easyhandle are "sticky", they remain the same until
  448. changed even if you do call \fIcurl_easy_perform(3)\fP, you may need to tell
  449. curl to go back to a plain GET request if you intend to do one as your next
  450. request. You force an easyhandle to go back to GET by using the
  451. \fICURLOPT_HTTPGET(3)\fP option:
  452. curl_easy_setopt(easyhandle, CURLOPT_HTTPGET, 1L);
  453. Just setting \fICURLOPT_POSTFIELDS(3)\fP to "" or NULL will *not* stop libcurl
  454. from doing a POST. It will just make it POST without any data to send!
  455. .SH "Showing Progress"
  456. For historical and traditional reasons, libcurl has a built-in progress meter
  457. that can be switched on and then makes it present a progress meter in your
  458. terminal.
  459. Switch on the progress meter by, oddly enough, setting
  460. \fICURLOPT_NOPROGRESS(3)\fP to zero. This option is set to 1 by default.
  461. For most applications however, the built-in progress meter is useless and
  462. what instead is interesting is the ability to specify a progress
  463. callback. The function pointer you pass to libcurl will then be called on
  464. irregular intervals with information about the current transfer.
  465. Set the progress callback by using \fICURLOPT_PROGRESSFUNCTION(3)\fP. And pass
  466. a pointer to a function that matches this prototype:
  467. .nf
  468. int progress_callback(void *clientp,
  469. double dltotal,
  470. double dlnow,
  471. double ultotal,
  472. double ulnow);
  473. .fi
  474. If any of the input arguments is unknown, a 0 will be passed. The first
  475. argument, the 'clientp' is the pointer you pass to libcurl with
  476. \fICURLOPT_PROGRESSDATA(3)\fP. libcurl won't touch it.
  477. .SH "libcurl with C++"
  478. There's basically only one thing to keep in mind when using C++ instead of C
  479. when interfacing libcurl:
  480. The callbacks CANNOT be non-static class member functions
  481. Example C++ code:
  482. .nf
  483. class AClass {
  484. static size_t write_data(void *ptr, size_t size, size_t nmemb,
  485. void *ourpointer)
  486. {
  487. /* do what you want with the data */
  488. }
  489. }
  490. .fi
  491. .SH "Proxies"
  492. What "proxy" means according to Merriam-Webster: "a person authorized to act
  493. for another" but also "the agency, function, or office of a deputy who acts as
  494. a substitute for another".
  495. Proxies are exceedingly common these days. Companies often only offer Internet
  496. access to employees through their proxies. Network clients or user-agents ask
  497. the proxy for documents, the proxy does the actual request and then it returns
  498. them.
  499. libcurl supports SOCKS and HTTP proxies. When a given URL is wanted, libcurl
  500. will ask the proxy for it instead of trying to connect to the actual host
  501. identified in the URL.
  502. If you're using a SOCKS proxy, you may find that libcurl doesn't quite support
  503. all operations through it.
  504. For HTTP proxies: the fact that the proxy is a HTTP proxy puts certain
  505. restrictions on what can actually happen. A requested URL that might not be a
  506. HTTP URL will be still be passed to the HTTP proxy to deliver back to
  507. libcurl. This happens transparently, and an application may not need to
  508. know. I say "may", because at times it is very important to understand that
  509. all operations over a HTTP proxy use the HTTP protocol. For example, you
  510. can't invoke your own custom FTP commands or even proper FTP directory
  511. listings.
  512. .IP "Proxy Options"
  513. To tell libcurl to use a proxy at a given port number:
  514. curl_easy_setopt(easyhandle, CURLOPT_PROXY, "proxy-host.com:8080");
  515. Some proxies require user authentication before allowing a request, and you
  516. pass that information similar to this:
  517. curl_easy_setopt(easyhandle, CURLOPT_PROXYUSERPWD, "user:password");
  518. If you want to, you can specify the host name only in the
  519. \fICURLOPT_PROXY(3)\fP option, and set the port number separately with
  520. \fICURLOPT_PROXYPORT(3)\fP.
  521. Tell libcurl what kind of proxy it is with \fICURLOPT_PROXYTYPE(3)\fP (if not,
  522. it will default to assume a HTTP proxy):
  523. curl_easy_setopt(easyhandle, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS4);
  524. .IP "Environment Variables"
  525. libcurl automatically checks and uses a set of environment variables to know
  526. what proxies to use for certain protocols. The names of the variables are
  527. following an ancient de facto standard and are built up as "[protocol]_proxy"
  528. (note the lower casing). Which makes the variable \&'http_proxy' checked for a
  529. name of a proxy to use when the input URL is HTTP. Following the same rule,
  530. the variable named 'ftp_proxy' is checked for FTP URLs. Again, the proxies are
  531. always HTTP proxies, the different names of the variables simply allows
  532. different HTTP proxies to be used.
  533. The proxy environment variable contents should be in the format
  534. \&"[protocol://][user:password@]machine[:port]". Where the protocol:// part is
  535. simply ignored if present (so http://proxy and bluerk://proxy will do the
  536. same) and the optional port number specifies on which port the proxy operates
  537. on the host. If not specified, the internal default port number will be used
  538. and that is most likely *not* the one you would like it to be.
  539. There are two special environment variables. 'all_proxy' is what sets proxy
  540. for any URL in case the protocol specific variable wasn't set, and
  541. \&'no_proxy' defines a list of hosts that should not use a proxy even though a
  542. variable may say so. If 'no_proxy' is a plain asterisk ("*") it matches all
  543. hosts.
  544. To explicitly disable libcurl's checking for and using the proxy environment
  545. variables, set the proxy name to "" - an empty string - with
  546. \fICURLOPT_PROXY(3)\fP.
  547. .IP "SSL and Proxies"
  548. SSL is for secure point-to-point connections. This involves strong encryption
  549. and similar things, which effectively makes it impossible for a proxy to
  550. operate as a "man in between" which the proxy's task is, as previously
  551. discussed. Instead, the only way to have SSL work over a HTTP proxy is to ask
  552. the proxy to tunnel trough everything without being able to check or fiddle
  553. with the traffic.
  554. Opening an SSL connection over a HTTP proxy is therefor a matter of asking the
  555. proxy for a straight connection to the target host on a specified port. This
  556. is made with the HTTP request CONNECT. ("please mr proxy, connect me to that
  557. remote host").
  558. Because of the nature of this operation, where the proxy has no idea what kind
  559. of data that is passed in and out through this tunnel, this breaks some of the
  560. very few advantages that come from using a proxy, such as caching. Many
  561. organizations prevent this kind of tunneling to other destination port numbers
  562. than 443 (which is the default HTTPS port number).
  563. .IP "Tunneling Through Proxy"
  564. As explained above, tunneling is required for SSL to work and often even
  565. restricted to the operation intended for SSL; HTTPS.
  566. This is however not the only time proxy-tunneling might offer benefits to
  567. you or your application.
  568. As tunneling opens a direct connection from your application to the remote
  569. machine, it suddenly also re-introduces the ability to do non-HTTP
  570. operations over a HTTP proxy. You can in fact use things such as FTP
  571. upload or FTP custom commands this way.
  572. Again, this is often prevented by the administrators of proxies and is
  573. rarely allowed.
  574. Tell libcurl to use proxy tunneling like this:
  575. curl_easy_setopt(easyhandle, CURLOPT_HTTPPROXYTUNNEL, 1L);
  576. In fact, there might even be times when you want to do plain HTTP
  577. operations using a tunnel like this, as it then enables you to operate on
  578. the remote server instead of asking the proxy to do so. libcurl will not
  579. stand in the way for such innovative actions either!
  580. .IP "Proxy Auto-Config"
  581. Netscape first came up with this. It is basically a web page (usually using a
  582. \&.pac extension) with a Javascript that when executed by the browser with the
  583. requested URL as input, returns information to the browser on how to connect
  584. to the URL. The returned information might be "DIRECT" (which means no proxy
  585. should be used), "PROXY host:port" (to tell the browser where the proxy for
  586. this particular URL is) or "SOCKS host:port" (to direct the browser to a SOCKS
  587. proxy).
  588. libcurl has no means to interpret or evaluate Javascript and thus it doesn't
  589. support this. If you get yourself in a position where you face this nasty
  590. invention, the following advice have been mentioned and used in the past:
  591. - Depending on the Javascript complexity, write up a script that translates it
  592. to another language and execute that.
  593. - Read the Javascript code and rewrite the same logic in another language.
  594. - Implement a Javascript interpreter; people have successfully used the
  595. Mozilla Javascript engine in the past.
  596. - Ask your admins to stop this, for a static proxy setup or similar.
  597. .SH "Persistence Is The Way to Happiness"
  598. Re-cycling the same easy handle several times when doing multiple requests is
  599. the way to go.
  600. After each single \fIcurl_easy_perform(3)\fP operation, libcurl will keep the
  601. connection alive and open. A subsequent request using the same easy handle to
  602. the same host might just be able to use the already open connection! This
  603. reduces network impact a lot.
  604. Even if the connection is dropped, all connections involving SSL to the same
  605. host again, will benefit from libcurl's session ID cache that drastically
  606. reduces re-connection time.
  607. FTP connections that are kept alive save a lot of time, as the command-
  608. response round-trips are skipped, and also you don't risk getting blocked
  609. without permission to login again like on many FTP servers only allowing N
  610. persons to be logged in at the same time.
  611. libcurl caches DNS name resolving results, to make lookups of a previously
  612. looked up name a lot faster.
  613. Other interesting details that improve performance for subsequent requests
  614. may also be added in the future.
  615. Each easy handle will attempt to keep the last few connections alive for a
  616. while in case they are to be used again. You can set the size of this "cache"
  617. with the \fICURLOPT_MAXCONNECTS(3)\fP option. Default is 5. There is very
  618. seldom any point in changing this value, and if you think of changing this it
  619. is often just a matter of thinking again.
  620. To force your upcoming request to not use an already existing connection (it
  621. will even close one first if there happens to be one alive to the same host
  622. you're about to operate on), you can do that by setting
  623. \fICURLOPT_FRESH_CONNECT(3)\fP to 1. In a similar spirit, you can also forbid
  624. the upcoming request to be "lying" around and possibly get re-used after the
  625. request by setting \fICURLOPT_FORBID_REUSE(3)\fP to 1.
  626. .SH "HTTP Headers Used by libcurl"
  627. When you use libcurl to do HTTP requests, it'll pass along a series of headers
  628. automatically. It might be good for you to know and understand these. You
  629. can replace or remove them by using the \fICURLOPT_HTTPHEADER(3)\fP option.
  630. .IP "Host"
  631. This header is required by HTTP 1.1 and even many 1.0 servers and should be
  632. the name of the server we want to talk to. This includes the port number if
  633. anything but default.
  634. .IP "Accept"
  635. \&"*/*".
  636. .IP "Expect"
  637. When doing POST requests, libcurl sets this header to \&"100-continue" to ask
  638. the server for an "OK" message before it proceeds with sending the data part
  639. of the post. If the POSTed data amount is deemed "small", libcurl will not use
  640. this header.
  641. .SH "Customizing Operations"
  642. There is an ongoing development today where more and more protocols are built
  643. upon HTTP for transport. This has obvious benefits as HTTP is a tested and
  644. reliable protocol that is widely deployed and has excellent proxy-support.
  645. When you use one of these protocols, and even when doing other kinds of
  646. programming you may need to change the traditional HTTP (or FTP or...)
  647. manners. You may need to change words, headers or various data.
  648. libcurl is your friend here too.
  649. .IP CUSTOMREQUEST
  650. If just changing the actual HTTP request keyword is what you want, like when
  651. GET, HEAD or POST is not good enough for you, \fICURLOPT_CUSTOMREQUEST(3)\fP
  652. is there for you. It is very simple to use:
  653. curl_easy_setopt(easyhandle, CURLOPT_CUSTOMREQUEST, "MYOWNREQUEST");
  654. When using the custom request, you change the request keyword of the actual
  655. request you are performing. Thus, by default you make a GET request but you can
  656. also make a POST operation (as described before) and then replace the POST
  657. keyword if you want to. You're the boss.
  658. .IP "Modify Headers"
  659. HTTP-like protocols pass a series of headers to the server when doing the
  660. request, and you're free to pass any amount of extra headers that you
  661. think fit. Adding headers is this easy:
  662. .nf
  663. struct curl_slist *headers=NULL; /* init to NULL is important */
  664. headers = curl_slist_append(headers, "Hey-server-hey: how are you?");
  665. headers = curl_slist_append(headers, "X-silly-content: yes");
  666. /* pass our list of custom made headers */
  667. curl_easy_setopt(easyhandle, CURLOPT_HTTPHEADER, headers);
  668. curl_easy_perform(easyhandle); /* transfer http */
  669. curl_slist_free_all(headers); /* free the header list */
  670. .fi
  671. \&... and if you think some of the internally generated headers, such as
  672. Accept: or Host: don't contain the data you want them to contain, you can
  673. replace them by simply setting them too:
  674. .nf
  675. headers = curl_slist_append(headers, "Accept: Agent-007");
  676. headers = curl_slist_append(headers, "Host: munged.host.line");
  677. .fi
  678. .IP "Delete Headers"
  679. If you replace an existing header with one with no contents, you will prevent
  680. the header from being sent. For instance, if you want to completely prevent the
  681. \&"Accept:" header from being sent, you can disable it with code similar to this:
  682. headers = curl_slist_append(headers, "Accept:");
  683. Both replacing and canceling internal headers should be done with careful
  684. consideration and you should be aware that you may violate the HTTP protocol
  685. when doing so.
  686. .IP "Enforcing chunked transfer-encoding"
  687. By making sure a request uses the custom header "Transfer-Encoding: chunked"
  688. when doing a non-GET HTTP operation, libcurl will switch over to "chunked"
  689. upload, even though the size of the data to upload might be known. By default,
  690. libcurl usually switches over to chunked upload automatically if the upload
  691. data size is unknown.
  692. .IP "HTTP Version"
  693. All HTTP requests includes the version number to tell the server which version
  694. we support. libcurl speaks HTTP 1.1 by default. Some very old servers don't
  695. like getting 1.1-requests and when dealing with stubborn old things like that,
  696. you can tell libcurl to use 1.0 instead by doing something like this:
  697. curl_easy_setopt(easyhandle, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
  698. .IP "FTP Custom Commands"
  699. Not all protocols are HTTP-like, and thus the above may not help you when
  700. you want to make, for example, your FTP transfers to behave differently.
  701. Sending custom commands to a FTP server means that you need to send the
  702. commands exactly as the FTP server expects them (RFC959 is a good guide
  703. here), and you can only use commands that work on the control-connection
  704. alone. All kinds of commands that require data interchange and thus need
  705. a data-connection must be left to libcurl's own judgement. Also be aware
  706. that libcurl will do its very best to change directory to the target
  707. directory before doing any transfer, so if you change directory (with CWD
  708. or similar) you might confuse libcurl and then it might not attempt to
  709. transfer the file in the correct remote directory.
  710. A little example that deletes a given file before an operation:
  711. .nf
  712. headers = curl_slist_append(headers, "DELE file-to-remove");
  713. /* pass the list of custom commands to the handle */
  714. curl_easy_setopt(easyhandle, CURLOPT_QUOTE, headers);
  715. curl_easy_perform(easyhandle); /* transfer ftp data! */
  716. curl_slist_free_all(headers); /* free the header list */
  717. .fi
  718. If you would instead want this operation (or chain of operations) to happen
  719. _after_ the data transfer took place the option to \fIcurl_easy_setopt(3)\fP
  720. would instead be called \fICURLOPT_POSTQUOTE(3)\fP and used the exact same
  721. way.
  722. The custom FTP command will be issued to the server in the same order they are
  723. added to the list, and if a command gets an error code returned back from the
  724. server, no more commands will be issued and libcurl will bail out with an
  725. error code (CURLE_QUOTE_ERROR). Note that if you use \fICURLOPT_QUOTE(3)\fP to
  726. send commands before a transfer, no transfer will actually take place when a
  727. quote command has failed.
  728. If you set the \fICURLOPT_HEADER(3)\fP to 1, you will tell libcurl to get
  729. information about the target file and output "headers" about it. The headers
  730. will be in "HTTP-style", looking like they do in HTTP.
  731. The option to enable headers or to run custom FTP commands may be useful to
  732. combine with \fICURLOPT_NOBODY(3)\fP. If this option is set, no actual file
  733. content transfer will be performed.
  734. .IP "FTP Custom CUSTOMREQUEST"
  735. If you do want to list the contents of a FTP directory using your own defined
  736. FTP command, \fICURLOPT_CUSTOMREQUEST(3)\fP will do just that. "NLST" is the
  737. default one for listing directories but you're free to pass in your idea of a
  738. good alternative.
  739. .SH "Cookies Without Chocolate Chips"
  740. In the HTTP sense, a cookie is a name with an associated value. A server sends
  741. the name and value to the client, and expects it to get sent back on every
  742. subsequent request to the server that matches the particular conditions
  743. set. The conditions include that the domain name and path match and that the
  744. cookie hasn't become too old.
  745. In real-world cases, servers send new cookies to replace existing ones to
  746. update them. Server use cookies to "track" users and to keep "sessions".
  747. Cookies are sent from server to clients with the header Set-Cookie: and
  748. they're sent from clients to servers with the Cookie: header.
  749. To just send whatever cookie you want to a server, you can use
  750. \fICURLOPT_COOKIE(3)\fP to set a cookie string like this:
  751. curl_easy_setopt(easyhandle, CURLOPT_COOKIE, "name1=var1; name2=var2;");
  752. In many cases, that is not enough. You might want to dynamically save
  753. whatever cookies the remote server passes to you, and make sure those cookies
  754. are then used accordingly on later requests.
  755. One way to do this, is to save all headers you receive in a plain file and
  756. when you make a request, you tell libcurl to read the previous headers to
  757. figure out which cookies to use. Set the header file to read cookies from with
  758. \fICURLOPT_COOKIEFILE(3)\fP.
  759. The \fICURLOPT_COOKIEFILE(3)\fP option also automatically enables the cookie
  760. parser in libcurl. Until the cookie parser is enabled, libcurl will not parse
  761. or understand incoming cookies and they will just be ignored. However, when
  762. the parser is enabled the cookies will be understood and the cookies will be
  763. kept in memory and used properly in subsequent requests when the same handle
  764. is used. Many times this is enough, and you may not have to save the cookies
  765. to disk at all. Note that the file you specify to \ICURLOPT_COOKIEFILE(3)\fP
  766. doesn't have to exist to enable the parser, so a common way to just enable the
  767. parser and not read any cookies is to use the name of a file you know doesn't
  768. exist.
  769. If you would rather use existing cookies that you've previously received with
  770. your Netscape or Mozilla browsers, you can make libcurl use that cookie file
  771. as input. The \fICURLOPT_COOKIEFILE(3)\fP is used for that too, as libcurl
  772. will automatically find out what kind of file it is and act accordingly.
  773. Perhaps the most advanced cookie operation libcurl offers, is saving the
  774. entire internal cookie state back into a Netscape/Mozilla formatted cookie
  775. file. We call that the cookie-jar. When you set a file name with
  776. \fICURLOPT_COOKIEJAR(3)\fP, that file name will be created and all received
  777. cookies will be stored in it when \fIcurl_easy_cleanup(3)\fP is called. This
  778. enables cookies to get passed on properly between multiple handles without any
  779. information getting lost.
  780. .SH "FTP Peculiarities We Need"
  781. FTP transfers use a second TCP/IP connection for the data transfer. This is
  782. usually a fact you can forget and ignore but at times this fact will come
  783. back to haunt you. libcurl offers several different ways to customize how the
  784. second connection is being made.
  785. libcurl can either connect to the server a second time or tell the server to
  786. connect back to it. The first option is the default and it is also what works
  787. best for all the people behind firewalls, NATs or IP-masquerading setups.
  788. libcurl then tells the server to open up a new port and wait for a second
  789. connection. This is by default attempted with EPSV first, and if that doesn't
  790. work it tries PASV instead. (EPSV is an extension to the original FTP spec
  791. and does not exist nor work on all FTP servers.)
  792. You can prevent libcurl from first trying the EPSV command by setting
  793. \fICURLOPT_FTP_USE_EPSV(3)\fP to zero.
  794. In some cases, you will prefer to have the server connect back to you for the
  795. second connection. This might be when the server is perhaps behind a firewall
  796. or something and only allows connections on a single port. libcurl then
  797. informs the remote server which IP address and port number to connect to.
  798. This is made with the \fICURLOPT_FTPPORT(3)\fP option. If you set it to "-",
  799. libcurl will use your system's "default IP address". If you want to use a
  800. particular IP, you can set the full IP address, a host name to resolve to an
  801. IP address or even a local network interface name that libcurl will get the IP
  802. address from.
  803. When doing the "PORT" approach, libcurl will attempt to use the EPRT and the
  804. LPRT before trying PORT, as they work with more protocols. You can disable
  805. this behavior by setting \fICURLOPT_FTP_USE_EPRT(3)\fP to zero.
  806. .SH "Headers Equal Fun"
  807. Some protocols provide "headers", meta-data separated from the normal
  808. data. These headers are by default not included in the normal data stream, but
  809. you can make them appear in the data stream by setting \fICURLOPT_HEADER(3)\fP
  810. to 1.
  811. What might be even more useful, is libcurl's ability to separate the headers
  812. from the data and thus make the callbacks differ. You can for example set a
  813. different pointer to pass to the ordinary write callback by setting
  814. \fICURLOPT_HEADERDATA(3)\fP.
  815. Or, you can set an entirely separate function to receive the headers, by using
  816. \fICURLOPT_HEADERFUNCTION(3)\fP.
  817. The headers are passed to the callback function one by one, and you can
  818. depend on that fact. It makes it easier for you to add custom header parsers
  819. etc.
  820. \&"Headers" for FTP transfers equal all the FTP server responses. They aren't
  821. actually true headers, but in this case we pretend they are! ;-)
  822. .SH "Post Transfer Information"
  823. [ curl_easy_getinfo ]
  824. .SH "Security Considerations"
  825. The libcurl project takes security seriously. The library is written with
  826. caution and precautions are taken to mitigate many kinds of risks encountered
  827. while operating with potentially malicious servers on the Internet. It is a
  828. powerful library, however, which allows application writers to make trade offs
  829. between ease of writing and exposure to potential risky operations. If
  830. used the right way, you can use libcurl to transfer data pretty safely.
  831. Many applications are used in closed networks where users and servers
  832. can be trusted, but many others are used on arbitrary servers and are fed
  833. input from potentially untrusted users. Following is a discussion about
  834. some risks in the ways in which applications commonly use libcurl and
  835. potential mitigations of those risks. It is by no means comprehensive, but
  836. shows classes of attacks that robust applications should consider. The
  837. Common Weakness Enumeration project at http://cwe.mitre.org/ is a good
  838. reference for many of these and similar types of weaknesses of which
  839. application writers should be aware.
  840. .IP "Command Lines"
  841. If you use a command line tool (such as curl) that uses libcurl, and you give
  842. options to the tool on the command line those options can very likely get read
  843. by other users of your system when they use 'ps' or other tools to list
  844. currently running processes.
  845. To avoid this problem, never feed sensitive things to programs using command
  846. line options. Write them to a protected file and use the \-K option to
  847. avoid this.
  848. .IP ".netrc"
  849. \&.netrc is a pretty handy file/feature that allows you to login quickly and
  850. automatically to frequently visited sites. The file contains passwords in
  851. clear text and is a real security risk. In some cases, your .netrc is also
  852. stored in a home directory that is NFS mounted or used on another network
  853. based file system, so the clear text password will fly through your network
  854. every time anyone reads that file!
  855. To avoid this problem, don't use .netrc files and never store passwords in
  856. plain text anywhere.
  857. .IP "Clear Text Passwords"
  858. Many of the protocols libcurl supports send name and password unencrypted as
  859. clear text (HTTP Basic authentication, FTP, TELNET etc). It is very easy for
  860. anyone on your network or a network nearby yours to just fire up a network
  861. analyzer tool and eavesdrop on your passwords. Don't let the fact that HTTP
  862. Basic uses base64 encoded passwords fool you. They may not look readable at a
  863. first glance, but they very easily "deciphered" by anyone within seconds.
  864. To avoid this problem, use HTTP authentication methods or other protocols that
  865. don't let snoopers see your password: HTTP with Digest, NTLM or GSS
  866. authentication, HTTPS, FTPS, SCP, SFTP and FTP-Kerberos are a few examples.
  867. .IP "Redirects"
  868. The \fICURLOPT_FOLLOWLOCATION(3)\fP option automatically follows HTTP
  869. redirects sent by a remote server. These redirects can refer to any kind of
  870. URL, not just HTTP. A redirect to a file: URL would cause the libcurl to read
  871. (or write) arbitrary files from the local filesystem. If the application
  872. returns the data back to the user (as would happen in some kinds of CGI
  873. scripts), an attacker could leverage this to read otherwise forbidden data
  874. (e.g. file://localhost/etc/passwd).
  875. If authentication credentials are stored in the ~/.netrc file, or Kerberos
  876. is in use, any other URL type (not just file:) that requires
  877. authentication is also at risk. A redirect such as
  878. ftp://some-internal-server/private-file would then return data even when
  879. the server is password protected.
  880. In the same way, if an unencrypted SSH private key has been configured for
  881. the user running the libcurl application, SCP: or SFTP: URLs could access
  882. password or private-key protected resources,
  883. e.g. sftp://user@some-internal-server/etc/passwd
  884. The \fICURLOPT_REDIR_PROTOCOLS(3)\fP and \fICURLOPT_NETRC(3)\fP options can be
  885. used to mitigate against this kind of attack.
  886. A redirect can also specify a location available only on the machine running
  887. libcurl, including servers hidden behind a firewall from the attacker.
  888. e.g. http://127.0.0.1/ or http://intranet/delete-stuff.cgi?delete=all or
  889. tftp://bootp-server/pc-config-data
  890. Apps can mitigate against this by disabling \fICURLOPT_FOLLOWLOCATION(3)\fP
  891. and handling redirects itself, sanitizing URLs as necessary. Alternately, an
  892. app could leave \fICURLOPT_FOLLOWLOCATION(3)\fP enabled but set
  893. \fICURLOPT_REDIR_PROTOCOLS(3)\fP and install a
  894. \fICURLOPT_OPENSOCKETFUNCTION(3)\fP callback function in which addresses are
  895. sanitized before use.
  896. .IP "Private Resources"
  897. A user who can control the DNS server of a domain being passed in within a URL
  898. can change the address of the host to a local, private address which a
  899. server-side libcurl-using application could then use. e.g. the innocuous URL
  900. http://fuzzybunnies.example.com/ could actually resolve to the IP address of a
  901. server behind a firewall, such as 127.0.0.1 or 10.1.2.3. Apps can mitigate
  902. against this by setting a \fICURLOPT_OPENSOCKETFUNCTION(3)\fP and checking the
  903. address before a connection.
  904. All the malicious scenarios regarding redirected URLs apply just as well to
  905. non-redirected URLs, if the user is allowed to specify an arbitrary URL that
  906. could point to a private resource. For example, a web app providing a
  907. translation service might happily translate file://localhost/etc/passwd and
  908. display the result. Apps can mitigate against this with the
  909. \fICURLOPT_PROTOCOLS(3)\fP option as well as by similar mitigation techniques
  910. for redirections.
  911. A malicious FTP server could in response to the PASV command return an IP
  912. address and port number for a server local to the app running libcurl but
  913. behind a firewall. Apps can mitigate against this by using the
  914. \fICURLOPT_FTP_SKIP_PASV_IP(3)\fP option or \fICURLOPT_FTPPORT(3)\fP.
  915. .IP "IPv6 Addresses"
  916. libcurl will normally handle IPv6 addresses transparently and just as easily
  917. as IPv4 addresses. That means that a sanitizing function that filters out
  918. addressses like 127.0.0.1 isn't sufficient--the equivalent IPv6 addresses ::1,
  919. ::, 0:00::0:1, ::127.0.0.1 and ::ffff:7f00:1 supplied somehow by an attacker
  920. would all bypass a naive filter and could allow access to undesired local
  921. resources. IPv6 also has special address blocks like link-local and site-local
  922. that generally shouldn't be accessed by a server-side libcurl-using
  923. application. A poorly-configured firewall installed in a data center,
  924. organization or server may also be configured to limit IPv4 connections but
  925. leave IPv6 connections wide open. In some cases, the CURL_IPRESOLVE_V4 option
  926. can be used to limit resolved addresses to IPv4 only and bypass these issues.
  927. .IP Uploads
  928. When uploading, a redirect can cause a local (or remote) file to be
  929. overwritten. Apps must not allow any unsanitized URL to be passed in for
  930. uploads. Also, \fICURLOPT_FOLLOWLOCATION(3)\fP should not be used on uploads.
  931. Instead, the app should handle redirects itself, sanitizing each URL first.
  932. .IP Authentication
  933. Use of \fICURLOPT_UNRESTRICTED_AUTH(3)\fP could cause authentication
  934. information to be sent to an unknown second server. Apps can mitigate against
  935. this by disabling \fICURLOPT_FOLLOWLOCATION(3)\fP and handling redirects
  936. itself, sanitizing where necessary.
  937. Use of the CURLAUTH_ANY option to \fICURLOPT_HTTPAUTH(3)\fP could result in
  938. user name and password being sent in clear text to an HTTP server. Instead,
  939. use CURLAUTH_ANYSAFE which ensures that the password is encrypted over the
  940. network, or else fail the request.
  941. Use of the CURLUSESSL_TRY option to \fICURLOPT_USE_SSL(3)\fP could result in
  942. user name and password being sent in clear text to an FTP server. Instead,
  943. use CURLUSESSL_CONTROL to ensure that an encrypted connection is used or else
  944. fail the request.
  945. .IP Cookies
  946. If cookies are enabled and cached, then a user could craft a URL which
  947. performs some malicious action to a site whose authentication is already
  948. stored in a cookie. e.g. http://mail.example.com/delete-stuff.cgi?delete=all
  949. Apps can mitigate against this by disabling cookies or clearing them
  950. between requests.
  951. .IP "Dangerous URLs"
  952. SCP URLs can contain raw commands within the scp: URL, which is a side effect
  953. of how the SCP protocol is designed. e.g.
  954. scp://user:pass@host/a;date >/tmp/test;
  955. Apps must not allow unsanitized SCP: URLs to be passed in for downloads.
  956. .IP "Denial of Service"
  957. A malicious server could cause libcurl to effectively hang by sending a
  958. trickle of data through, or even no data at all but just keeping the TCP
  959. connection open. This could result in a denial-of-service attack. The
  960. \fICURLOPT_TIMEOUT(3)\fP and/or \fICURLOPT_LOW_SPEED_LIMIT(3)\fP options can
  961. be used to mitigate against this.
  962. A malicious server could cause libcurl to effectively hang by starting to send
  963. data, then severing the connection without cleanly closing the TCP connection.
  964. The app could install a \fICURLOPT_SOCKOPTFUNCTION(3)\fP callback function and
  965. set the TCP SO_KEEPALIVE option to mitigate against this. Setting one of the
  966. timeout options would also work against this attack.
  967. A malicious server could cause libcurl to download an infinite amount of data,
  968. potentially causing all of memory or disk to be filled. Setting the
  969. \fICURLOPT_MAXFILESIZE_LARGE(3)\fP option is not sufficient to guard against
  970. this. Instead, the app should monitor the amount of data received within the
  971. write or progress callback and abort once the limit is reached.
  972. A malicious HTTP server could cause an infinite redirection loop, causing a
  973. denial-of-service. This can be mitigated by using the
  974. \fICURLOPT_MAXREDIRS(3)\fP option.
  975. .IP "Arbitrary Headers"
  976. User-supplied data must be sanitized when used in options like
  977. \fICURLOPT_USERAGENT(3)\fP, \fICURLOPT_HTTPHEADER(3)\fP,
  978. \fICURLOPT_POSTFIELDS(3)\fP and others that are used to generate structured
  979. data. Characters like embedded carriage returns or ampersands could allow the
  980. user to create additional headers or fields that could cause malicious
  981. transactions.
  982. .IP "Server-supplied Names"
  983. A server can supply data which the application may, in some cases, use as
  984. a file name. The curl command-line tool does this with --remote-header-name,
  985. using the Content-disposition: header to generate a file name. An application
  986. could also use CURLINFO_EFFECTIVE_URL to generate a file name from a
  987. server-supplied redirect URL. Special care must be taken to sanitize such
  988. names to avoid the possibility of a malicious server supplying one like
  989. "/etc/passwd", "\\autoexec.bat", "prn:" or even ".bashrc".
  990. .IP "Server Certificates"
  991. A secure application should never use the \fICURLOPT_SSL_VERIFYPEER(3)\fP
  992. option to disable certificate validation. There are numerous attacks that are
  993. enabled by apps that fail to properly validate server TLS/SSL certificates,
  994. thus enabling a malicious server to spoof a legitimate one. HTTPS without
  995. validated certificates is potentially as insecure as a plain HTTP connection.
  996. .IP "Showing What You Do"
  997. On a related issue, be aware that even in situations like when you have
  998. problems with libcurl and ask someone for help, everything you reveal in order
  999. to get best possible help might also impose certain security related
  1000. risks. Host names, user names, paths, operating system specifics, etc. (not to
  1001. mention passwords of course) may in fact be used by intruders to gain
  1002. additional information of a potential target.
  1003. Be sure to limit access to application logs if they could hold private or
  1004. security-related data. Besides the obvious candidates like user names and
  1005. passwords, things like URLs, cookies or even file names could also hold
  1006. sensitive data.
  1007. To avoid this problem, you must of course use your common sense. Often, you
  1008. can just edit out the sensitive data or just search/replace your true
  1009. information with faked data.
  1010. .SH "Multiple Transfers Using the multi Interface"
  1011. The easy interface as described in detail in this document is a synchronous
  1012. interface that transfers one file at a time and doesn't return until it is
  1013. done.
  1014. The multi interface, on the other hand, allows your program to transfer
  1015. multiple files in both directions at the same time, without forcing you
  1016. to use multiple threads. The name might make it seem that the multi
  1017. interface is for multi-threaded programs, but the truth is almost the
  1018. reverse. The multi interface can allow a single-threaded application
  1019. to perform the same kinds of multiple, simultaneous transfers that
  1020. multi-threaded programs can perform. It allows many of the benefits
  1021. of multi-threaded transfers without the complexity of managing and
  1022. synchronizing many threads.
  1023. To use this interface, you are better off if you first understand the basics
  1024. of how to use the easy interface. The multi interface is simply a way to make
  1025. multiple transfers at the same time by adding up multiple easy handles into
  1026. a "multi stack".
  1027. You create the easy handles you want and you set all the options just like you
  1028. have been told above, and then you create a multi handle with
  1029. \fIcurl_multi_init(3)\fP and add all those easy handles to that multi handle
  1030. with \fIcurl_multi_add_handle(3)\fP.
  1031. When you've added the handles you have for the moment (you can still add new
  1032. ones at any time), you start the transfers by calling
  1033. \fIcurl_multi_perform(3)\fP.
  1034. \fIcurl_multi_perform(3)\fP is asynchronous. It will only execute as little as
  1035. possible and then return back control to your program. It is designed to never
  1036. block.
  1037. The best usage of this interface is when you do a select() on all possible
  1038. file descriptors or sockets to know when to call libcurl again. This also
  1039. makes it easy for you to wait and respond to actions on your own application's
  1040. sockets/handles. You figure out what to select() for by using
  1041. \fIcurl_multi_fdset(3)\fP, that fills in a set of fd_set variables for you
  1042. with the particular file descriptors libcurl uses for the moment.
  1043. When you then call select(), it'll return when one of the file handles signal
  1044. action and you then call \fIcurl_multi_perform(3)\fP to allow libcurl to do
  1045. what it wants to do. Take note that libcurl does also feature some time-out
  1046. code so we advise you to never use very long timeouts on select() before you
  1047. call \fIcurl_multi_perform(3)\fP, which thus should be called unconditionally
  1048. every now and then even if none of its file descriptors have signaled
  1049. ready. Another precaution you should use: always call
  1050. \fIcurl_multi_fdset(3)\fP immediately before the select() call since the
  1051. current set of file descriptors may change when calling a curl function.
  1052. If you want to stop the transfer of one of the easy handles in the stack, you
  1053. can use \fIcurl_multi_remove_handle(3)\fP to remove individual easy
  1054. handles. Remember that easy handles should be \fIcurl_easy_cleanup(3)\fPed.
  1055. When a transfer within the multi stack has finished, the counter of running
  1056. transfers (as filled in by \fIcurl_multi_perform(3)\fP) will decrease. When
  1057. the number reaches zero, all transfers are done.
  1058. \fIcurl_multi_info_read(3)\fP can be used to get information about completed
  1059. transfers. It then returns the CURLcode for each easy transfer, to allow you
  1060. to figure out success on each individual transfer.
  1061. .SH "SSL, Certificates and Other Tricks"
  1062. [ seeding, passwords, keys, certificates, ENGINE, ca certs ]
  1063. .SH "Sharing Data Between Easy Handles"
  1064. You can share some data between easy handles when the easy interface is used,
  1065. and some data is share automatically when you use the multi interface.
  1066. When you add easy handles to a multi handle, these easy handles will
  1067. automatically share a lot of the data that otherwise would be kept on a
  1068. per-easy handle basis when the easy interface is used.
  1069. The DNS cache is shared between handles within a multi handle, making
  1070. subsequent name resolving faster, and the connection pool that is kept to
  1071. better allow persistent connections and connection re-use is also shared. If
  1072. you're using the easy interface, you can still share these between specific
  1073. easy handles by using the share interface, see \fIlibcurl-share(3)\fP.
  1074. Some things are never shared automatically, not within multi handles, like for
  1075. example cookies so the only way to share that is with the share interface.
  1076. .SH "Footnotes"
  1077. .IP "[1]"
  1078. libcurl 7.10.3 and later have the ability to switch over to chunked
  1079. Transfer-Encoding in cases where HTTP uploads are done with data of an unknown
  1080. size.
  1081. .IP "[2]"
  1082. This happens on Windows machines when libcurl is built and used as a
  1083. DLL. However, you can still do this on Windows if you link with a static
  1084. library.
  1085. .IP "[3]"
  1086. The curl-config tool is generated at build-time (on UNIX-like systems) and
  1087. should be installed with the 'make install' or similar instruction that
  1088. installs the library, header files, man pages etc.
  1089. .IP "[4]"
  1090. This behavior was different in versions before 7.17.0, where strings had to
  1091. remain valid past the end of the \fIcurl_easy_setopt(3)\fP call.