]> git.ipfire.org Git - thirdparty/curl.git/log
thirdparty/curl.git
9 months agoRELEASE-NOTES: synced curl-8_2_0
Daniel Stenberg [Wed, 19 Jul 2023 06:12:46 +0000 (08:12 +0200)] 
RELEASE-NOTES: synced

8.2.0 release

9 months agoTHANKS-filter: strip out "GitHub"
Daniel Stenberg [Wed, 19 Jul 2023 06:12:46 +0000 (08:12 +0200)] 
THANKS-filter: strip out "GitHub"

9 months agoTHANKS: add contributors from 8.2.0
Daniel Stenberg [Wed, 19 Jul 2023 06:12:46 +0000 (08:12 +0200)] 
THANKS: add contributors from 8.2.0

9 months agoRELEASE-PROCEDURE.md: adjust the release dates
Daniel Stenberg [Tue, 18 Jul 2023 10:06:50 +0000 (12:06 +0200)] 
RELEASE-PROCEDURE.md: adjust the release dates

9 months agoquiche: fix defects found in latest coverity report
Stefan Eissing [Mon, 17 Jul 2023 18:59:16 +0000 (20:59 +0200)] 
quiche: fix defects found in latest coverity report

Closes #11455

9 months agoquiche: avoid NULL deref in debug logging
Daniel Stenberg [Mon, 17 Jul 2023 18:51:17 +0000 (20:51 +0200)] 
quiche: avoid NULL deref in debug logging

Coverity reported "Dereference after null check"

If stream is NULL and the function exits, the logging must not deref it.

Closes #11454

9 months agohttp2: treat initial SETTINGS as a WINDOW_UPDATE
Stefan Eissing [Mon, 17 Jul 2023 10:38:28 +0000 (12:38 +0200)] 
http2: treat initial SETTINGS as a WINDOW_UPDATE

- refs #11426 where spurious stalls on large POST requests
  are reported
- the issue seems to involve the following
  * first stream on connection adds up to 64KB of POST
    data, which is the max default HTTP/2 stream window size
    transfer is set to HOLD
  * initial SETTINGS from server arrive, enlarging the stream
    window. But no WINDOW_UPDATE is received.
  * curl stalls
- the fix un-HOLDs a stream on receiving SETTINGS, not
  relying on a WINDOW_UPDATE from lazy servers

Closes #11450

9 months agongtcp2: assigning timeout, but value is overwritten before used
Daniel Stenberg [Mon, 17 Jul 2023 18:23:22 +0000 (20:23 +0200)] 
ngtcp2: assigning timeout, but value is overwritten before used

Reported by Coverity

Closes #11453

9 months agokrb5: add typecast to please Coverity
Daniel Stenberg [Mon, 17 Jul 2023 18:10:38 +0000 (20:10 +0200)] 
krb5: add typecast to please Coverity

9 months agowolfssl: support setting CA certificates as blob
Derzsi Dániel [Sun, 16 Jul 2023 19:09:36 +0000 (22:09 +0300)] 
wolfssl: support setting CA certificates as blob

Closes #11445

9 months agowolfssl: detect when TLS 1.2 support is not built into wolfssl
Derzsi Dániel [Sun, 16 Jul 2023 10:20:23 +0000 (10:20 +0000)] 
wolfssl: detect when TLS 1.2 support is not built into wolfssl

Closes #11444

9 months agoCI: bump nghttp2 from 1.55.0 to 1.55.1
Graham Campbell [Sat, 15 Jul 2023 18:47:37 +0000 (19:47 +0100)] 
CI: bump nghttp2 from 1.55.0 to 1.55.1

Closes #11442

9 months agocurl: return error when asked to use an unsupported HTTP version
Daniel Stenberg [Sat, 15 Jul 2023 12:00:09 +0000 (14:00 +0200)] 
curl: return error when asked to use an unsupported HTTP version

When one of the following options are used but the libcurl in use does
not support it:

--http2
--http2-prior-knowledge
--proxy-http2

Closes #11440

9 months agocf-socket: don't bypass fclosesocket callback if cancelled before connect
Chris Paulson-Ellis [Fri, 14 Jul 2023 12:15:56 +0000 (13:15 +0100)] 
cf-socket: don't bypass fclosesocket callback if cancelled before connect

After upgrading to 8.1.2 from 7.84.0, I found that sockets were being
closed without calling the fclosesocket callback if a request was
cancelled after the associated socket was created, but before the socket
was connected. This lead to an imbalance of fopensocket & fclosesocket
callbacks, causing problems with a custom event loop integration using
the multi-API.

