tests: Corrected command line arguments in test907 and test908
[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.2 More data sharing
16  1.3 struct lifreq
17  1.4 signal-based resolver timeouts
18  1.5 get rid of PATH_MAX
19  1.6 progress callback without doubles
20  1.7 Happy Eyeball dual stack connect
21
22  2. libcurl - multi interface
23  2.1 More non-blocking
24  2.2 Fix HTTP Pipelining for PUT
25
26  3. Documentation
27  3.1  More and better
28
29  4. FTP
30  4.1 HOST
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. SMTP
49  7.1 Initial response
50  7.2 Pipelining
51  7.3 Graceful base64 decoding failure
52  7.4 Enhanced capability support
53  
54  8. POP3
55  8.1 Initial response
56  8.2 Pipelining
57  8.3 Graceful base64 decoding failure
58  8.4 Enhanced capability support
59  
60  9. IMAP
61  9.1 Graceful base64 decoding failure
62  9.2 Enhanced capability support
63  
64  10. LDAP
65  10.1 SASL based authentication mechanisms
66  
67  11. New protocols
68  11.1 RSYNC
69
70  12. SSL
71  12.1 Disable specific versions
72  12.2 Provide mutex locking API
73  12.3 Evaluate SSL patches
74  12.4 Cache OpenSSL contexts
75  12.5 Export session ids
76  12.6 Provide callback for cert verification
77  12.7 Support other SSL libraries
78  12.8 improve configure --with-ssl
79  12.9 Support DANE
80
81  13. GnuTLS
82  13.1 SSL engine stuff
83  13.2 check connection
84
85  14. SASL
86  14.1 Other authentication mechanisms
87  
88  15. Client
89  15.1 sync
90  15.2 glob posts
91  15.3 prevent file overwriting
92  15.4 simultaneous parallel transfers
93  15.5 provide formpost headers
94  15.6 url-specific options
95  15.7 warning when setting an option
96  15.8 IPv6 addresses with globbing
97
98  16. Build
99  16.1 roffit
100
101  17. Test suite
102  17.1 SSL tunnel
103  17.2 nicer lacking perl message
104  17.3 more protocols supported
105  17.4 more platforms supported
106
107  18. Next SONAME bump
108  18.1 http-style HEAD output for ftp
109  18.2 combine error codes
110  18.3 extend CURLOPT_SOCKOPTFUNCTION prototype
111
112  19. Next major release
113  19.1 cleanup return codes
114  19.2 remove obsolete defines
115  19.3 size_t
116  19.4 remove several functions
117  19.5 remove CURLOPT_FAILONERROR
118  19.6 remove CURLOPT_DNS_USE_GLOBAL_CACHE
119  19.7 remove progress meter from libcurl
120  19.8 remove 'curl_httppost' from public
121  19.9 have form functions use CURL handle argument
122  19.10 Add CURLOPT_MAIL_CLIENT option
123
124 ==============================================================================
125
126 1. libcurl
127
128 1.2 More data sharing
129
130  curl_share_* functions already exist and work, and they can be extended to
131  share more. For example, enable sharing of the ares channel and the
132  connection cache.
133
134 1.3 struct lifreq
135
136  Use 'struct lifreq' and SIOCGLIFADDR instead of 'struct ifreq' and
137  SIOCGIFADDR on newer Solaris versions as they claim the latter is obsolete.
138  To support ipv6 interface addresses for network interfaces properly.
139
140 1.4 signal-based resolver timeouts
141
142  libcurl built without an asynchronous resolver library uses alarm() to time
143  out DNS lookups. When a timeout occurs, this causes libcurl to jump from the
144  signal handler back into the library with a sigsetjmp, which effectively
145  causes libcurl to continue running within the signal handler. This is
146  non-portable and could cause problems on some platforms. A discussion on the
147  problem is available at http://curl.haxx.se/mail/lib-2008-09/0197.html
148
149  Also, alarm() provides timeout resolution only to the nearest second. alarm
150  ought to be replaced by setitimer on systems that support it.
151
152 1.5 get rid of PATH_MAX
153
154  Having code use and rely on PATH_MAX is not nice:
155  http://insanecoding.blogspot.com/2007/11/pathmax-simply-isnt.html
156
157  Currently the SSH based code uses it a bit, but to remove PATH_MAX from there
158  we need libssh2 to properly tell us when we pass in a too small buffer and
159  its current API (as of libssh2 1.2.7) doesn't.
160
161 1.6 progress callback without doubles
162
163  The progress callback was introduced way back in the days and the choice to
164  use doubles in the arguments was possibly good at the time. Today the doubles
165  only confuse users and make the amounts less precise. We should introduce
166  another progress callback option that take precedence over the old one and
167  have both co-exist for a forseeable time until we can remove the double-using
168  one.
169
170 1.7 Happy Eyeball dual stack connect
171
172  In order to make alternative technologies not suffer when transitioning, like
173  when introducing IPv6 as an alternative to IPv4 and there are more than one
174  option existing simultaneously there are reasons to reconsider internal
175  choices.
176
177  To make libcurl do blazing fast IPv6 in a dual-stack configuration, this needs
178  to be addressed:
179
180     http://tools.ietf.org/html/rfc6555
181
182 2. libcurl - multi interface
183
184 2.1 More non-blocking
185
186  Make sure we don't ever loop because of non-blocking sockets returning
187  EWOULDBLOCK or similar. Blocking cases include:
188
189  - Name resolves on non-windows unless c-ares is used
190  - NSS SSL connections
191  - HTTP proxy CONNECT operations
192  - SOCKS proxy handshakes
193  - file:// transfers
194  - TELNET transfers
195  - The "DONE" operation (post transfer protocol-specific actions) for the
196    protocols SFTP, SMTP, FTP. Fixing Curl_done() for this is a worthy task.
197
198 2.2 Fix HTTP Pipelining for PUT
199
200  HTTP Pipelining can be a way to greatly enhance performance for multiple
201  serial requests and currently libcurl only supports that for HEAD and GET
202  requests but it should also be possible for PUT.
203
204 3. Documentation
205
206 3.1  More and better
207
208  Exactly
209
210 4. FTP
211
212 4.1 HOST
213
214  HOST is a suggested command in the works for a client to tell which host name
215  to use, to offer FTP servers named-based virtual hosting:
216
217  http://tools.ietf.org/html/draft-hethmon-mcmurray-ftp-hosts-11
218
219 4.2 Alter passive/active on failure and retry
220
221  When trying to connect passively to a server which only supports active
222  connections, libcurl returns CURLE_FTP_WEIRD_PASV_REPLY and closes the
223  connection. There could be a way to fallback to an active connection (and
224  vice versa). http://curl.haxx.se/bug/feature.cgi?id=1754793
225
226 4.3 Earlier bad letter detection
227
228  Make the detection of (bad) %0d and %0a codes in FTP url parts earlier in the
229  process to avoid doing a resolve and connect in vain.
230
231 4.4 REST for large files
232
233  REST fix for servers not behaving well on >2GB requests. This should fail if
234  the server doesn't set the pointer to the requested index. The tricky
235  (impossible?) part is to figure out if the server did the right thing or not.
236
237 4.5 FTP proxy support
238
239  Support the most common FTP proxies, Philip Newton provided a list allegedly
240  from ncftp. This is not a subject without debate, and is probably not really
241  suitable for libcurl.  http://curl.haxx.se/mail/archive-2003-04/0126.html
242
243 4.6 ASCII support
244
245  FTP ASCII transfers do not follow RFC959. They don't convert the data
246  accordingly.
247
248 5. HTTP
249
250 5.1 Better persistency for HTTP 1.0
251
252  "Better" support for persistent connections over HTTP 1.0
253  http://curl.haxx.se/bug/feature.cgi?id=1089001
254
255 5.2 support FF3 sqlite cookie files
256
257  Firefox 3 is changing from its former format to a a sqlite database instead.
258  We should consider how (lib)curl can/should support this.
259  http://curl.haxx.se/bug/feature.cgi?id=1871388
260
261 5.3 Rearrange request header order
262
263  Server implementors often make an effort to detect browser and to reject
264  clients it can detect to not match. One of the last details we cannot yet
265  control in libcurl's HTTP requests, which also can be exploited to detect
266  that libcurl is in fact used even when it tries to impersonate a browser, is
267  the order of the request headers. I propose that we introduce a new option in
268  which you give headers a value, and then when the HTTP request is built it
269  sorts the headers based on that number. We could then have internally created
270  headers use a default value so only headers that need to be moved have to be
271  specified.
272
273 6. TELNET
274
275 6.1 ditch stdin
276
277 Reading input (to send to the remote server) on stdin is a crappy solution for
278 library purposes. We need to invent a good way for the application to be able
279 to provide the data to send.
280
281 6.2 ditch telnet-specific select
282
283  Move the telnet support's network select() loop go away and merge the code
284  into the main transfer loop. Until this is done, the multi interface won't
285  work for telnet.
286
287 6.3 feature negotiation debug data
288
289   Add telnet feature negotiation data to the debug callback as header data.
290
291 6.4 send data in chunks
292
293   Currently, telnet sends data one byte at a time.  This is fine for interactive
294   use, but inefficient for any other.  Sent data should be sent in larger
295   chunks.
296
297 7. SMTP
298
299 7.1 Initial response
300
301  Add the ability for the user to specify whether the initial response is
302  included in the AUTH command. Some email servers, such as Microsoft
303  Exchange, can work with either whilst others need to have the initial
304  response sent separately:
305
306  http://curl.haxx.se/mail/lib-2012-03/0114.html
307
308 7.2 Pipelining
309
310  Add support for pipelining emails.
311
312 7.3 Graceful base64 decoding failure
313
314  Rather than shutting down the session and returning an error when the
315  decoding of a base64 encoded authentication response fails, we should
316  gracefully shutdown the authentication process by sending a * response to the
317  server as per RFC4954.
318
319 7.4 Enhanced capability support
320
321  Add the ability, for an application that uses libcurl, to obtain the list of
322  capabilities returned from the EHLO command.
323
324 8. POP3
325
326 8.1 Initial response
327
328  Add the ability for the user to specify whether the initial response is
329  included in the AUTH command as per RFC5034.
330
331 8.2 Pipelining
332
333  Add support for pipelining commands.
334
335 8.3 Graceful base64 decoding failure
336
337  Rather than shutting down the session and returning an error when the
338  decoding of a base64 encoded authentication response fails, we should
339  gracefully shutdown the authentication process by sending a * response to the
340  server as per RFC5034.
341  
342 8.4 Enhanced capability support
343
344  Add the ability, for an application that uses libcurl, to obtain the list of
345  capabilities returned from the CAPA command.
346
347 9. IMAP
348
349 9.1 Graceful base64 decoding failure
350
351  Rather than shutting down the session and returning an error when the
352  decoding of a base64 encoded authentication response fails, we should
353  gracefully shutdown the authentication process by sending a * response to the
354  server as per RFC3501.
355
356 9.2 Enhanced capability support
357
358  Add the ability, for an application that uses libcurl, to obtain the list of
359  capabilities returned from the CAPABILITY command.
360
361 10. LDAP
362
363 10.1 SASL based authentication mechanisms
364
365  Currently the LDAP module only supports ldap_simple_bind_s() in order to bind
366  to an LDAP server. However, this function sends username and password details
367  using the simple authentication mechanism (as clear text). However, it should
368  be possible to use ldap_bind_s() instead specifing the security context
369  information ourselves.
370
371 11. New protocols
372
373 11.1 RSYNC
374
375  There's no RFC for the protocol or an URI/URL format.  An implementation
376  should most probably use an existing rsync library, such as librsync.
377
378 12. SSL
379
380 12.1 Disable specific versions
381
382  Provide an option that allows for disabling specific SSL versions, such as
383  SSLv2 http://curl.haxx.se/bug/feature.cgi?id=1767276
384
385 12.2 Provide mutex locking API
386
387  Provide a libcurl API for setting mutex callbacks in the underlying SSL
388  library, so that the same application code can use mutex-locking
389  independently of OpenSSL or GnutTLS being used.
390
391 12.3 Evaluate SSL patches
392
393  Evaluate/apply Gertjan van Wingerde's SSL patches:
394  http://curl.haxx.se/mail/lib-2004-03/0087.html
395
396 12.4 Cache OpenSSL contexts
397
398  "Look at SSL cafile - quick traces look to me like these are done on every
399  request as well, when they should only be necessary once per ssl context (or
400  once per handle)". The major improvement we can rather easily do is to make
401  sure we don't create and kill a new SSL "context" for every request, but
402  instead make one for every connection and re-use that SSL context in the same
403  style connections are re-used. It will make us use slightly more memory but
404  it will libcurl do less creations and deletions of SSL contexts.
405
406 12.5 Export session ids
407
408  Add an interface to libcurl that enables "session IDs" to get
409  exported/imported. Cris Bailiff said: "OpenSSL has functions which can
410  serialise the current SSL state to a buffer of your choice, and recover/reset
411  the state from such a buffer at a later date - this is used by mod_ssl for
412  apache to implement and SSL session ID cache".
413
414 12.6 Provide callback for cert verification
415
416  OpenSSL supports a callback for customised verification of the peer
417  certificate, but this doesn't seem to be exposed in the libcurl APIs. Could
418  it be? There's so much that could be done if it were!
419
420 12.7 Support other SSL libraries
421
422  Make curl's SSL layer capable of using other free SSL libraries.  Such as
423  MatrixSSL (http://www.matrixssl.org/).
424
425 12.8 improve configure --with-ssl
426
427  make the configure --with-ssl option first check for OpenSSL, then GnuTLS,
428  then NSS...
429
430 12.9 Support DANE
431
432  DNS-Based Authentication of Named Entities (DANE) is a way to provide SSL
433  keys and certs over DNS using DNSSEC as an alternative to the CA model.
434  http://www.rfc-editor.org/rfc/rfc6698.txt
435
436 13. GnuTLS
437
438 13.1 SSL engine stuff
439
440  Is this even possible?
441
442 13.2 check connection
443
444  Add a way to check if the connection seems to be alive, to correspond to the
445  SSL_peak() way we use with OpenSSL.
446
447 14. SASL
448
449 14.1 Other authentication mechanisms
450
451  Add support for GSSAPI to SMTP, POP3 and IMAP.
452
453 15. Client
454
455 15.1 sync
456
457  "curl --sync http://example.com/feed[1-100].rss" or
458  "curl --sync http://example.net/{index,calendar,history}.html"
459
460  Downloads a range or set of URLs using the remote name, but only if the
461  remote file is newer than the local file. A Last-Modified HTTP date header
462  should also be used to set the mod date on the downloaded file.
463
464 15.2 glob posts
465
466  Globbing support for -d and -F, as in 'curl -d "name=foo[0-9]" URL'.
467  This is easily scripted though.
468
469 15.3 prevent file overwriting
470
471  Add an option that prevents cURL from overwriting existing local files. When
472  used, and there already is an existing file with the target file name
473  (either -O or -o), a number should be appended (and increased if already
474  existing). So that index.html becomes first index.html.1 and then
475  index.html.2 etc.
476
477 15.4 simultaneous parallel transfers
478
479  The client could be told to use maximum N simultaneous parallel transfers and
480  then just make sure that happens. It should of course not make more than one
481  connection to the same remote host. This would require the client to use the
482  multi interface. http://curl.haxx.se/bug/feature.cgi?id=1558595
483
484 15.5 provide formpost headers
485
486  Extending the capabilities of the multipart formposting. How about leaving
487  the ';type=foo' syntax as it is and adding an extra tag (headers) which
488  works like this: curl -F "coolfiles=@fil1.txt;headers=@fil1.hdr" where
489  fil1.hdr contains extra headers like
490
491    Content-Type: text/plain; charset=KOI8-R"
492    Content-Transfer-Encoding: base64
493    X-User-Comment: Please don't use browser specific HTML code
494
495  which should overwrite the program reasonable defaults (plain/text,
496  8bit...)
497
498 15.6 url-specific options
499
500  Provide a way to make options bound to a specific URL among several on the
501  command line. Possibly by letting ':' separate options between URLs,
502  similar to this:
503
504     curl --data foo --url url.com : \
505         --url url2.com : \
506         --url url3.com --data foo3
507
508  (More details: http://curl.haxx.se/mail/archive-2004-07/0133.html)
509
510  The example would do a POST-GET-POST combination on a single command line.
511
512 15.7 warning when setting an option
513
514   Display a warning when libcurl returns an error when setting an option.
515   This can be useful to tell when support for a particular feature hasn't been
516   compiled into the library.
517
518 15.8 IPv6 addresses with globbing
519
520   Currently the command line client needs to get url globbing disabled (with
521   -g) for it to support IPv6 numerical addresses. This is a rather silly flaw
522   that should be corrected. It probably involves a smarter detection of the
523   '[' and ']' letters.
524
525 16. Build
526
527 16.1 roffit
528
529  Consider extending 'roffit' to produce decent ASCII output, and use that
530  instead of (g)nroff when building src/tool_hugehelp.c
531
532 17. Test suite
533
534 17.1 SSL tunnel
535
536  Make our own version of stunnel for simple port forwarding to enable HTTPS
537  and FTP-SSL tests without the stunnel dependency, and it could allow us to
538  provide test tools built with either OpenSSL or GnuTLS
539
540 17.2 nicer lacking perl message
541
542  If perl wasn't found by the configure script, don't attempt to run the tests
543  but explain something nice why it doesn't.
544
545 17.3 more protocols supported
546
547  Extend the test suite to include more protocols. The telnet could just do ftp
548  or http operations (for which we have test servers).
549
550 17.4 more platforms supported
551
552  Make the test suite work on more platforms. OpenBSD and Mac OS. Remove
553  fork()s and it should become even more portable.
554
555 18. Next SONAME bump
556
557 18.1 http-style HEAD output for ftp
558
559  #undef CURL_FTP_HTTPSTYLE_HEAD in lib/ftp.c to remove the HTTP-style headers
560  from being output in NOBODY requests over ftp
561
562 18.2 combine error codes
563
564  Combine some of the error codes to remove duplicates.  The original
565  numbering should not be changed, and the old identifiers would be
566  macroed to the new ones in an CURL_NO_OLDIES section to help with
567  backward compatibility.
568
569  Candidates for removal and their replacements:
570
571     CURLE_FILE_COULDNT_READ_FILE => CURLE_REMOTE_FILE_NOT_FOUND
572
573     CURLE_FTP_COULDNT_RETR_FILE => CURLE_REMOTE_FILE_NOT_FOUND
574
575     CURLE_FTP_COULDNT_USE_REST => CURLE_RANGE_ERROR
576
577     CURLE_FUNCTION_NOT_FOUND => CURLE_FAILED_INIT
578
579     CURLE_LDAP_INVALID_URL => CURLE_URL_MALFORMAT
580
581     CURLE_TFTP_NOSUCHUSER => CURLE_TFTP_ILLEGAL
582
583     CURLE_TFTP_NOTFOUND => CURLE_REMOTE_FILE_NOT_FOUND
584
585     CURLE_TFTP_PERM => CURLE_REMOTE_ACCESS_DENIED
586
587 18.3 extend CURLOPT_SOCKOPTFUNCTION prototype
588
589  The current prototype only provides 'purpose' that tells what the
590  connection/socket is for, but not any protocol or similar. It makes it hard
591  for applications to differentiate on TCP vs UDP and even HTTP vs FTP and
592  similar.
593
594 10. Next major release
595
596 19.1 cleanup return codes
597
598  curl_easy_cleanup() returns void, but curl_multi_cleanup() returns a
599  CURLMcode. These should be changed to be the same.
600
601 19.2 remove obsolete defines
602
603  remove obsolete defines from curl/curl.h
604
605 19.3 size_t
606
607  make several functions use size_t instead of int in their APIs
608
609 19.4 remove several functions
610
611  remove the following functions from the public API:
612
613  curl_getenv
614
615  curl_mprintf (and variations)
616
617  curl_strequal
618
619  curl_strnequal
620
621  They will instead become curlx_ - alternatives. That makes the curl app
622  still capable of using them, by building with them from source.
623
624  These functions have no purpose anymore:
625
626  curl_multi_socket
627
628  curl_multi_socket_all
629
630 19.5 remove CURLOPT_FAILONERROR
631
632  Remove support for CURLOPT_FAILONERROR, it has gotten too kludgy and weird
633  internally. Let the app judge success or not for itself.
634
635 19.6 remove CURLOPT_DNS_USE_GLOBAL_CACHE
636
637  Remove support for a global DNS cache. Anything global is silly, and we
638  already offer the share interface for the same functionality but done
639  "right".
640
641 19.7 remove progress meter from libcurl
642
643  The internally provided progress meter output doesn't belong in the library.
644  Basically no application wants it (apart from curl) but instead applications
645  can and should do their own progress meters using the progress callback.
646
647  The progress callback should then be bumped as well to get proper 64bit
648  variable types passed to it instead of doubles so that big files work
649  correctly.
650
651 19.8 remove 'curl_httppost' from public
652
653  curl_formadd() was made to fill in a public struct, but the fact that the
654  struct is public is never really used by application for their own advantage
655  but instead often restricts how the form functions can or can't be modified.
656
657  Changing them to return a private handle will benefit the implementation and
658  allow us much greater freedoms while still maintining a solid API and ABI.
659
660 19.9 have form functions use CURL handle argument
661
662  curl_formadd() and curl_formget() both currently have no CURL handle
663  argument, but both can use a callback that is set in the easy handle, and
664  thus curl_formget() with callback cannot function without first having
665  curl_easy_perform() (or similar) called - which is hard to grasp and a design
666  mistake.
667
668 19.10 Add CURLOPT_MAIL_CLIENT option
669
670  Rather than use the URL to specify the mail client string to present in the
671  HELO and EHLO commands, libcurl should support a new CURLOPT specifically for
672  specifing this data as the URL is non-standard and to be honest a bit of a
673  hack ;-)
674
675  Please see the following thread for more information:
676  http://curl.haxx.se/mail/lib-2012-05/0178.html
677