mirror of
https://github.com/curl/curl.git
synced 2026-04-13 00:31:41 +08:00
Changed strategy to start up and terminate resolver thread. When starting up: Start the thread with mutex acquired, wait for signal from thread that it started and has incremented the ref counter. Thread set pthread_cancel() to disabled before that and only enables cancelling during resolving itself. This assure that the ref counter is correct and the unlinking of the resolve context always happens. When shutting down resolving: If ref counting shows thread has finished, join it, free everything. If thread has not finished, try pthread_cancel() (non Windows), but keep the thread handle around. When destroying resolving: Shutdown first, then, if the thread is still there and 'quick_exit' is not set, join it and free everything. This might occur a delay if getaddrinfo() hangs and cannot be interrupted by pthread_cancel(). Destroying resolving happens when another resolve is started on an easy handle or when the easy handle is closed. Add test795 to check that connect timeout triggers correctly when resolving is delayed. Add debug env var `CURL_DNS_DELAY_MS` to simulate delays in resolving. Fix test1557 to set `quick_exit` and use `xxx.invalid` as domain instead of `nothing` that was leading to hangers in CI. Closes #18263
47 lines
1.5 KiB
Perl
Executable File
47 lines
1.5 KiB
Perl
Executable File
#!/usr/bin/env perl
|
|
#***************************************************************************
|
|
# _ _ ____ _
|
|
# Project ___| | | | _ \| |
|
|
# / __| | | | |_) | |
|
|
# | (__| |_| | _ <| |___
|
|
# \___|\___/|_| \_\_____|
|
|
#
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# This software is licensed as described in the file COPYING, which
|
|
# you should have received as part of this distribution. The terms
|
|
# are also available at https://curl.se/docs/copyright.html.
|
|
#
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
# KIND, either express or implied.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
#
|
|
###########################################################################
|
|
use strict;
|
|
use warnings;
|
|
|
|
my $ok = 1;
|
|
my $exp_duration = $ARGV[1] + 0.0;
|
|
|
|
# Read the output of curl --version
|
|
open(F, $ARGV[0]) || die "Can't open test result from $ARGV[0]\n";
|
|
$_ = <F>;
|
|
chomp;
|
|
/\s*([\.\d]+)\s*/;
|
|
my $duration = $1 + 0.0;
|
|
close F;
|
|
|
|
if ($duration <= $exp_duration) {
|
|
print "OK: duration of $duration in expected range\n";
|
|
$ok = 0;
|
|
}
|
|
else {
|
|
print "FAILED: duration of $duration is larger than $exp_duration\n";
|
|
}
|
|
exit $ok;
|