This was caused by cf_socket_close() calling sclose() directly instead
of calling socket_close() if the socket was not active. For regular TCP
client connections, the socket is activated by cf_socket_active(), which
is only called when the socket completes the connect.

As far as I can tell, this issue has existed since 7.88.0. That is,
since the code in question was introduced by:
    commit 71b7e0161032927cdfb4e75ea40f65b8898b3956
    Author: Stefan Eissing <stefan@eissing.org>
    Date:   Fri Dec 30 09:14:55 2022 +0100

        lib: connect/h2/h3 refactor

Closes #11439

9 months agotool_parsecfg: accept line lengths up to 10M
Daniel Stenberg [Thu, 13 Jul 2023 06:49:20 +0000 (08:49 +0200)] 
tool_parsecfg: accept line lengths up to 10M

Bumped from 100K set in 47dd957daff9

Reported-by: Antoine du Hamel
Fixes #11431
Closes #11435

9 months agoCI: brew fix for openssl in default path
Stefan Eissing [Thu, 13 Jul 2023 09:40:09 +0000 (11:40 +0200)] 
CI: brew fix for openssl in default path

If brew install/update links openssl into /usr/local, it will be found
before anything we add with `-isystem path` to CPP/LDLFAGS.  Get rid of
that by unlinking the keg.

Fixes #11413
Closes #11436

9 months agoRELEASE-NOTES: synced
Daniel Stenberg [Thu, 13 Jul 2023 12:58:59 +0000 (14:58 +0200)] 
RELEASE-NOTES: synced

9 months agosectransp: fix EOF handling
Ondřej Koláček [Wed, 12 Jul 2023 03:59:18 +0000 (05:59 +0200)] 
sectransp: fix EOF handling

Regression since the large refactor from 2022

Closes #11427

9 months agochecksrc: quote the file name to work with "funny" letters
Daniel Stenberg [Thu, 13 Jul 2023 11:50:31 +0000 (13:50 +0200)] 
checksrc: quote the file name to work with "funny" letters

Closes #11437

9 months agoHTTP3.md: ngtcp2 updated to v0.17.0 and nghttp3 to v0.13.0
Karthikdasari0423 [Thu, 13 Jul 2023 05:14:03 +0000 (10:44 +0530)] 
HTTP3.md: ngtcp2 updated to v0.17.0 and nghttp3 to v0.13.0

Follow-up to e0093b4b732f6

Closes #11433

9 months agoCURLOPT_MIMEPOST.3: clarify what setting to NULL means
Daniel Stenberg [Wed, 12 Jul 2023 12:55:10 +0000 (14:55 +0200)] 
CURLOPT_MIMEPOST.3: clarify what setting to NULL means

Follow-up to e08382a208d4e480

Closes #11430

9 months agongtcp2: build with 0.17.0 and nghttp3 0.13.0
Tatsuhiro Tsujikawa [Wed, 12 Jul 2023 09:26:28 +0000 (18:26 +0900)] 
ngtcp2: build with 0.17.0 and nghttp3 0.13.0

- ngtcp2_crypto_openssl was renamed to ngtcp2_crypto_quictls.

Closes #11428

9 months agoCI: Bump ngtcp2, nghttp3, and nghttp2
Tatsuhiro Tsujikawa [Wed, 12 Jul 2023 09:26:02 +0000 (18:26 +0900)] 
CI: Bump ngtcp2, nghttp3, and nghttp2

Closes #11428

9 months agoexample/maxconnects: set maxconnect example
James Fuller [Mon, 19 Jun 2023 09:06:57 +0000 (11:06 +0200)] 
example/maxconnects: set maxconnect example

Closes #11343

9 months agohttp2: send HEADER & DATA together if possible
Pontakorn Prasertsuk [Tue, 11 Jul 2023 08:00:29 +0000 (16:00 +0800)] 
http2: send HEADER & DATA together if possible

Closes #11420

9 months agoCI: use wolfSSL 5.6.3 in builds
Daniel Stenberg [Tue, 11 Jul 2023 15:20:31 +0000 (17:20 +0200)] 
CI: use wolfSSL 5.6.3 in builds

No using master anymore

Closes #11424

9 months agofopen: optimize
SaltyMilk [Mon, 10 Jul 2023 19:43:28 +0000 (21:43 +0200)] 
fopen: optimize

Closes #11419

9 months agocmake: make use of snprintf
Daniel Stenberg [Tue, 11 Jul 2023 14:58:58 +0000 (16:58 +0200)] 
cmake: make use of snprintf

Follow-up to 935b1bd4544a23a91d68

Closes #11423

