CHANGES 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813
  1. _ _ ____ _
  2. ___| | | | _ \| |
  3. / __| | | | |_) | |
  4. | (__| |_| | _ <| |___
  5. \___|\___/|_| \_\_____|
  6. Changelog
  7. Yang Tse (2 May 2009)
  8. - Use a build-time configured curl_socklen_t data type instead of socklen_t.
  9. Yang Tse (1 May 2009)
  10. - Applied David McCreedy's patches "TPF-platform specific changes to various
  11. files" and "http.c fix to Curl_proxyCONNECT for non-ASCII platforms", the
  12. former with minor edits.
  13. Daniel Stenberg (30 Apr 2009)
  14. - I was going to fix issue #59 in KNOWN_BUGS
  15. If the CURLOPT_PORT option is used on an FTP URL like
  16. "ftp://example.com/file;type=A" the ";type=A" is stripped off.
  17. I added test case 562 to verify, only to find out that I couldn't repeat
  18. this bug so I hereby consider it not a bug anymore!
  19. Daniel Stenberg (29 Apr 2009)
  20. - Based on bug report #2723219 (http://curl.haxx.se/bug/view.cgi?id=2723219)
  21. I've now made TFTP "connections" not being kept for re-use within libcurl.
  22. TFTP is UDP-based so the benefit was really low (if even existing) to begin
  23. with so instead of tracking down to fix this problem we instead removed the
  24. re-use. I also enabled test case 1099 that I wrote a few days ago to verify
  25. that this change fixes the reported problem.
  26. Daniel Stenberg (28 Apr 2009)
  27. - Constantine Sapuntzakis filed bug report #2783090
  28. (http://curl.haxx.se/bug/view.cgi?id=2783090) pointing out that on windows
  29. we need to grow the SO_SNDBUF buffer somewhat to get really good upload
  30. speeds. http://support.microsoft.com/kb/823764 has the details. Friends
  31. confirmed that simply adding 32 to CURL_MAX_WRITE_SIZE is enough.
  32. - Bug report #2709004 (http://curl.haxx.se/bug/view.cgi?id=2709004) by Tim
  33. Chen pointed out how curl couldn't upload with resume when reading from a
  34. pipe.
  35. This ended up with the introduction of a new return code for the
  36. CURLOPT_SEEKFUNCTION callback that basically says that the seek failed but
  37. that libcurl may try to resolve the situation anyway. In our case this means
  38. libcurl will attempt to instead read that much data from the stream instead
  39. of seeking and that way curl can now upload with resume when data is read
  40. from a stream!
  41. Daniel Stenberg (26 Apr 2009)
  42. - Bug report #2779733 (http://curl.haxx.se/bug/view.cgi?id=2779733) by Sven
  43. Wegener pointed out that CURLINFO_APPCONNECT_TIME didn't work with the multi
  44. interface and provided a patch that fixed the problem!
  45. Daniel Stenberg (24 Apr 2009)
  46. - Kamil Dudka fixed another NSS-related leak when client certs were used.
  47. - Bug report #2779245 (http://curl.haxx.se/bug/view.cgi?id=2779245) by Rainer
  48. Koenig pointed out that the man page didn't tell that the *_proxy
  49. environment variables can be specified lower case or UPPER CASE and the
  50. lower case takes precedence,
  51. Daniel Fandrich (21 Apr 2009)
  52. - Added new libcurl source files to Amiga, RiscOS and VC6 build files.
  53. Yang Tse (21 Apr 2009)
  54. - Moved potential inclusion of system's malloc.h and memory.h header files to
  55. setup_once.h. Inclusion of each header file is based on the definition of
  56. NEED_MALLOC_H and NEED_MEMORY_H respectively.
  57. Renamed libcurl's memory.h to curl_memory.h
  58. Daniel Stenberg (20 Apr 2009)
  59. - Leanic Lefever reported a crash and did some detailed research on why and
  60. how it occurs (http://curl.haxx.se/mail/lib-2009-04/0289.html). The
  61. conclusion was that if an error is detected and Curl_done() is called for
  62. the connection, ftp_done() could at times return another error code that
  63. then would take precedence and that new code confused existing logic that
  64. works for the first error code (CURLE_SEND_ERROR) only.
  65. - Gisle Vanem noticed that --libtool would produce bogus strings at times for
  66. OBJECTPOINT options. Now we've introduced a new function - my_setopt_str -
  67. within the app for setting plain string options to avoid the risk of this
  68. mistake happening.
  69. Daniel Stenberg (17 Apr 2009)
  70. - Pramod Sharma reported and tracked down a bug when doing FTP over a HTTP
  71. proxy. libcurl would then wrongly close the connection after each
  72. request. In his case it had the weird side-effect that it killed NTLM auth
  73. for the proxy causing an inifinite loop!
  74. I added test case 1098 to verify this fix. The test case does however not
  75. properly verify that the transfers are done persistently - as I couldn't
  76. think of a clever way to achieve it right now - but you need to read the
  77. stderr output after a test run to see that it truly did the right thing.
  78. Daniel Stenberg (13 Apr 2009)
  79. - bug report #2727981 (http://curl.haxx.se/bug/view.cgi?id=2727981) by Martin
  80. Storsjö pointed out how setting CURLOPT_NOBODY to 0 could be downright
  81. confusing as it set the method to either GET or HEAD. The example he showed
  82. looked like:
  83. curl_easy_setopt(curl, CURLOPT_PUT, 1);
  84. curl_easy_setopt(curl, CURLOPT_NOBODY, 0);
  85. The new way doesn't alter the method until the request is about to start. If
  86. CURLOPT_NOBODY is then 1 the HTTP request will be HEAD. If CURLOPT_NOBODY is
  87. 0 and the request happens to have been set to HEAD, it will then instead be
  88. set to GET. I believe this will be less surprising to users, and hopefully
  89. not hit any existing users badly.
  90. - Toshio Kuratomi reported a memory leak problem with libcurl+NSS that turned
  91. out to be leaking cacerts. Kamil Dudka helped me complete the fix. The issue
  92. is found in Redhat's bug tracker:
  93. https://bugzilla.redhat.com/show_bug.cgi?id=453612
  94. There are still memory leaks present, but they seem to have other reasons.
  95. Daniel Fandrich (11 Apr 2009)
  96. - Added new libcurl source files to Symbian OS build files.
  97. - Improved Symbian support for SSL.
  98. Yang Tse (10 Apr 2009)
  99. - Daniel Johnson improved the MacOSX-Framework shell script to now perform all
  100. the steps required to build a Mac OS X four way fat ppc/i386/ppc64/x86_64
  101. libcurl.framework. Four way fat framework requires OS X 10.5 SDK or later.
  102. Yang Tse (8 Apr 2009)
  103. - Removed Sun compilers preprocessor block from curlbuild.h.dist, this also
  104. removes it from the curlbuild.h file originally distributed by the cURL
  105. project as this file is intended for systems not capable of running the
  106. configure script. For those who have been building curl out of the source
  107. code curl distribution tarball provided by curl.haxx.se the change implies
  108. nothing. Previous change in this area committed 2 Apr becomes irrelevant.
  109. Daniel Stenberg (6 Apr 2009)
  110. - I clarified in the docs that CURLOPT_SEEKFUNCTION should return 0 on success
  111. and 1 on fatal errors. Previously it only mentioned non-zero on fatal
  112. errors. This is a slight change in meaning, but it follows what we've done
  113. elsewhere before and it opens up for LOTS of more useful return codes
  114. whenever we can think of them...
  115. Yang Tse (2 Apr 2009)
  116. - Fix curl_off_t definition for builds done using Sun compilers and a
  117. non-configured libcurl. In this case curl_off_t data type was gated
  118. to the off_t data type which depends on the _FILE_OFFSET_BITS. This
  119. configuration is exactly the unwanted configuration for our curl_off_t
  120. data type which must not depend on such setting. This breaks ABI for
  121. libcurl libraries built with Sun compilers which were built without
  122. having run the configure script with _FILE_OFFSET_BITS different than
  123. 64 and using the ILP32 data model.
  124. Daniel Stenberg (1 Apr 2009)
  125. - Andre Guibert de Bruet fixed a NULL pointer use in an infof() call if a
  126. strdup() call failed.
  127. Daniel Fandrich (31 Mar 2009)
  128. - Properly return an error code in curl_easy_recv (reported by Jim Freeman).
  129. Daniel Stenberg (18 Mar 2009)
  130. - Kamil Dudka brought a patch that enables 6 additional crypto algorithms when
  131. NSS is used. These ciphers were added in NSS 3.4 and require to be enabled
  132. explicitly.
  133. Daniel Stenberg (13 Mar 2009)
  134. - Use libssh2_version() to present the libssh2 version in case the libssh2
  135. library is found to support it.
  136. Yang Tse (12 Mar 2009)
  137. - Added missing Curl_read() return code checking in TELNET transfers.
  138. - Pierre Brico found and fixed TELNET transfers not being aborted upon
  139. a write callback failure.
  140. Daniel Stenberg (11 Mar 2009)
  141. - Kamil Dudka made the curl tool properly call curl_global_init() before any
  142. other libcurl function.
  143. Yang Tse (11 Mar 2009)
  144. - Added missing TELNET timeout support for Windows builds. This issue was
  145. reported by Pierre Brico.
  146. Daniel Stenberg (9 Mar 2009)
  147. - Frank Hempel found out a bug and provided the fix:
  148. curl_easy_duphandle did not necessarily duplicate the CURLOPT_COOKIEFILE
  149. option. It only enabled the cookie engine in the destination handle if
  150. data->cookies is not NULL (where data is the source handle). In case of a
  151. newly initialized handle which just had the cookie support enabled by a
  152. curl_easy_setopt(handle, CURL_COOKIEFILE, "")-call, handle->cookies was
  153. still NULL because the setopt-call only appends the value to
  154. data->change.cookielist, hence duplicating this handle would not have the
  155. cookie engine switched on.
  156. We also concluded that the slist-functionality would be suitable for being
  157. put in its own module rather than simply hanging out in lib/sendf.c so I
  158. created lib/slist.[ch] for them.
  159. - Andreas Farber made the 'buildconf' script check for the presence of m4
  160. scripts to make it detect a bad checkout earlier. People with older
  161. checkouts who don't do cvs update with the -d option won't get the new dirs
  162. and then will get funny outputs that can be a bit hard to understand and
  163. fix.
  164. Daniel Stenberg (8 Mar 2009)
  165. - Andre Guibert de Bruet found and fixed a code segment in ssluse.c where the
  166. allocation of the memory BIO was not being properly checked.
  167. - Andre Guibert de Bruet fixed the gnutls-using code: There are a few places
  168. in the gnutls code where we were checking for negative values for errors,
  169. when the man pages state that GNUTLS_E_SUCCESS is returned on success and
  170. other values indicate error conditions.
  171. - Bill Egert pointed out (http://curl.haxx.se/bug/view.cgi?id=2671602) that
  172. curl didn't use sprintf() in a way that is documented to work in POSIX but
  173. since we use our own printf() code (from libcurl) that shouldn't be a
  174. problem. Nonetheless I modified the code to not rely on such particular
  175. features and to not cause further raised eyebrowse with no good reason.
  176. Daniel Fandrich (5 Mar 2009)
  177. - Expanded the security section of the libcurl-tutorial man page to cover
  178. more issues for authors to consider when writing robust libcurl-using
  179. applications.
  180. Yang Tse (5 Mar 2009)
  181. - Fixed NTLM authentication memory leak on SSPI enabled Windows builds. This
  182. issue was noticed by Chris Deidun.
  183. Daniel Fandrich (4 Mar 2009)
  184. - Fixed a problem with m4 quoting in the OpenSSL configure check reported
  185. by Daniel Johnson.
  186. Daniel Stenberg (3 Mar 2009)
  187. - David James brought a patch that make libcurl close (all) dead connections
  188. whenever you attempt to open a new connection.
  189. 1. After cleaning up a dead connection, "continue" instead of
  190. returning FALSE. This ensures that we clean up all dead connections,
  191. rather than just cleaning up the first dead connection.
  192. 2. Move up the cleanup for dead connections so that it occurs for
  193. all connections, rather than just the connections which have the same
  194. preferences as our current new connection.
  195. Version 7.19.4 (3 March 2009)
  196. Daniel Stenberg (3 Mar 2009)
  197. - David Kierznowski notified us about a security flaw
  198. (http://curl.haxx.se/docs/adv_20090303.html also known as CVE-2009-0037) in
  199. which previous libcurl versions (by design) can be tricked to access an
  200. arbitrary local/different file instead of a remote one when
  201. CURLOPT_FOLLOWLOCATION is enabled. This flaw is now fixed in this release
  202. together this the addition of two new setopt options for controlling this
  203. new behavior:
  204. o CURLOPT_REDIR_PROTOCOLS controls what protocols libcurl is allowed to
  205. follow to when CURLOPT_FOLLOWLOCATION is enabled. By default, this option
  206. excludes the FILE and SCP protocols and thus you nee to explicitly allow
  207. them in your app if you really want that behavior.
  208. o CURLOPT_PROTOCOLS controls what protocol(s) libcurl is allowed to fetch
  209. using the primary URL option. This is useful if you want to allow a user or
  210. other outsiders control what URL to pass to libcurl and yet not allow all
  211. protocols libcurl may have been built to support.
  212. Daniel Stenberg (27 Feb 2009)
  213. - Senthil Raja Velu reported a problem when CURLOPT_INTERFACE and
  214. CURLOPT_LOCALPORT were used together (the local port bind failed), and
  215. Markus Koetter provided the fix!
  216. Daniel Stenberg (25 Feb 2009)
  217. - As Daniel Fandrich figured out, we must do the GnuTLS initing in the
  218. curl_global_init() function to properly maintain the performing functions
  219. thread-safe. We've previously (28 April 2007) moved the init to a later time
  220. just to avoid it to fail very early when libgcrypt dislikes the situation,
  221. but that move was bad and the fix should rather be in libgcrypt or
  222. elsewhere.
  223. Daniel Stenberg (24 Feb 2009)
  224. - Brian J. Murrell found out that Negotiate proxy authentication didn't work.
  225. It happened because the code used the struct for server-based auth all the
  226. time for both proxy and server auth which of course was wrong.
  227. Daniel Stenberg (23 Feb 2009)
  228. - After a bug reported by James Cheng I've made curl_easy_getinfo() for
  229. CURLINFO_CONTENT_LENGTH_DOWNLOAD and CURLINFO_CONTENT_LENGTH_UPLOAD return
  230. -1 if the sizes aren't know. Previously these returned 0, make it impossible
  231. to detect the difference between actually zero and unknown.
  232. Yang Tse (23 Feb 2009)
  233. - Daniel Johnson provided a shell script that will perform all the steps needed
  234. to build a Mac OS X fat ppc/i386 or ppc64/x86_64 libcurl.framework
  235. Daniel Stenberg (23 Feb 2009)
  236. - I renamed everything in the windows builds files that used the name 'curllib'
  237. to the proper 'libcurl' as clearly this caused confusion.
  238. Yang Tse (20 Feb 2009)
  239. - Do not halt compilation when using VS2008 to build a Windows 2000 target.
  240. Daniel Stenberg (20 Feb 2009)
  241. - Linus Nielsen Feltzing reported and helped me repeat and fix a problem with
  242. FTP with the multi interface: when a transfer fails, like when aborted by a
  243. write callback, the control connection was wrongly closed and thus not
  244. re-used properly.
  245. This change is also an attempt to cleanup the code somewhat in this area, as
  246. now the FTP code attempts to keep (better) track on pending responses
  247. necessary to get read in ftp_done().
  248. Daniel Stenberg (19 Feb 2009)
  249. - Patrik Thunstrom reported a problem and helped me repeat it. It turned out
  250. libcurl did a superfluous 1000ms wait when doing SFTP downloads!
  251. We read data with libssh2 while doing the "DO" operation for SFTP and then
  252. when we were about to start getting data for the actual file part, the
  253. "TRANSFER" part, we waited for socket action (in 1000ms) before doing a
  254. libssh2-read. But in this case libssh2 had already read and buffered the
  255. data so we ended up always just waiting 1000ms before we get working on the
  256. data!
  257. Patrick Monnerat (18 Feb 2009)
  258. - FTP downloads (i.e.: RETR) ending with code 550 now return error
  259. CURLE_REMOTE_FILE_NOT_FOUND instead of CURLE_FTP_COULDNT_RETR_FILE.
  260. Daniel Stenberg (17 Feb 2009)
  261. - Kamil Dudka made NSS-powered builds compile and run again!
  262. - A second follow-up change by Andre Guibert de Bruet to fix a related memory
  263. leak like that fixed on the 14th. When zlib returns failure, we need to
  264. cleanup properly before returning error.
  265. - CURLOPT_FTP_CREATE_MISSING_DIRS can now be set to 2 in addition to 1 for
  266. plain FTP connections, and it will then allow MKD to fail once and retry the
  267. CWD afterwards. This is especially useful if you're doing many simultanoes
  268. connections against the same server and they all have this option enabled,
  269. as then CWD may first fail but then another connection does MKD before this
  270. connection and thus MKD fails but trying CWD works! The numbers can
  271. (should?) now be set with the convenience enums now called
  272. CURLFTP_CREATE_DIR and CURLFTP_CREATE_DIR_RETRY.
  273. Tests has proven that if you're making an application that uploads a set of
  274. files to an ftp server, you will get a noticable gain in speed if you're
  275. using multiple connections and this option will be then be very useful.
  276. Daniel Stenberg (14 Feb 2009)
  277. - Andre Guibert de Bruet found and fixed a memory leak in the content encoding
  278. code, which could happen on libz errors.
  279. Daniel Fandrich (12 Feb 2009)
  280. - Added support for Digest and NTLM authentication using GnuTLS.
  281. Daniel Stenberg (11 Feb 2009)
  282. - CURLINFO_CONDITION_UNMET was added to allow an application to get to know if
  283. the condition in the previous request was unmet. This is typically a time
  284. condition set with CURLOPT_TIMECONDITION and was previously not possible to
  285. reliably figure out. From bug report #2565128
  286. (http://curl.haxx.se/bug/view.cgi?id=2565128) filed by Jocelyn Jaubert.
  287. Daniel Fandrich (4 Feb 2009)
  288. - Don't add the standard /usr/lib or /usr/include paths to LDFLAGS and CPPFLAGS
  289. (respectively) when --with-ssl=/usr is used (patch based on FreeBSD).
  290. - Added an explicit buffer limit check in msdosify() (patch based on FreeBSD).
  291. This couldn't ever overflow in curl, but might if the code were used
  292. elsewhere or under different conditions.
  293. Daniel Stenberg (3 Feb 2009)
  294. - Hidemoto Nakada provided a small fix that makes it possible to get the
  295. CURLINFO_CONTENT_LENGTH_DOWNLOAD size from file:// "transfers" with
  296. CURLOPT_NOBODY set true.
  297. Daniel Stenberg (2 Feb 2009)
  298. - Patrick Scott found a rather large memory leak when using the multi
  299. interface and setting CURLMOPT_MAXCONNECTS to something less than the number
  300. of handles you add to the multi handle. All the connections that didn't fit
  301. in the cache would not be properly disconnected nor freed!
  302. - Craig A West brought us: libcurl now defaults to do CONNECT with HTTP
  303. version 1.1 instead of 1.0 like before. This change also introduces the new
  304. proxy type for libcurl called 'CURLPROXY_HTTP_1_0' that then allows apps to
  305. switch (back) to CONNECT 1.0 requests. The curl tool also got a --proxy1.0
  306. option that works exactly like --proxy but sets CURLPROXY_HTTP_1_0.
  307. I updated all test cases cases that use CONNECT and I tried to do some using
  308. --proxy1.0 and some updated to do CONNECT 1.1 to get both versions run.
  309. Daniel Stenberg (31 Jan 2009)
  310. - When building with c-ares 1.6.1 (not yet released) or later and IPv6 support
  311. enabled, we can now take advantage of its brand new AF_UNSPEC support in
  312. ares_gethostbyname(). This makes test case 241 finally run fine for me with
  313. this setup since it now parses the "::1 ip6-localhost" line fine in my
  314. /etc/hosts file!
  315. Daniel Stenberg (30 Jan 2009)
  316. - Scott Cantor filed bug report #2550061
  317. (http://curl.haxx.se/bug/view.cgi?id=2550061) mentioning that I failed to
  318. properly make sure that the VC9 makefiles got included in the latest
  319. release. I've now fixed the release script and verified it so next release
  320. will hopefully include them properly!
  321. Daniel Fandrich (30 Jan 2009)
  322. - Fixed --disable-proxy for FTP and SOCKS. Thanks to Daniel Egger for
  323. reporting.
  324. Yang Tse (29 Jan 2009)
  325. - Introduced curl_sspi.c and curl_sspi.h for the implementation of functions
  326. Curl_sspi_global_init() and Curl_sspi_global_cleanup() which previously were
  327. named Curl_ntlm_global_init() and Curl_ntlm_global_cleanup() in http_ntlm.c
  328. Also adjusted socks_sspi.c to remove the link-time dependency on the Windows
  329. SSPI library using it now in the same way as it was done in http_ntlm.c.
  330. Daniel Stenberg (28 Jan 2009)
  331. - Markus Moeller introduced two new options to libcurl:
  332. CURLOPT_SOCKS5_GSSAPI_SERVICE and CURLOPT_SOCKS5_GSSAPI_NEC to allow libcurl
  333. to do GSS-style authentication with SOCKS5 proxies. The curl tool got the
  334. options called --socks5-gssapi-service and --socks5-gssapi-nec to enable
  335. these.
  336. Daniel Stenberg (26 Jan 2009)
  337. - Chad Monroe provided the new CURLOPT_TFTP_BLKSIZE option that allows an app
  338. to set desired block size to use for TFTP transfers instead of the default
  339. 512 bytes.
  340. - The "-no_ticket" option was introduced in Openssl0.9.8j. It's a flag to
  341. disable "rfc4507bis session ticket support". rfc4507bis was later turned
  342. into the proper RFC5077 it seems: http://tools.ietf.org/html/rfc5077
  343. The enabled extension concerns the session management. I wonder how often
  344. libcurl stops a connection and then resumes a TLS session. also, sending the
  345. session data is some overhead. .I suggest that you just use your proposed
  346. patch (which explicitly disables TICKET).
  347. If someone writes an application with libcurl and openssl who wants to
  348. enable the feature, one can do this in the SSL callback.
  349. Sharad Gupta brought this to my attention. Peter Sylvester helped me decide
  350. on the proper action.
  351. - Alexey Borzov filed bug report #2535504
  352. (http://curl.haxx.se/bug/view.cgi?id=2535504) pointing out that realms with
  353. quoted quotation marks in HTTP Digest headers didn't work. I've now added
  354. test case 1095 that verifies my fix.
  355. - Craig A West brought CURLOPT_NOPROXY and the corresponding --noproxy option.
  356. They basically offer the same thing the NO_PROXY environment variable only
  357. offered previously: list a set of host names that shall not use the proxy
  358. even if one is specified.
  359. Daniel Fandrich (20 Jan 2009)
  360. - Call setlocale() for libtest tests to test the effects of locale-induced
  361. libc changes on libcurl.
  362. - Fixed a couple more locale-dependent toupper conversions, mainly for
  363. clarity. This does fix one problem that causes ;type=i FTP URLs
  364. to fail in the Turkish locale when CURLOPT_PROXY_TRANSFER_MODE is
  365. used (test case 561)
  366. - Added tests 561 and 1091 through 1094 to test various combinations
  367. of ;type= and ;mode= URLs that could potentially fail in the Turkish
  368. locale.
  369. Daniel Stenberg (20 Jan 2009)
  370. - Lisa Xu pointed out that the ssh.obj file was missing from the
  371. lib/Makefile.vc6 file (and thus from the vc8 and vc9 ones too).
  372. Version 7.19.3 (19 January 2009)
  373. Daniel Stenberg (16 Jan 2009)
  374. - Andrew de los Reyes fixed curlbuild.h for "generic" gcc builds on PPC, both
  375. 32 bit and 64 bit.
  376. Daniel Stenberg (15 Jan 2009)
  377. - Tim Ansell fixed a compiler warning in lib/cookie.c
  378. Daniel Stenberg (14 Jan 2009)
  379. - Grant Erickson fixed timeouts for TFTP such that specifying a
  380. connect-timeout, a max-time or both options work correctly and as expected
  381. by passing the correct boolean value to Curl_timeleft via the
  382. 'duringconnect' parameter.
  383. With this small change, curl TFTP now behaves as expected (and likely as
  384. originally-designed):
  385. 1) For non-existent or unreachable dotted IP addresses:
  386. a) With no options, follows the default curl 300s timeout...
  387. b) With --connect-timeout only, follows that value...
  388. c) With --max-time only, follows that value...
  389. d) With both --connect-timeout and --max-time, follows the smaller value...
  390. and times out with a "curl: (7) Couldn't connect to server" error.
  391. 2) For transfers to/from a valid host:
  392. a) With no options, follows default curl 300s timeout for the
  393. first XRQ/DATA/ACK transaction and the default TFTP 3600s
  394. timeout for the remainder of the transfer...
  395. b) With --connect-time only, follows that value for the
  396. first XRQ/DATA/ACK transaction and the default TFTP 3600s
  397. timeout for the remainder of the transfer...
  398. c) With --max-time only, follows that value for the first
  399. XRQ/DATA/ACK transaction and for the remainder of the
  400. transfer...
  401. d) With both --connect-timeout and --max-time, follows the former
  402. for the first XRQ/DATA/ACK transaction and the latter for the
  403. remainder of the transfer...
  404. and times out with a "curl: (28) Timeout was reached" error as
  405. appropriate.
  406. Daniel Stenberg (13 Jan 2009)
  407. - Michael Wallner fixed a NULL pointer deref when calling
  408. curl_easy_setup(curl, CURLOPT_COOKIELIST, "SESS") on a CURL handle with no
  409. cookies data.
  410. - Stefan Teleman brought a patch to fix the default curlbuild.h file for the
  411. SunPro compilers.
  412. Daniel Stenberg (12 Jan 2009)
  413. - Based on bug report #2498665 (http://curl.haxx.se/bug/view.cgi?id=2498665)
  414. by Daniel Black, I've now added magic to the configure script that makes it
  415. use pkg-config to detect gnutls details as well if the existing method
  416. (using libgnutls-config) fails. While doing this, I cleaned up and unified
  417. the pkg-config usage when detecting openssl and nss as well.
  418. Daniel Stenberg (11 Jan 2009)
  419. - Karl Moerder brought the patch that creates vc9 Makefiles, and I made
  420. 'maketgz' now use the actual makefile targets to do the VC8 and VC9
  421. makefiles.
  422. Daniel Stenberg (10 Jan 2009)
  423. - Emil Romanus fixed:
  424. When using the multi interface over HTTP and the server returns a Location
  425. header, the running easy handle will get stuck in the CURLM_STATE_PERFORM
  426. state, leaving the external event loop stuck waiting for data from the
  427. ingoing socket (when using the curl_multi_socket_action stuff). While this
  428. bug was pretty hard to find, it seems to require only a one-line fix. The
  429. break statement on line 1374 in multi.c caused the function to skip the call
  430. to multistate().
  431. How to reproduce this bug? Well, that's another question. evhiperfifo.c in
  432. the examples directory chokes on this bug only _sometimes_, probably
  433. depending on how fast the URLs are added. One way of testing the bug out is
  434. writing to hiper.fifo from more than one source at the same time.
  435. Daniel Fandrich (7 Jan 2009)
  436. - Unified much of the SessionHandle initialization done in Curl_open() and
  437. curl_easy_reset() by creating Curl_init_userdefined(). This had the side
  438. effect of fixing curl_easy_reset() so it now also resets
  439. CURLOPT_FTP_FILEMETHOD and CURLOPT_SSL_SESSIONID_CACHE
  440. Daniel Stenberg (7 Jan 2009)
  441. - Rob Crittenden did once again provide an NSS update:
  442. I have to jump through a few hoops now with the NSS library initialization
  443. since another part of an application may have already initialized NSS by the
  444. time Curl gets invoked. This patch is more careful to only shutdown the NSS
  445. library if Curl did the initialization.
  446. It also adds in a bit of code to set the default ciphers if the app that
  447. call NSS_Init* did not call NSS_SetDomesticPolicy() or set specific
  448. ciphers. One might argue that this lets other application developers get
  449. lazy and/or they aren't using the NSS API correctly, and you'd be right.
  450. But still, this will avoid terribly difficult-to-trace crashes and is
  451. generally helpful.
  452. Daniel Stenberg (1 Jan 2009)
  453. - 'reconf' is removed since we rather have users use 'buildconf'
  454. Daniel Stenberg (31 Dec 2008)
  455. - Bas Mevissen reported http://curl.haxx.se/bug/view.cgi?id=2479030 pointing
  456. out that 'reconf' didn't properly point out the m4 subdirectory when running
  457. aclocal.
  458. Daniel Stenberg (29 Dec 2008)
  459. - Phil Lisiecki filed bug report #2413067
  460. (http://curl.haxx.se/bug/view.cgi?id=2413067) that identified a problem that
  461. would cause libcurl to mark a DNS cache entry "in use" eternally if the
  462. subsequence TCP connect failed. It would thus never get pruned and refreshed
  463. as it should've been.
  464. Phil provided his own patch to this problem that while it seemed to work
  465. wasn't complete and thus I wrote my own fix to the problem.
  466. Daniel Stenberg (28 Dec 2008)
  467. - Peter Korsgaard fixed building libcurl with "configure --with-ssl
  468. --disable-verbose".
  469. - Anthony Bryan fixed more language and spelling flaws in man pages.
  470. Daniel Stenberg (22 Dec 2008)
  471. - Given a recent enough libssh2, libcurl can now seek/resume with SFTP even
  472. on file indexes beyond 2 or 4GB.
  473. - Anthony Bryan provided a set of patches that cleaned up manual language,
  474. corrected spellings and more.
  475. Daniel Stenberg (20 Dec 2008)
  476. - Igor Novoseltsev fixed a bad situation for the multi_socket() API when doing
  477. pipelining, as libcurl could then easily get confused and A) work on the
  478. handle that was not "first in queue" on a pipeline, or even B) tell the app
  479. to REMOVE a socket while it was in use by a second handle in a pipeline. Both
  480. errors caused hanging or stalling applications.
  481. Daniel Stenberg (19 Dec 2008)
  482. - curl_multi_timeout() could return a timeout value of 0 even though nothing
  483. was actually ready to get done, as the internal time resolution is higher
  484. than the returned millisecond timer. Therefore it could cause applications
  485. running on fast processors to do short bursts of busy-loops.
  486. curl_multi_timeout() will now only return 0 if the timeout is actually
  487. alreay triggered.
  488. - Using the libssh2 0.19 function libssh2_session_block_directions(), libcurl
  489. now has an improved ability to do right when the multi interface (both
  490. "regular" and multi_socket) is used for SCP and SFTP transfers. This should
  491. result in (much) less busy-loop situations and thus less CPU usage with no
  492. speed loss.
  493. Daniel Stenberg (17 Dec 2008)
  494. - SCP and SFTP with the multi interface had the same flaw: the 'DONE'
  495. operation didn't complete properly if the EAGAIN equivalent was returned but
  496. libcurl would simply continue with a half-completed close operation
  497. performed. This ruined persistent connection re-use and cause some
  498. SSH-protocol errors in general. The correction is unfortunately adding a
  499. blocking function - doing it entirely non-blocking should be considered for
  500. a better fix.
  501. Gisle Vanem (16 Dec 2008)
  502. - Added the possibility to use the Watt-32 tcp/ip stack under Windows.
  503. The change simply involved adding a USE_WATT32 section in the
  504. config-win32.h files (under ./lib and ./src). This section disables
  505. the use of any Winsock headers.
  506. Daniel Stenberg (16 Dec 2008)
  507. - libssh2_sftp_last_error() was wrongly used at some places in libcurl which
  508. made libcurl sometimes not properly abort problematic SFTP transfers.
  509. Daniel Stenberg (12 Dec 2008)
  510. - More work with Igor Novoseltsev to first fix the remaining stuff for
  511. removing easy handles from multi handles when the easy handle is/was within
  512. a HTTP pipeline. His bug report #2351653
  513. (http://curl.haxx.se/bug/view.cgi?id=2351653) was also related and was
  514. eventually fixed by a patch by Igor himself.
  515. Yang Tse (12 Dec 2008)
  516. - Patrick Monnerat fixed a build regression, introduced in 7.19.2, affecting
  517. OS/400 compilations with IPv6 enabled.
  518. Daniel Stenberg (12 Dec 2008)
  519. - Mark Karpeles filed bug report #2416182 titled "crash in ConnectionExists
  520. when using duphandle+curl_mutli"
  521. (http://curl.haxx.se/bug/view.cgi?id=2416182) which showed that
  522. curl_easy_duphandle() wrongly also copied the pointer to the connection
  523. cache, which was plain wrong and caused a segfault if the handle would be
  524. used in a different multi handle than the handle it was duplicated from.
  525. Daniel Stenberg (11 Dec 2008)
  526. - Keshav Krity found out that libcurl failed to deal with dotted IPv6
  527. addresses if they were very long (>39 letters) due to a too strict address
  528. validity parser. It now accepts addresses up to 45 bytes long.
  529. Daniel Stenberg (11 Dec 2008)
  530. - Internet Explorer had a broken HTTP digest authentication before v7 and
  531. there are servers "out there" that relies on the client doing this broken
  532. Digest authentication. Apache even comes with an option to work with such
  533. broken clients.
  534. The difference is only for URLs that contain a query-part (a '?'-letter and
  535. text to the right of it).
  536. libcurl now supports this quirk, and you enable it by setting the
  537. CURLAUTH_DIGEST_IE bit in the bitmask you pass to the CURLOPT_HTTPAUTH or
  538. CURLOPT_PROXYAUTH options. They are thus individually controlled to server
  539. and proxy.
  540. (note that there's no way to activate this with the curl tool yet)
  541. Daniel Fandrich (9 Dec 2008)
  542. - Added test cases 1089 and 1090 to test --write-out after a redirect to
  543. test a report that the size didn't work, but these test cases pass.
  544. - Documented CURLOPT_CONNECT_ONLY as being useful only on HTTP URLs.
  545. Daniel Stenberg (9 Dec 2008)
  546. - Ken Hirsch simplified how libcurl does FTPS: now it doesn't assume any
  547. particular state for the control connection like it did before for implicit
  548. FTPS (libcurl assumed such control connections to be encrypted while some
  549. FTPS servers such as FileZilla assumes such connections to be clear
  550. mode). Use the CURLOPT_USE_SSL option to set your desired level.
  551. Daniel Stenberg (8 Dec 2008)
  552. - Fred Machado posted about a weird FTP problem on the curl-users list and when
  553. researching it, it turned out he got a 550 response back from a SIZE command
  554. and then I fell over the text in RFC3659 that says:
  555. The presence of the 550 error response to a SIZE command MUST NOT be taken
  556. by the client as an indication that the file cannot be transferred in the
  557. current MODE and TYPE.
  558. In other words: the change I did on September 30th 2008 and that has been
  559. included in the last two releases were a regression and a bad idea. We MUST
  560. NOT take a 550 response from SIZE as a hint that the file doesn't exist.
  561. - Christian Krause filed bug #2221237
  562. (http://curl.haxx.se/bug/view.cgi?id=2221237) that identified an infinite
  563. loop during GSS authentication given some specific conditions. With his
  564. patience and great feedback I managed to narrow down the problem and
  565. eventually fix it although I can't test any of this myself!
  566. Daniel Fandrich (3 Dec 2008)
  567. - Fixed the getifaddrs version of Curl_if2ip to work on systems without IPv6
  568. support (e.g. Minix)
  569. Daniel Stenberg (3 Dec 2008)
  570. - Igor Novoseltsev filed bug #2351645
  571. (http://curl.haxx.se/bug/view.cgi?id=2351645) that identified a problem with
  572. the multi interface that occured if you removed an easy handle while in
  573. progress and the handle was used in a HTTP pipeline.
  574. - Pawel Kierski pointed out a mistake in the cookie code that could lead to a
  575. bad fclose() after a fatal error had occured.
  576. (http://curl.haxx.se/bug/view.cgi?id=2382219)
  577. Daniel Fandrich (25 Nov 2008)
  578. - If a HTTP request is Basic and num is already >=1000, the HTTP test
  579. server adds 1 to num to get the data section to return. This allows
  580. testing authentication negotiations using the Basic authentication
  581. method.
  582. - Added tests 1087 and 1088 to test Basic authentication on a redirect
  583. with and without --location-trusted
  584. Daniel Stenberg (24 Nov 2008)
  585. - Based on a patch by Vlad Grachov, libcurl now uses a new libssh2 0.19
  586. function when built to support SCP and SFTP that helps the library to know
  587. in which direction a particular libssh2 operation would return EAGAIN so
  588. that libcurl knows what socket conditions to wait for before trying the
  589. function call again. Previously (and still when using libssh2 0.18 or
  590. earlier), libcurl will busy-loop in this situation when the easy interface
  591. is used!
  592. Daniel Fandrich (20 Nov 2008)
  593. - Automatically detect OpenBSD's CA cert bundle.
  594. Daniel Stenberg (19 Nov 2008)
  595. - I removed the default use of "Pragma: no-cache" from libcurl when a proxy is
  596. used. It has been used since forever but it was never a good idea to use
  597. unless explicitly asked for.
  598. - Josef Wolf's extension that allows a $TESTDIR/gdbinit$testnum file that when
  599. you use runtests.pl -g, will be sourced by gdb to allow additional fancy or
  600. whatever you see fit
  601. - Christian Krause reported and fixed a memory leak that would occur with HTTP
  602. GSS/kerberos authentication (http://curl.haxx.se/bug/view.cgi?id=2284386)
  603. - Andreas Wurf and Markus Koetter helped me analyze a problem that Andreas got
  604. when uploading files to a single FTP server using multiple easy handle
  605. handles with the multi interface. Occasionally a handle would stall in
  606. mysterious ways.
  607. The problem turned out to be a side-effect of the ConnectionExists()
  608. function's eagerness to re-use a handle for HTTP pipelining so it would
  609. select it even if already being in use, due to an inadequate check for its
  610. chances of being used for pipelnining.
  611. Daniel Fandrich (17 Nov 2008)
  612. - Added more compiler warning options for gcc 4.3
  613. Yang Tse (17 Nov 2008)
  614. - Fix a remaining problem in the inet_pton() runtime configure check. And
  615. fix internal Curl_inet_pton() failures to reject certain malformed literals.
  616. - Make configure script check if ioctl with the SIOCGIFADDR command can be
  617. used, and define HAVE_IOCTL_SIOCGIFADDR if appropriate.
  618. Daniel Stenberg (16 Nov 2008)
  619. - Christian Krause fixed a build failure when building with gss support
  620. enabled and FTP disabled.
  621. - Added check for NULL returns from strdup() in src/main.c and lib/formdata.c
  622. - reported by Jim Meyering also prevent buffer overflow on MSDOS when you do
  623. for example -O on a url with a file name part longer than PATH_MAX letters
  624. - lib/nss.c fixes based on the report by Jim Meyering: I went over and added
  625. checks for return codes for all calls to malloc and strdup that were
  626. missing. I also changed a few malloc(13) to use arrays on the stack and a
  627. few malloc(PATH_MAX) to instead use aprintf() to lower memory use.
  628. - I fixed a memory leak in Curl_nss_connect() when CURLOPT_ISSUERCERT is
  629. in use.
  630. Daniel Fandrich (14 Nov 2008)
  631. - Added .xml as one of the few common file extensions known by the multipart
  632. form generator.
  633. - Added some #ifdefs around header files and change the EAGAIN test to
  634. fix compilation on Cell (reported by Jeff Curley).
  635. Yang Tse (14 Nov 2008)
  636. - Fixed several configure script issues affecting checks for inet_ntoa_r(),
  637. inet_ntop(), inet_pton(), getifaddrs(), fcntl() and getaddrinfo().
  638. Yang Tse (13 Nov 2008)
  639. - Refactored configure script detection of functions used to set sockets into
  640. non-blocking mode, and decouple function detection from function capability.