Coverage Report

Created: 2026-09-01 07:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/curl/lib/curlx/wait.c
Line
Count
Source
1
/***************************************************************************
2
 *                                  _   _ ____  _
3
 *  Project                     ___| | | |  _ \| |
4
 *                             / __| | | | |_) | |
5
 *                            | (__| |_| |  _ <| |___
6
 *                             \___|\___/|_| \_\_____|
7
 *
8
 * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
9
 *
10
 * This software is licensed as described in the file COPYING, which
11
 * you should have received as part of this distribution. The terms
12
 * are also available at https://curl.se/docs/copyright.html.
13
 *
14
 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15
 * copies of the Software, and permit persons to whom the Software is
16
 * furnished to do so, under the terms of the COPYING file.
17
 *
18
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
 * KIND, either express or implied.
20
 *
21
 * SPDX-License-Identifier: curl
22
 *
23
 ***************************************************************************/
24
#include "curl_setup.h"
25
26
#ifdef HAVE_SYS_SELECT_H
27
#include <sys/select.h>
28
#elif defined(HAVE_UNISTD_H)
29
#include <unistd.h>
30
#endif
31
32
#ifdef MSDOS
33
#include <dos.h>  /* delay() */
34
#endif
35
36
#include "curlx/timediff.h"
37
#include "curlx/wait.h"
38
39
/*
40
 * Internal function used for waiting a specific amount of ms in
41
 * Curl_socket_check() and Curl_poll() when no file descriptor is provided to
42
 * wait on, being used to delay execution. Winsock select() and poll() timeout
43
 * mechanisms need a valid socket descriptor in a not null file descriptor set
44
 * to work. Waiting indefinitely with this function is not allowed, a zero or
45
 * negative timeout value is returned immediately. Timeout resolution,
46
 * accuracy, as well as maximum supported value is system dependent, neither
47
 * factor is a critical issue for the intended use of this function in the
48
 * library.
49
 *
50
 * Return values:
51
 *   -1 = system call error, or invalid timeout value
52
 *    0 = specified timeout has elapsed, or interrupted
53
 */
54
int curlx_wait_ms(timediff_t timeout_ms)
55
0
{
56
0
  int r = 0;
57
58
0
  if(!timeout_ms)
59
0
    return 0;
60
0
  if(timeout_ms < 0) {
61
0
    SET_SOCKERRNO(SOCKEINVAL);
62
0
    return -1;
63
0
  }
64
#ifdef MSDOS
65
  delay((unsigned int)timeout_ms);
66
#elif defined(_WIN32)
67
  /* prevent overflow, timeout_ms is typecast to ULONG/DWORD. */
68
#if TIMEDIFF_T_MAX >= ULONG_MAX
69
  if(timeout_ms >= ULONG_MAX)
70
    timeout_ms = ULONG_MAX - 1;
71
    /* do not use ULONG_MAX, because that is equal to INFINITE */
72
#endif
73
  Sleep((DWORD)timeout_ms);
74
#else
75
  /* avoid using poll() for this since it behaves incorrectly with no sockets
76
     on Apple operating systems */
77
0
  {
78
0
    struct timeval pending_tv;
79
0
    r = select(0, NULL, NULL, NULL, curlx_mstotv(&pending_tv, timeout_ms));
80
0
  }
81
0
#endif /* _WIN32 */
82
0
  if(r) {
83
0
    if((r == -1) && (SOCKERRNO == SOCKEINTR))
84
      /* make EINTR from select or poll not a "lethal" error */
85
0
      r = 0;
86
0
    else
87
0
      r = -1;
88
0
  }
89
0
  return r;
90
0
}