9 months agomacOS: fix taget detection
Stefan Eissing [Mon, 10 Jul 2023 07:39:19 +0000 (09:39 +0200)] 
macOS: fix taget detection

- TARGET_OS_OSX is not always defined on macOS
- this leads to missing symbol Curl_macos_init()
- TargetConditionals.h seems to define these only when
  dynamic targets are enabled (somewhere?)
- this PR fixes that on my macOS 13.4.1
- I have no clue why CI builds worked without it

Follow-up to c7308592fb8ba213fc2c1
Closes #11417

9 months agohostip.c: Move macOS-specific calls into global init call
Stan Hu [Mon, 5 Jun 2023 17:05:48 +0000 (10:05 -0700)] 
hostip.c: Move macOS-specific calls into global init call

https://github.com/curl/curl/pull/7121 introduced a macOS system call
to `SCDynamicStoreCopyProxies`, which is invoked every time an IP
address needs to be resolved.

However, this system call is not thread-safe, and macOS will kill the
process if the system call is run first in a fork. To make it possible
for the parent process to call this once and prevent the crash, only
invoke this system call in the global initialization routine.

In addition, this change is beneficial because it:

1. Avoids extra macOS system calls for every IP lookup.
2. Consolidates macOS-specific initialization in a separate file.

Fixes #11252
Closes #11254

9 months agodocs: use a space after RFC when spelling out RFC numbers
Daniel Stenberg [Sun, 25 Jun 2023 08:50:17 +0000 (10:50 +0200)] 
docs: use a space after RFC when spelling out RFC numbers

Closes #11382

9 months agoimap-append.c: update to make it more likely to work
Margu [Fri, 30 Jun 2023 06:32:13 +0000 (08:32 +0200)] 
imap-append.c: update to make it more likely to work

Fixes #10300
Closes #11397

9 months agotool_writeout_json: fix encoding of control characters
Emanuele Torre [Sun, 9 Jul 2023 14:45:39 +0000 (16:45 +0200)] 
tool_writeout_json: fix encoding of control characters

Control characters without a special escape sequence e.g. %00 or %06
were being encoded as "u0006" instead of "\u0006".

Ref: https://github.com/curl/trurl/pull/214#discussion_r1257487858
Closes #11414

9 months agohttp3/ngtcp2: upload EAGAIN handling
Stefan Eissing [Tue, 27 Jun 2023 10:06:21 +0000 (12:06 +0200)] 
http3/ngtcp2: upload EAGAIN handling

- refs #11389 where IDLE timeouts on upload are reported
- reword ngtcp2 expiry handling to apply to both send+recv
  calls into the filter
- EAGAIN uploads similar to the recent changes in HTTP/2, e.g.
  report success only when send data was ACKed.
- HOLD sending of EAGAINed uploads to avoid cpu busy loops
- rename internal function for consistency with HTTP/2
  implementation

Fixes #11389
Closes #11390

9 months agotool_easysrc.h: correct `easysrc_perform` for `CURL_DISABLE_LIBCURL_OPTION`
Brian Nixon [Fri, 30 Jun 2023 15:03:20 +0000 (16:03 +0100)] 
tool_easysrc.h: correct `easysrc_perform` for `CURL_DISABLE_LIBCURL_OPTION`

Closes #11398

9 months agoRELEASE-NOTES: synced
Daniel Stenberg [Sun, 9 Jul 2023 16:45:34 +0000 (18:45 +0200)] 
RELEASE-NOTES: synced

9 months agotransfer: clear credentials when redirecting to absolute URL 11412/head
Daniel Stenberg [Sat, 8 Jul 2023 21:57:29 +0000 (23:57 +0200)] 
transfer: clear credentials when redirecting to absolute URL

Make sure the user and password for the second request is taken from the
redirected-to URL.

Add test case 899 to verify.

Reported-by: James Lucas
Fixes #11410
Closes #11412

9 months agohyper: fix EOF handling on input
Stefan Eissing [Mon, 26 Jun 2023 09:51:43 +0000 (11:51 +0200)] 
hyper: fix EOF handling on input

We ran out of disc space due to an infinite loop with debug logging

Fixes #11377
Closes #11385
Reported-by: Dan Fandrich
9 months agohttp2: raise header limitations above and beyond
Stefan Eissing [Fri, 7 Jul 2023 08:52:05 +0000 (10:52 +0200)] 
http2: raise header limitations above and beyond

- not quite to infinity
- rewrote the implementation of our internal HTTP/1.x request
  parsing to work with very large lines using dynbufs.
- new default limit is `DYN_HTTP_REQUEST`, aka 1MB, which
  is also the limit of curl's general HTTP request processing.

Fixes #11405
Closes #11407

