TODO: GnuTLS connects are now non-blocking
[platform/upstream/curl.git] / docs / TODO
1                                   _   _ ____  _
2                               ___| | | |  _ \| |
3                              / __| | | | |_) | |
4                             | (__| |_| |  _ <| |___
5                              \___|\___/|_| \_\_____|
6
7                 Things that could be nice to do in the future
8
9  Things to do in project cURL. Please tell us what you think, contribute and
10  send us patches that improve things!
11
12  All bugs documented in the KNOWN_BUGS document are subject for fixing!
13
14  1. libcurl
15  1.1 Zero-copy interface
16  1.2 More data sharing
17  1.3 struct lifreq
18  1.4 signal-based resolver timeouts
19
20  2. libcurl - multi interface
21  2.1 More non-blocking
22  2.2 Remove easy interface internally
23  2.3 Avoid having to remove/readd handles
24  2.4 Fix HTTP Pipelining for PUT
25
26  3. Documentation
27  3.1  More and better
28
29  4. FTP
30  4.1 PRET
31  4.2 Alter passive/active on failure and retry
32  4.3 Earlier bad letter detection
33  4.4 REST for large files
34  4.5 FTP proxy support
35  4.6 ASCII support
36
37  5. HTTP
38  5.1 Better persistency for HTTP 1.0
39  5.2 support FF3 sqlite cookie files
40  5.3 Rearrange request header order
41
42  6. TELNET
43  6.1 ditch stdin
44  6.2 ditch telnet-specific select
45  6.3 feature negotiation debug data
46  6.4 send data in chunks
47
48  7. SSL
49  7.1 Disable specific versions
50  7.2 Provide mutex locking API
51  7.3 Evaluate SSL patches
52  7.4 Cache OpenSSL contexts
53  7.5 Export session ids
54  7.6 Provide callback for cert verification
55  7.7 Support other SSL libraries
56  7.8  Support SRP on the TLS layer
57  7.9 improve configure --with-ssl
58  7.10 Make NTLM work with other crypto functions
59
60  8. GnuTLS
61  8.1 SSL engine stuff
62  8.2 SRP
63  8.3 non-blocking
64  8.4 check connection
65
66  9. Other protocols
67  9.1 ditch ldap-specific select
68
69  10. New protocols
70  10.1 RTSP
71  10.2 RSYNC
72  10.3 RTMP
73
74  11. Client
75  11.1 Content-Disposition
76  11.2 sync
77  11.3 glob posts
78  11.4 prevent file overwriting
79  11.5 ftp wildcard download
80  11.6 simultaneous parallel transfers
81  11.7 provide formpost headers
82  11.8 url-specific options
83  11.9 metalink support
84  11.10 warning when setting an option
85
86  12. Build
87  12.1 roffit
88
89  13. Test suite
90  13.1 SSL tunnel
91  13.2 nicer lacking perl message
92  13.3 more protocols supported
93  13.4 more platforms supported
94
95  14. Next SONAME bump
96  14.1 http-style HEAD output for ftp
97  14.2 combine error codes
98  14.3 extend CURLOPT_SOCKOPTFUNCTION prototype
99
100  15. Next major release
101  15.1 cleanup return codes
102  15.2 remove obsolete defines
103  15.3 size_t
104  15.4 remove several functions
105  15.5 remove CURLOPT_FAILONERROR
106  15.6 remove CURLOPT_DNS_USE_GLOBAL_CACHE
107  15.7 remove progress meter from libcurl
108
109 ==============================================================================
110
111 1. libcurl
112
113 1.1 Zero-copy interface
114
115  Introduce another callback interface for upload/download that makes one less
116  copy of data and thus a faster operation.
117  [http://curl.haxx.se/dev/no_copy_callbacks.txt]
118
119 1.2 More data sharing
120
121  curl_share_* functions already exist and work, and they can be extended to
122  share more. For example, enable sharing of the ares channel and the
123  connection cache.
124
125 1.3 struct lifreq
126
127  Use 'struct lifreq' and SIOCGLIFADDR instead of 'struct ifreq' and
128  SIOCGIFADDR on newer Solaris versions as they claim the latter is obsolete.
129  To support ipv6 interface addresses for network interfaces properly.
130
131 1.4 signal-based resolver timeouts
132
133  libcurl built without an asynchronous resolver library uses alarm() to time
134  out DNS lookups. When a timeout occurs, this causes libcurl to jump from the
135  signal handler back into the library with a sigsetjmp, which effectively
136  causes libcurl to continue running within the signal handler. This is
137  non-portable and could cause problems on some platforms. A discussion on the
138  problem is available at http://curl.haxx.se/mail/lib-2008-09/0197.html
139
140  Also, alarm() provides timeout resolution only to the nearest second. alarm
141  ought to be replaced by setitimer on systems that support it.
142
143 2. libcurl - multi interface
144
145 2.1 More non-blocking
146
147  Make sure we don't ever loop because of non-blocking sockets returning
148  EWOULDBLOCK or similar. Blocking cases include:
149
150  - Name resolves on non-windows unless c-ares is used
151  - NSS SSL connections
152  - Active FTP connections
153  - HTTP proxy CONNECT operations
154  - SOCKS proxy handshakes
155  - file:// transfers
156  - TELNET transfers
157  - The "DONE" operation (post transfer protocol-specific actions) for the
158    protocols SFTP, SMTP, FTP. Fixing Curl_done() for this is a worthy task.
159
160 2.2 Remove easy interface internally
161
162  Make curl_easy_perform() a wrapper-function that simply creates a multi
163  handle, adds the easy handle to it, runs curl_multi_perform() until the
164  transfer is done, then detach the easy handle, destroy the multi handle and
165  return the easy handle's return code. This will thus make everything
166  internally use and assume the multi interface. The select()-loop should use
167  curl_multi_socket().
168
169 2.3 Avoid having to remove/readd handles
170
171  curl_multi_handle_control() - this can control the easy handle (while) added
172  to a multi handle in various ways:
173
174  o RESTART, unconditionally restart this easy handle's transfer from the
175    start, re-init the state
176
177  o RESTART_COMPLETED, restart this easy handle's transfer but only if the
178    existing transfer has already completed and it is in a "finished state".
179
180  o STOP, just stop this transfer and consider it completed
181
182  o PAUSE?
183
184  o RESUME?
185
186 2.4 Fix HTTP Pipelining for PUT
187
188  HTTP Pipelining can be a way to greatly enhance performance for multiple
189  serial requests and currently libcurl only supports that for HEAD and GET
190  requests but it should also be possible for PUT.
191
192
193 3. Documentation
194
195 3.1  More and better
196
197  Exactly
198
199 4. FTP
200
201 4.1 PRET
202
203  PRET is a command that primarily "drftpd" supports, which could be useful
204  when using libcurl against such a server. It is a non-standard and a rather
205  oddly designed command, but...
206  http://curl.haxx.se/bug/feature.cgi?id=1729967
207
208 4.2 Alter passive/active on failure and retry
209
210  When trying to connect passively to a server which only supports active
211  connections, libcurl returns CURLE_FTP_WEIRD_PASV_REPLY and closes the
212  connection. There could be a way to fallback to an active connection (and
213  vice versa). http://curl.haxx.se/bug/feature.cgi?id=1754793
214
215 4.3 Earlier bad letter detection
216
217  Make the detection of (bad) %0d and %0a codes in FTP url parts earlier in the
218  process to avoid doing a resolve and connect in vain.
219
220 4.4 REST for large files
221
222  REST fix for servers not behaving well on >2GB requests. This should fail if
223  the server doesn't set the pointer to the requested index. The tricky
224  (impossible?) part is to figure out if the server did the right thing or not.
225
226 4.5 FTP proxy support
227
228  Support the most common FTP proxies, Philip Newton provided a list allegedly
229  from ncftp. This is not a subject without debate, and is probably not really
230  suitable for libcurl.  http://curl.haxx.se/mail/archive-2003-04/0126.html
231
232 4.6 ASCII support
233
234  FTP ASCII transfers do not follow RFC959. They don't convert the data
235  accordingly.
236
237 5. HTTP
238
239 5.1 Better persistency for HTTP 1.0
240
241  "Better" support for persistent connections over HTTP 1.0
242  http://curl.haxx.se/bug/feature.cgi?id=1089001
243
244 5.2 support FF3 sqlite cookie files
245
246  Firefox 3 is changing from its former format to a a sqlite database instead.
247  We should consider how (lib)curl can/should support this.
248  http://curl.haxx.se/bug/feature.cgi?id=1871388
249
250 5.3 Rearrange request header order
251
252  Server implementors often make an effort to detect browser and to reject
253  clients it can detect to not match. One of the last details we cannot yet
254  control in libcurl's HTTP requests, which also can be exploited to detect
255  that libcurl is in fact used even when it tries to impersonate a browser, is
256  the order of the request headers. I propose that we introduce a new option in
257  which you give headers a value, and then when the HTTP request is built it
258  sorts the headers based on that number. We could then have internally created
259  headers use a default value so only headers that need to be moved have to be
260  specified.
261
262
263 6. TELNET
264
265 6.1 ditch stdin
266
267 Reading input (to send to the remote server) on stdin is a crappy solution for
268 library purposes. We need to invent a good way for the application to be able
269 to provide the data to send.
270
271 6.2 ditch telnet-specific select
272
273  Move the telnet support's network select() loop go away and merge the code
274  into the main transfer loop. Until this is done, the multi interface won't
275  work for telnet.
276
277 6.3 feature negotiation debug data
278
279   Add telnet feature negotiation data to the debug callback as header data.
280
281 6.4 send data in chunks
282
283   Currently, telnet sends data one byte at a time.  This is fine for interactive
284   use, but inefficient for any other.  Sent data should be sent in larger
285   chunks.
286
287 7. SSL
288
289 7.1 Disable specific versions
290
291  Provide an option that allows for disabling specific SSL versions, such as
292  SSLv2 http://curl.haxx.se/bug/feature.cgi?id=1767276
293
294 7.2 Provide mutex locking API
295
296  Provide a libcurl API for setting mutex callbacks in the underlying SSL
297  library, so that the same application code can use mutex-locking
298  independently of OpenSSL or GnutTLS being used.
299
300 7.3 Evaluate SSL patches
301
302  Evaluate/apply Gertjan van Wingerde's SSL patches:
303  http://curl.haxx.se/mail/lib-2004-03/0087.html
304
305 7.4 Cache OpenSSL contexts
306
307  "Look at SSL cafile - quick traces look to me like these are done on every
308  request as well, when they should only be necessary once per ssl context (or
309  once per handle)". The major improvement we can rather easily do is to make
310  sure we don't create and kill a new SSL "context" for every request, but
311  instead make one for every connection and re-use that SSL context in the same
312  style connections are re-used. It will make us use slightly more memory but
313  it will libcurl do less creations and deletions of SSL contexts.
314
315 7.5 Export session ids
316
317  Add an interface to libcurl that enables "session IDs" to get
318  exported/imported. Cris Bailiff said: "OpenSSL has functions which can
319  serialise the current SSL state to a buffer of your choice, and recover/reset
320  the state from such a buffer at a later date - this is used by mod_ssl for
321  apache to implement and SSL session ID cache".
322
323 7.6 Provide callback for cert verification
324
325  OpenSSL supports a callback for customised verification of the peer
326  certificate, but this doesn't seem to be exposed in the libcurl APIs. Could
327  it be? There's so much that could be done if it were!
328
329 7.7 Support other SSL libraries
330
331  Make curl's SSL layer capable of using other free SSL libraries.  Such as
332  MatrixSSL (http://www.matrixssl.org/).
333
334 7.8  Support SRP on the TLS layer
335
336  Peter Sylvester's patch for SRP on the TLS layer.  Awaits OpenSSL support for
337  this, no need to support this in libcurl before there's an OpenSSL release
338  that does it.
339
340 7.9 improve configure --with-ssl
341
342  make the configure --with-ssl option first check for OpenSSL, then GnuTLS,
343  then NSS...
344
345 7.10 Make NTLM work with other crypto functions
346
347  Get NTLM working using the functions provided by NSS etc. Not strictly
348  SSL/TLS related, but hey... Another option is to get available DES and MD4
349  source code from the cryptopp library. They are fine license-wise, but are
350  C++. NTLM currenly only works when libcurl is built with OpenSSL or GnuTLS
351  support.
352
353 8. GnuTLS
354
355 8.1 SSL engine stuff
356
357  Is this even possible?
358
359 8.2 SRP
360
361  Work out a common method with Peter Sylvester's OpenSSL-patch for SRP on the
362  TLS to provide name and password. GnuTLS already supports it...
363
364 8.3 non-blocking
365
366  Fix the connection phase to be non-blocking when multi interface is used
367
368 8.4 check connection
369
370  Add a way to check if the connection seems to be alive, to correspond to the
371  SSL_peak() way we use with OpenSSL.
372
373 9. Other protocols
374
375 9.1 ditch ldap-specific select
376
377  * Look over the implementation. The looping will have to "go away" from the
378    lib/ldap.c source file and get moved to the main network code so that the
379    multi interface and friends will work for LDAP as well.
380
381 9.2 stop TFTP blocking
382
383   Stop TFTP from being blocking and doing its own read loop in tftp_do.
384
385 10. New protocols
386
387 10.1 RTSP
388
389  RFC2326 (protocol - very HTTP-like, also contains URL description)
390
391 10.2 RSYNC
392
393  There's no RFC for protocol nor URI/URL format.  An implementation should
394  most probably use an existing rsync library, such as librsync.
395
396 10.3 RTMP
397
398  There exists a patch that claims to introduce this protocol:
399  http://osdir.com/ml/gnu.gnash.devel2/2006-11/msg00278.html, further details
400  in the feature-request: http://curl.haxx.se/bug/feature.cgi?id=1843469
401
402 11. Client
403
404 11.1 Content-Disposition
405
406  Add option that is similar to -O but that takes the output file name from the
407  Content-Disposition: header, and/or uses the local file name used in
408  redirections for the cases the server bounces the request further to a
409  different file (name): http://curl.haxx.se/bug/feature.cgi?id=1364676
410
411 11.2 sync
412
413  "curl --sync http://example.com/feed[1-100].rss" or
414  "curl --sync http://example.net/{index,calendar,history}.html"
415
416  Downloads a range or set of URLs using the remote name, but only if the
417  remote file is newer than the local file. A Last-Modified HTTP date header
418  should also be used to set the mod date on the downloaded file.
419
420 11.3 glob posts
421
422  Globbing support for -d and -F, as in 'curl -d "name=foo[0-9]" URL'.
423  This is easily scripted though.
424
425 11.4 prevent file overwriting
426
427  Add an option that prevents cURL from overwriting existing local files. When
428  used, and there already is an existing file with the target file name
429  (either -O or -o), a number should be appended (and increased if already
430  existing). So that index.html becomes first index.html.1 and then
431  index.html.2 etc.
432
433 11.5 ftp wildcard download
434
435  "curl ftp://site.com/*.txt"
436
437 11.6 simultaneous parallel transfers
438
439  The client could be told to use maximum N simultaneous parallel transfers and
440  then just make sure that happens. It should of course not make more than one
441  connection to the same remote host. This would require the client to use the
442  multi interface. http://curl.haxx.se/bug/feature.cgi?id=1558595
443
444 11.7 provide formpost headers
445
446  Extending the capabilities of the multipart formposting. How about leaving
447  the ';type=foo' syntax as it is and adding an extra tag (headers) which
448  works like this: curl -F "coolfiles=@fil1.txt;headers=@fil1.hdr" where
449  fil1.hdr contains extra headers like
450
451    Content-Type: text/plain; charset=KOI8-R"
452    Content-Transfer-Encoding: base64
453    X-User-Comment: Please don't use browser specific HTML code
454
455  which should overwrite the program reasonable defaults (plain/text,
456  8bit...)
457
458 11.8 url-specific options
459
460  Provide a way to make options bound to a specific URL among several on the
461  command line. Possibly by letting ':' separate options between URLs,
462  similar to this:
463
464     curl --data foo --url url.com : \
465         --url url2.com : \
466         --url url3.com --data foo3
467
468  (More details: http://curl.haxx.se/mail/archive-2004-07/0133.html)
469
470  The example would do a POST-GET-POST combination on a single command line.
471
472 11.9 metalink support
473
474  Add metalink support to curl (http://www.metalinker.org/). This is most useful
475  with simultaneous parallel transfers (11.6) but not necessary.
476
477 11.10 warning when setting an option
478
479   Display a warning when libcurl returns an error when setting an option.
480   This can be useful to tell when support for a particular feature hasn't been
481   compiled into the library.
482
483 12. Build
484
485 12.1 roffit
486
487  Consider extending 'roffit' to produce decent ASCII output, and use that
488  instead of (g)nroff when building src/hugehelp.c
489
490 13. Test suite
491
492 13.1 SSL tunnel
493
494  Make our own version of stunnel for simple port forwarding to enable HTTPS
495  and FTP-SSL tests without the stunnel dependency, and it could allow us to
496  provide test tools built with either OpenSSL or GnuTLS
497
498 13.2 nicer lacking perl message
499
500  If perl wasn't found by the configure script, don't attempt to run the tests
501  but explain something nice why it doesn't.
502
503 13.3 more protocols supported
504
505  Extend the test suite to include more protocols. The telnet could just do ftp
506  or http operations (for which we have test servers).
507
508 13.4 more platforms supported
509
510  Make the test suite work on more platforms. OpenBSD and Mac OS. Remove
511  fork()s and it should become even more portable.
512
513 14. Next SONAME bump
514
515 14.1 http-style HEAD output for ftp
516
517  #undef CURL_FTP_HTTPSTYLE_HEAD in lib/ftp.c to remove the HTTP-style headers
518  from being output in NOBODY requests over ftp
519
520 14.2 combine error codes
521
522  Combine some of the error codes to remove duplicates.  The original
523  numbering should not be changed, and the old identifiers would be
524  macroed to the new ones in an CURL_NO_OLDIES section to help with
525  backward compatibility.
526
527  Candidates for removal and their replacements:
528
529     CURLE_FILE_COULDNT_READ_FILE => CURLE_REMOTE_FILE_NOT_FOUND
530     CURLE_FTP_COULDNT_RETR_FILE => CURLE_REMOTE_FILE_NOT_FOUND
531     CURLE_FTP_COULDNT_USE_REST => CURLE_RANGE_ERROR
532     CURLE_FUNCTION_NOT_FOUND => CURLE_FAILED_INIT
533     CURLE_LDAP_INVALID_URL => CURLE_URL_MALFORMAT
534     CURLE_TFTP_NOSUCHUSER => CURLE_TFTP_ILLEGAL
535     CURLE_TFTP_NOTFOUND => CURLE_REMOTE_FILE_NOT_FOUND
536     CURLE_TFTP_PERM => CURLE_REMOTE_ACCESS_DENIED
537
538 14.3 extend CURLOPT_SOCKOPTFUNCTION prototype
539
540  The current prototype only provides 'purpose' that tells what the
541  connection/socket is for, but not any protocol or similar. It makes it hard
542  for applications to differentiate on TCP vs UDP and even HTTP vs FTP and
543  similar.
544
545 15. Next major release
546
547 15.1 cleanup return codes
548
549  curl_easy_cleanup() returns void, but curl_multi_cleanup() returns a
550  CURLMcode. These should be changed to be the same.
551
552 15.2 remove obsolete defines
553
554  remove obsolete defines from curl/curl.h
555
556 15.3 size_t
557
558  make several functions use size_t instead of int in their APIs
559
560 15.4 remove several functions
561
562  remove the following functions from the public API:
563
564  curl_getenv
565
566  curl_mprintf (and variations)
567
568  curl_strequal
569
570  curl_strnequal
571
572  They will instead become curlx_ - alternatives. That makes the curl app
573  still capable of using them, by building with them from source.
574
575  These functions have no purpose anymore:
576
577  curl_multi_socket
578
579  curl_multi_socket_all
580
581 15.5 remove CURLOPT_FAILONERROR
582
583  Remove support for CURLOPT_FAILONERROR, it has gotten too kludgy and weird
584  internally. Let the app judge success or not for itself.
585
586 15.6 remove CURLOPT_DNS_USE_GLOBAL_CACHE
587
588  Remove support for a global DNS cache. Anything global is silly, and we
589  already offer the share interface for the same functionality but done
590  "right".
591
592 15.7 remove progress meter from libcurl
593
594  The internally provided progress meter output doesn't belong in the library.
595  Basically no application wants it (apart from curl) but instead applications
596  can and should do their own progress meters using the progress callback.
597
598  The progress callback should then be bumped as well to get proper 64bit
599  variable types passed to it instead of doubles so that big files work
600  correctly.