9 months agocurl_easy_nextheader.3: add missing open parenthesis examples
Juan Cruz Viotti [Sat, 8 Jul 2023 02:16:18 +0000 (22:16 -0400)] 
curl_easy_nextheader.3: add missing open parenthesis examples

Closes #11409
Signed-off-by: Juan Cruz Viotti <jv@jviotti.com>
9 months agoCI: enable verbose test output on pytest
Dan Fandrich [Fri, 7 Jul 2023 19:01:47 +0000 (12:01 -0700)] 
CI: enable verbose test output on pytest

This shows individual pass/fail status on tests and makes this output
consistent with other jobs' pytest invocations.

10 months agohttp2: fix crash in handling stream weights 11384/head
Stefan Eissing [Mon, 26 Jun 2023 07:03:47 +0000 (09:03 +0200)] 
http2: fix crash in handling stream weights

- Delay the priority handling until the stream has been opened.

- Add test2404 to reproduce and verify.

Weights may change "on the run", which is why there are checks in
general egress handling. These must not trigger when the stream has not
been opened yet.

Reported-by: jbgoog@users.noreply.github.com
Fixes https://github.com/curl/curl/issues/11379
Closes https://github.com/curl/curl/pull/11384

10 months agotests/http: Add mod_h2 directive `H2ProxyRequests`
Stefan Eissing [Wed, 28 Jun 2023 10:37:40 +0000 (12:37 +0200)] 
tests/http: Add mod_h2 directive `H2ProxyRequests`

master of mod_h2 now requires H2ProxyRequests directives for forward
proxying with HTTP/2 to work.

Ref: https://github.com/icing/mod_h2/commit/3897a7086

Closes https://github.com/curl/curl/pull/11392

10 months agoCI: make Appveyor job names unique
Dan Fandrich [Wed, 28 Jun 2023 08:07:21 +0000 (01:07 -0700)] 
CI: make Appveyor job names unique

Two otherwise identical mingw-w64 jobs now have their differing compiler
versions mentioned in their names.

10 months agocurl.h: include <sys/select.h> for vxworks
Sheshadri.V [Wed, 21 Jun 2023 05:33:20 +0000 (11:03 +0530)] 
curl.h: include <sys/select.h> for vxworks

Closes #11356

10 months agoCI: enable parallel make in more builds
Dan Fandrich [Fri, 23 Jun 2023 19:51:41 +0000 (12:51 -0700)] 
CI: enable parallel make in more builds

Most CI services provide at least two cores, so enable parallel make
jobs to take advantage of that for builds. Some dependencies aren't safe
to build in parallel so leave those as-is.  Also, rename a few
workflows to eliminate duplicate names and provide a better idea what
they're about.

10 months agoCI: don't install impacket if tests are not run
Dan Fandrich [Thu, 22 Jun 2023 18:13:07 +0000 (11:13 -0700)] 
CI: don't install impacket if tests are not run

It just wastes time and bandwidth and isn't even used.

10 months agoconfigure: the --without forms of the options are also gone
divinity76 [Thu, 22 Jun 2023 22:15:46 +0000 (00:15 +0200)] 
configure: the --without forms of the options are also gone

--without-darwin-ssl and --without-metalink

Closes #11378

10 months agoconfigure: add check for ldap_init_fd
Daniel Stenberg [Thu, 22 Jun 2023 12:34:49 +0000 (14:34 +0200)] 
configure: add check for ldap_init_fd

... as otherwise the configure script will say it is OpenLDAP in the
summary, but not set the USE_OPENLDAP define, therefor not using the
intended OpenLDAP code paths.

Regression since 4d7385446 (7.85.0)
Fixes #11372
Closes #11374
Reported-by: vlkl-sap on github
10 months agocmake: stop CMake from quietly ignoring missing Brotli
Michał Petryka [Thu, 22 Jun 2023 19:30:43 +0000 (21:30 +0200)] 
cmake: stop CMake from quietly ignoring missing Brotli

The CMake project was set to `QUIET` for Brotli instead of
`REQUIRED`. This makes builds unexpectedly ignore missing Brotli even
when `CURL_BROTLI` is enabled.

Closes #11376

10 months agodocs: add more .IP after .RE to fix indentation of generate paragraphs
Emanuele Torre [Thu, 22 Jun 2023 13:08:57 +0000 (15:08 +0200)] 
docs: add more .IP after .RE to fix indentation of generate paragraphs

follow-up from 099f41e097c030077b8ec078f2c2d4038d31353b

I just thought of checking all the other files with .RE, and I found 6
other files that were missing .IP at the end.

Closes #11375

10 months agohttp2: h2 and h2-PROXY connection alive check fixes
Stefan Eissing [Thu, 22 Jun 2023 09:01:53 +0000 (11:01 +0200)] 
http2: h2 and h2-PROXY connection alive check fixes

- fix HTTP/2 check to not declare a connection dead when
  the read attempt results in EAGAIN
- add H2-PROXY alive check as for HTTP/2 that was missing
  and is needed
- add attach/detach around Curl_conn_is_alive() and remove
  these in filter methods
- add checks for number of connections used in some test_10
  proxy tunneling tests

Closes #11368

10 months agohttp2: error stream resets with code CURLE_HTTP2_STREAM
Stefan Eissing [Wed, 21 Jun 2023 13:59:42 +0000 (15:59 +0200)] 
http2: error stream resets with code CURLE_HTTP2_STREAM

- refs #11357, where it was reported that HTTP/1.1 downgrades
  no longer works
- fixed with suggested change
- added test_05_03 and a new handler in the curltest module
  to reproduce that downgrades work

Fixes #11357
Closes #11362
Reported-by: Jay Satiro
10 months agoconnect-timeout.d: mention that the DNS lookup is included
Daniel Stenberg [Thu, 22 Jun 2023 11:18:24 +0000 (13:18 +0200)] 
connect-timeout.d: mention that the DNS lookup is included

Closes #11370

10 months agoquote.d: fix indentation of generated paragraphs
Emanuele Torre [Thu, 22 Jun 2023 11:18:30 +0000 (13:18 +0200)] 
quote.d: fix indentation of generated paragraphs

quote.d was missing a .IP at the end which caused the paragraphs
generated for See-also, Multi, and Example to not be indented correctly.

I also remove a redundant "This option can be used multiple times.", and
replaced .IP "item" with .TP .B "item" to make more clear which lines
are part of the list of commands and which aren't.

Closes #11371

10 months agochecksrc: modernise perl file open
Paul Wise [Wed, 21 Jun 2023 08:50:27 +0000 (10:50 +0200)] 
checksrc: modernise perl file open

Use regular variables and separate file open modes from filenames.

Suggested by perlcritic

Copied from https://github.com/curl/trurl/commit/f2784a9240f47ee28a845

Closes #11358

10 months agoruntests: work around a perl without SIGUSR1
Dan Fandrich [Thu, 22 Jun 2023 02:30:50 +0000 (19:30 -0700)] 
runtests: work around a perl without SIGUSR1

At least msys2 perl v5.32.1 doesn't seem to define this signal. Since
this signal is only used for debugging, just ignore if setting it fails.

Reported-by: Marcel Raad
Fixes #11350
Closes #11366

10 months agoruntests: include missing valgrind package 11365/head
Dan Fandrich [Wed, 21 Jun 2023 22:28:36 +0000 (15:28 -0700)] 
runtests: include missing valgrind package

use valgrind was missing which caused torture tests with valgrind
enabled to fail.

Reported-by: Daniel Stenberg
Fixes #11364
Closes #11365

10 months agoruntests: use more consistent failure lines
Dan Fandrich [Wed, 21 Jun 2023 19:43:48 +0000 (12:43 -0700)] 
runtests: use more consistent failure lines

After a test failure log a consistent log message to make it easier to
parse the log file.  Also, log a consistent message with "ignored" for
failures that cause the test to be not considered at all. These should
perhaps be counted in the skipped category, but this commit does not
change that behaviour.

10 months agoruntests: consistently write the test check summary block
Dan Fandrich [Wed, 21 Jun 2023 19:39:51 +0000 (12:39 -0700)] 
runtests: consistently write the test check summary block

The memory check character was erroneously omitted if the memory
checking file was not available for some reason, making the block of
characters an inconsistent length.

10 months agotest2600: fix the description
Dan Fandrich [Tue, 20 Jun 2023 19:47:33 +0000 (12:47 -0700)] 
test2600: fix the description

It looks like it was cut-and-pasted.

Closes #11354

10 months agoTODO: "Support HTTP/2 for HTTP(S) proxies" *done*
Daniel Stenberg [Wed, 21 Jun 2023 08:08:49 +0000 (10:08 +0200)] 
TODO: "Support HTTP/2 for HTTP(S) proxies" *done*

10 months agocf-socket: move ctx declaration under HAVE_GETPEERNAME
humbleacolyte [Tue, 20 Jun 2023 12:02:21 +0000 (17:02 +0500)] 
cf-socket: move ctx declaration under HAVE_GETPEERNAME

Closes #11352

10 months agoRELEASE-NOTES: synced
Daniel Stenberg [Tue, 20 Jun 2023 07:20:54 +0000 (09:20 +0200)] 
RELEASE-NOTES: synced

10 months agoexample/connect-to: show CURLOPT_CONNECT_TO
Daniel Stenberg [Mon, 19 Jun 2023 07:14:38 +0000 (09:14 +0200)] 
example/connect-to: show CURLOPT_CONNECT_TO

Closes #11340

10 months agohyper: unslow
Stefan Eissing [Mon, 19 Jun 2023 10:11:53 +0000 (12:11 +0200)] 
hyper: unslow

- refs #11203 where hyper was reported as being slow
- fixes hyper_executor_poll to loop until it is out of
  tasks as advised by @seanmonstar in https://github.com/hyperium/hyper/issues/3237
- added a fix in hyper io handling for detecting EAGAIN
- added some debug logs to see IO results
- pytest http/1.1 test cases pass
- pytest h2 test cases fail on connection reuse. HTTP/2
  connection reuse does not seem to work. Hyper submits
  a request on a reused connection, curl's IO works and
  thereafter hyper declares `Hyper: [1] operation was canceled: connection closed`
  on stderr without any error being logged before.

Fixes #11203
Reported-by: Gisle Vanem
Advised-by: Sean McArthur
Closes #11344

10 months agoHTTP/2: upload handling fixes
Stefan Eissing [Mon, 19 Jun 2023 08:53:23 +0000 (10:53 +0200)] 
HTTP/2: upload handling fixes

- fixes #11242 where 100% CPU on uploads was reported
- fixes possible stalls on last part of a request body when
  that information could not be fully send on the connection
  due to an EAGAIN
- applies the same EGAIN handling to HTTP/2 proxying

Reported-by: Sergey Alirzaev
Fixed #11242
Closes #11342

10 months agoexample/opensslthreadlock: remove
Daniel Stenberg [Mon, 19 Jun 2023 07:19:56 +0000 (09:19 +0200)] 
example/opensslthreadlock: remove

This shows how to setup OpenSSL mutex callbacks, but this is not
necessary since OpenSSL 1.1.0 - meaning that no currently supported
OpenSSL version requires this anymore

Closes #11341

10 months agolibtest: display the times after a test timeout error
Dan Fandrich [Fri, 16 Jun 2023 20:30:09 +0000 (13:30 -0700)] 
libtest: display the times after a test timeout error

This is to help with test failure debugging.

Ref: #11328
Closes #11329

10 months agotest2600: bump a test timeout
Dan Fandrich [Fri, 16 Jun 2023 19:23:28 +0000 (12:23 -0700)] 
test2600: bump a test timeout

Case 1 failed at least once on GHA by going 30 msec too long.

Ref: #11328

10 months agoruntests: better detect and handle pipe errors in the controller
Dan Fandrich [Fri, 16 Jun 2023 03:10:24 +0000 (20:10 -0700)] 
runtests: better detect and handle pipe errors in the controller

Errors reading and writing to the pipes are now better detected and
propagated up to the main test loop so it can be cleanly shut down. Such
errors are usually due to a runner dying so it doesn't make much sense
to try to continue the test run.

10 months agoruntests: cleanly abort the runner if the controller dies
Dan Fandrich [Wed, 14 Jun 2023 22:28:39 +0000 (15:28 -0700)] 
runtests: cleanly abort the runner if the controller dies

If the controller dies unexpectedly, have the runner stop its servers
and exit cleanly. Otherwise, the orphaned servers will stay running in
the background.

10 months agoruntests: improve error logging
Dan Fandrich [Wed, 14 Jun 2023 22:27:07 +0000 (15:27 -0700)] 
runtests: improve error logging

Give more information about test harness error conditions to help figure
out what might be wrong. Print some internal test state when SIGUSR1 is
sent to runtests.pl.

Ref: #11328

10 months agoruntests: better handle ^C during slow tests
Dan Fandrich [Wed, 14 Jun 2023 22:18:36 +0000 (15:18 -0700)] 
runtests: better handle ^C during slow tests

Since the SIGINT handler now just sets a flag that must be checked in the
main controller loop, make sure that runs periodically.  Rather than
blocking on a response from a test runner near the end of the test run,
add a short timeout to allow it.

10 months agoruntests: rename server command file
Dan Fandrich [Wed, 14 Jun 2023 22:11:40 +0000 (15:11 -0700)] 
runtests: rename server command file

The name ftpserver.cmd was historical and has been used for more than
ftp for many years now. Rename it to plain server.cmd to reduce
confusion.

10 months agotests: improve reliability of TFTP tests
Dan Fandrich [Wed, 14 Jun 2023 21:19:26 +0000 (14:19 -0700)] 
tests: improve reliability of TFTP tests

Stop checking the timeout used by the client under test (for most
tests). The timeout will change if the TFTP test server is slow (such as
happens on an overprovisioned CI server) because the client will retry
and reduce its timeout, and the actual value is not important for most
tests.

test285 is changed a different way, by increasing the connect timeout.
This improves test coverage by allowing the changed timeout value to be
checked, but improves reliability with a carefully-chosen timeout that
not only allows twice the time to respond as before, but also allows
several retries before the client will change its timeout value.

Ref: #11328

10 months agocf-socket: skip getpeername()/getsockname for TFTP
Daniel Stenberg [Sat, 17 Jun 2023 22:18:12 +0000 (00:18 +0200)] 
cf-socket: skip getpeername()/getsockname for TFTP

Since the socket is not connected then the call fails. When the call
fails, failf() is called to write an error message that is then
surviving and is returned when the *real* error occurs later. The
earlier, incorrect, error therefore hides the actual error message.

This could be seen in stderr for test 1007

Test 1007 has now been extended to verify the stderr message.

Closes #11332

10 months agoexample/crawler: make it use a few more options
Daniel Stenberg [Mon, 19 Jun 2023 07:06:41 +0000 (09:06 +0200)] 
example/crawler: make it use a few more options

For show, but reasonable

10 months agolibcurl-ws.3: mention raw mode
Daniel Stenberg [Sun, 18 Jun 2023 18:57:29 +0000 (20:57 +0200)] 
libcurl-ws.3: mention raw mode

Closes #11339

10 months agoexample/default-scheme: set the default scheme for schemeless URLs
Daniel Stenberg [Sun, 18 Jun 2023 17:54:15 +0000 (19:54 +0200)] 
example/default-scheme: set the default scheme for schemeless URLs

Closes #11338

10 months agoexample/hsts-preload: show one way to HSTS preload
Daniel Stenberg [Sun, 18 Jun 2023 17:33:44 +0000 (19:33 +0200)] 
example/hsts-preload: show one way to HSTS preload

Closes #11337

10 months agoexamples/http-options: show how to send "OPTIONS *"
Daniel Stenberg [Sat, 17 Jun 2023 22:32:00 +0000 (00:32 +0200)] 
examples/http-options: show how to send "OPTIONS *"

With CURLOPT_REQUEST_TARGET.

Also add use of CURLOPT_QUICK_EXIT to show.

Closes #11333

10 months agoexamples: make use of CURLOPT_(REDIR_|)PROTOCOLS_STR
Daniel Stenberg [Sat, 17 Jun 2023 22:37:22 +0000 (00:37 +0200)] 
examples: make use of CURLOPT_(REDIR_|)PROTOCOLS_STR

To show how to use them

Closes #11334

10 months agoexamples/smtp-mime: use CURLOPT_MAIL_RCPT_ALLOWFAILS
Daniel Stenberg [Sat, 17 Jun 2023 22:40:13 +0000 (00:40 +0200)] 
examples/smtp-mime: use CURLOPT_MAIL_RCPT_ALLOWFAILS

For show

Closes #11335

10 months agohttp: rectify the outgoing Cookie: header field size check
Daniel Stenberg [Sat, 17 Jun 2023 21:59:14 +0000 (23:59 +0200)] 
http: rectify the outgoing Cookie: header field size check

Previously it would count the size of the entire outgoing request and
not just the size of only the Cookie: header field - which was the
intention.

This could make the check be off by several hundred bytes in some cases.

Closes #11331

10 months agolib: fix some format specifiers
Jay Satiro [Fri, 16 Jun 2023 03:02:48 +0000 (23:02 -0400)] 
lib: fix some format specifiers

- Use CURL_FORMAT_CURL_OFF_T where %zd was erroneously used for some
  curl_off_t variables.

- Use %zu where %zd was erroneously used for some size_t variables.

Prior to this change some of the Windows CI tests were failing because
in Windows 32-bit targets have a 32-bit size_t and a 64-bit curl_off_t.
When %zd was used for some curl_off_t variables then only the lower
32-bits was read and the upper 32-bits would be read for part or all of
the next specifier.

Fixes https://github.com/curl/curl/issues/11327
Closes https://github.com/curl/curl/pull/11321

10 months agotest427: add `cookies` feature and keyword
Marcel Raad [Thu, 15 Jun 2023 10:43:53 +0000 (12:43 +0200)] 
test427: add `cookies` feature and keyword

This test doesn't work with `--disable-cookies`.

Closes https://github.com/curl/curl/pull/11320

10 months agoimap: Provide method to disable SASL if it is advertised 10041/head
Chris Talbot [Mon, 5 Dec 2022 23:05:01 +0000 (18:05 -0500)] 
imap: Provide method to disable SASL if it is advertised

- Implement AUTH=+LOGIN for CURLOPT_LOGIN_OPTIONS to prefer plaintext
  LOGIN over SASL auth.

Prior to this change there was no method to be able to fall back to
LOGIN if an IMAP server advertises SASL capabilities. However, this may
be desirable for e.g. a misconfigured server.

Per: https://www.ietf.org/rfc/rfc5092.html#section-3.2

";AUTH=<enc-auth-type>" looks to be the correct way to specify what
authenication method to use, regardless of SASL or not.

Closes https://github.com/curl/curl/pull/10041

10 months agoRELEASE-NOTES: synced
Daniel Stenberg [Thu, 15 Jun 2023 13:59:06 +0000 (15:59 +0200)] 
RELEASE-NOTES: synced

10 months agoexamples/multi-debugcallback.c: avoid the bool typedef
Daniel Stenberg [Thu, 15 Jun 2023 07:39:09 +0000 (09:39 +0200)] 
examples/multi-debugcallback.c: avoid the bool typedef

Apparently this cannot be done in c23

Reported-by: Cristian Rodríguez
Fixes #11299
Closes #11319

10 months agodocs/libcurl/libcurl.3: cleanups and improvements
Daniel Stenberg [Wed, 14 Jun 2023 13:37:53 +0000 (15:37 +0200)] 
docs/libcurl/libcurl.3: cleanups and improvements

Closes #11317

10 months agolibcurl-ws.3: fix typo
Daniel Stenberg [Wed, 14 Jun 2023 21:38:22 +0000 (23:38 +0200)] 
libcurl-ws.3: fix typo

10 months agocurl_ws_*.3: enhance
Daniel Stenberg [Wed, 14 Jun 2023 13:50:13 +0000 (15:50 +0200)] 
curl_ws_*.3: enhance

- all: SEE ALSO the libcurl-ws man page
- send: add example and return value information
- meta: mention that the returned data is read-only

Closes #11318

10 months agodocs/libcurl/libcurl-ws.3: see also CURLOPT_WS_OPTIONS
Daniel Stenberg [Wed, 14 Jun 2023 11:36:38 +0000 (13:36 +0200)] 
docs/libcurl/libcurl-ws.3: see also CURLOPT_WS_OPTIONS

10 months agodocs/libcurl/libcurl-ws.3: minor polish
Daniel Stenberg [Wed, 14 Jun 2023 11:30:50 +0000 (13:30 +0200)] 
docs/libcurl/libcurl-ws.3: minor polish

10 months agolibcurl-ws.3. WebSocket API overview
Daniel Stenberg [Wed, 14 Jun 2023 08:57:50 +0000 (10:57 +0200)] 
libcurl-ws.3. WebSocket API overview

Closes #11314

10 months agolibcurl-url.3: also mention CURLUPART_ZONEID
Daniel Stenberg [Wed, 14 Jun 2023 08:18:14 +0000 (10:18 +0200)] 
libcurl-url.3: also mention CURLUPART_ZONEID

... and sort the two part-using lists alphabetically

10 months agofopen: fix conversion warning on 32-bit Android
Marcel Raad [Tue, 13 Jun 2023 09:13:59 +0000 (11:13 +0200)] 
fopen: fix conversion warning on 32-bit Android

When building for 32-bit ARM or x86 Android, `st_mode` is defined as
`unsigned int` instead of `mode_t`, resulting in a
-Wimplicit-int-conversion clang warning because `mode_t` is
`unsigned short`. Add a cast to silence the warning.

Ref: https://android.googlesource.com/platform/bionic/+/refs/tags/ndk-r25c/libc/include/sys/stat.h#86
Closes https://github.com/curl/curl/pull/11313

10 months agohttp2: fix variable type
Marcel Raad [Mon, 12 Jun 2023 14:02:00 +0000 (16:02 +0200)] 
http2: fix variable type

`max_recv_speed` is `curl_off_t`, so using `size_t` might result in
-Wconversion GCC warnings for 32-bit `size_t`. Visible in the NetBSD
ARM autobuilds.

Closes https://github.com/curl/curl/pull/11312

10 months agovtls: fix potentially uninitialized local variable warnings
Daniel Stenberg [Mon, 12 Jun 2023 21:17:33 +0000 (23:17 +0200)] 
vtls: fix potentially uninitialized local variable warnings

Follow-up from a4a5e438ae533c

Closes #11310