2
0

curl_setup.h 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994
  1. #ifndef HEADER_CURL_SETUP_H
  2. #define HEADER_CURL_SETUP_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  11. *
  12. * This software is licensed as described in the file COPYING, which
  13. * you should have received as part of this distribution. The terms
  14. * are also available at https://curl.se/docs/copyright.html.
  15. *
  16. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. * copies of the Software, and permit persons to whom the Software is
  18. * furnished to do so, under the terms of the COPYING file.
  19. *
  20. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. * KIND, either express or implied.
  22. *
  23. * SPDX-License-Identifier: curl
  24. *
  25. ***************************************************************************/
  26. #if defined(BUILDING_LIBCURL) && !defined(CURL_NO_OLDIES)
  27. #define CURL_NO_OLDIES
  28. #endif
  29. /* Tell "curl/curl.h" not to include "curl/mprintf.h" */
  30. #define CURL_SKIP_INCLUDE_MPRINTF
  31. /* FIXME: Delete this once the warnings have been fixed. */
  32. #if !defined(CURL_WARN_SIGN_CONVERSION)
  33. #if defined(__GNUC__) || defined(__clang__)
  34. #pragma GCC diagnostic ignored "-Wsign-conversion"
  35. #endif
  36. #endif
  37. /* Set default _WIN32_WINNT */
  38. #ifdef __MINGW32__
  39. #include <_mingw.h>
  40. #endif
  41. /* Workaround for Homebrew gcc 12.4.0, 13.3.0, 14.1.0, 14.2.0 (initial build)
  42. that started advertising the `availability` attribute, which then gets used
  43. by Apple SDK, but, in a way incompatible with gcc, resulting in misc errors
  44. inside SDK headers, e.g.:
  45. error: attributes should be specified before the declarator in a function
  46. definition
  47. error: expected ',' or '}' before
  48. Followed by missing declarations.
  49. Work it around by overriding the built-in feature-check macro used by the
  50. headers to enable the problematic attributes. This makes the feature check
  51. fail. Fixed in 14.2.0_1. Disable the workaround if the fix is detected. */
  52. #if defined(__APPLE__) && !defined(__clang__) && defined(__GNUC__) && \
  53. defined(__has_attribute)
  54. # if !defined(__has_feature)
  55. # define availability curl_pp_attribute_disabled
  56. # elif !__has_feature(attribute_availability)
  57. # define availability curl_pp_attribute_disabled
  58. # endif
  59. #endif
  60. #if defined(__APPLE__)
  61. #include <sys/types.h>
  62. #include <TargetConditionals.h>
  63. /* Fixup faulty target macro initialization in macOS SDK since v14.4 (as of
  64. 15.0 beta). The SDK target detection in `TargetConditionals.h` correctly
  65. detects macOS, but fails to set the macro's old name `TARGET_OS_OSX`, then
  66. continues to set it to a default value of 0. Other parts of the SDK still
  67. rely on the old name, and with this inconsistency our builds fail due to
  68. missing declarations. It happens when using mainline llvm older than v18.
  69. Later versions fixed it by predefining these target macros, avoiding the
  70. faulty dynamic detection. gcc is not affected (for now) because it lacks
  71. the necessary dynamic detection features, so the SDK falls back to
  72. a codepath that sets both the old and new macro to 1. */
  73. #if defined(TARGET_OS_MAC) && TARGET_OS_MAC && \
  74. defined(TARGET_OS_OSX) && !TARGET_OS_OSX && \
  75. (!defined(TARGET_OS_IPHONE) || !TARGET_OS_IPHONE) && \
  76. (!defined(TARGET_OS_SIMULATOR) || !TARGET_OS_SIMULATOR)
  77. #undef TARGET_OS_OSX
  78. #define TARGET_OS_OSX TARGET_OS_MAC
  79. #endif
  80. #endif
  81. /*
  82. * Disable Visual Studio warnings:
  83. * 4127 "conditional expression is constant"
  84. */
  85. #ifdef _MSC_VER
  86. #pragma warning(disable:4127)
  87. #endif
  88. #ifdef _WIN32
  89. /*
  90. * Do not include unneeded stuff in Windows headers to avoid compiler
  91. * warnings and macro clashes.
  92. * Make sure to define this macro before including any Windows headers.
  93. */
  94. # ifndef WIN32_LEAN_AND_MEAN
  95. # define WIN32_LEAN_AND_MEAN
  96. # endif
  97. # ifndef NOGDI
  98. # define NOGDI
  99. # endif
  100. /* Detect Windows App environment which has a restricted access
  101. * to the Win32 APIs. */
  102. # if (defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0602)) || \
  103. defined(WINAPI_FAMILY)
  104. # include <winapifamily.h>
  105. # if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) && \
  106. !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
  107. # define CURL_WINDOWS_UWP
  108. # endif
  109. # endif
  110. #endif
  111. /* Compatibility */
  112. #if defined(ENABLE_IPV6)
  113. # define USE_IPV6 1
  114. #endif
  115. /*
  116. * Include configuration script results or hand-crafted
  117. * configuration file for platforms which lack config tool.
  118. */
  119. #ifdef HAVE_CONFIG_H
  120. #include "curl_config.h"
  121. #else /* HAVE_CONFIG_H */
  122. #ifdef _WIN32_WCE
  123. # include "config-win32ce.h"
  124. #else
  125. # ifdef _WIN32
  126. # include "config-win32.h"
  127. # endif
  128. #endif
  129. #ifdef macintosh
  130. # include "config-mac.h"
  131. #endif
  132. #ifdef __riscos__
  133. # include "config-riscos.h"
  134. #endif
  135. #ifdef __AMIGA__
  136. # include "config-amigaos.h"
  137. #endif
  138. #ifdef __OS400__
  139. # include "config-os400.h"
  140. #endif
  141. #ifdef __PLAN9__
  142. # include "config-plan9.h"
  143. #endif
  144. #ifdef MSDOS
  145. # include "config-dos.h"
  146. #endif
  147. #endif /* HAVE_CONFIG_H */
  148. /* ================================================================ */
  149. /* Definition of preprocessor macros/symbols which modify compiler */
  150. /* behavior or generated code characteristics must be done here, */
  151. /* as appropriate, before any system header file is included. It is */
  152. /* also possible to have them defined in the config file included */
  153. /* before this point. As a result of all this we frown inclusion of */
  154. /* system header files in our config files, avoid this at any cost. */
  155. /* ================================================================ */
  156. /*
  157. * AIX 4.3 and newer needs _THREAD_SAFE defined to build
  158. * proper reentrant code. Others may also need it.
  159. */
  160. #ifdef NEED_THREAD_SAFE
  161. # ifndef _THREAD_SAFE
  162. # define _THREAD_SAFE
  163. # endif
  164. #endif
  165. /*
  166. * Tru64 needs _REENTRANT set for a few function prototypes and
  167. * things to appear in the system header files. Unixware needs it
  168. * to build proper reentrant code. Others may also need it.
  169. */
  170. #ifdef NEED_REENTRANT
  171. # ifndef _REENTRANT
  172. # define _REENTRANT
  173. # endif
  174. #endif
  175. /* Solaris needs this to get a POSIX-conformant getpwuid_r */
  176. #if defined(sun) || defined(__sun)
  177. # ifndef _POSIX_PTHREAD_SEMANTICS
  178. # define _POSIX_PTHREAD_SEMANTICS 1
  179. # endif
  180. #endif
  181. /* ================================================================ */
  182. /* If you need to include a system header file for your platform, */
  183. /* please, do it beyond the point further indicated in this file. */
  184. /* ================================================================ */
  185. /* Give calloc a chance to be dragging in early, so we do not redefine */
  186. #if defined(USE_THREADS_POSIX) && defined(HAVE_PTHREAD_H)
  187. # include <pthread.h>
  188. #endif
  189. /*
  190. * Disable other protocols when http is the only one desired.
  191. */
  192. #ifdef HTTP_ONLY
  193. # ifndef CURL_DISABLE_DICT
  194. # define CURL_DISABLE_DICT
  195. # endif
  196. # ifndef CURL_DISABLE_FILE
  197. # define CURL_DISABLE_FILE
  198. # endif
  199. # ifndef CURL_DISABLE_FTP
  200. # define CURL_DISABLE_FTP
  201. # endif
  202. # ifndef CURL_DISABLE_GOPHER
  203. # define CURL_DISABLE_GOPHER
  204. # endif
  205. # ifndef CURL_DISABLE_IMAP
  206. # define CURL_DISABLE_IMAP
  207. # endif
  208. # ifndef CURL_DISABLE_LDAP
  209. # define CURL_DISABLE_LDAP
  210. # endif
  211. # ifndef CURL_DISABLE_LDAPS
  212. # define CURL_DISABLE_LDAPS
  213. # endif
  214. # ifndef CURL_DISABLE_MQTT
  215. # define CURL_DISABLE_MQTT
  216. # endif
  217. # ifndef CURL_DISABLE_POP3
  218. # define CURL_DISABLE_POP3
  219. # endif
  220. # ifndef CURL_DISABLE_RTSP
  221. # define CURL_DISABLE_RTSP
  222. # endif
  223. # ifndef CURL_DISABLE_SMB
  224. # define CURL_DISABLE_SMB
  225. # endif
  226. # ifndef CURL_DISABLE_SMTP
  227. # define CURL_DISABLE_SMTP
  228. # endif
  229. # ifndef CURL_DISABLE_TELNET
  230. # define CURL_DISABLE_TELNET
  231. # endif
  232. # ifndef CURL_DISABLE_TFTP
  233. # define CURL_DISABLE_TFTP
  234. # endif
  235. #endif
  236. /*
  237. * When http is disabled rtsp is not supported.
  238. */
  239. #if defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_RTSP)
  240. # define CURL_DISABLE_RTSP
  241. #endif
  242. /*
  243. * When HTTP is disabled, disable HTTP-only features
  244. */
  245. #if defined(CURL_DISABLE_HTTP)
  246. # define CURL_DISABLE_ALTSVC 1
  247. # define CURL_DISABLE_COOKIES 1
  248. # define CURL_DISABLE_BASIC_AUTH 1
  249. # define CURL_DISABLE_BEARER_AUTH 1
  250. # define CURL_DISABLE_AWS 1
  251. # define CURL_DISABLE_DOH 1
  252. # define CURL_DISABLE_FORM_API 1
  253. # define CURL_DISABLE_HEADERS_API 1
  254. # define CURL_DISABLE_HSTS 1
  255. # define CURL_DISABLE_HTTP_AUTH 1
  256. #endif
  257. /* ================================================================ */
  258. /* No system header file shall be included in this file before this */
  259. /* point. */
  260. /* ================================================================ */
  261. /*
  262. * OS/400 setup file includes some system headers.
  263. */
  264. #ifdef __OS400__
  265. # include "setup-os400.h"
  266. #endif
  267. /*
  268. * VMS setup file includes some system headers.
  269. */
  270. #ifdef __VMS
  271. # include "setup-vms.h"
  272. #endif
  273. /*
  274. * Windows setup file includes some system headers.
  275. */
  276. #ifdef _WIN32
  277. # include "setup-win32.h"
  278. #endif
  279. #include <curl/system.h>
  280. /* Helper macro to expand and concatenate two macros.
  281. * Direct macros concatenation does not work because macros
  282. * are not expanded before direct concatenation.
  283. */
  284. #define CURL_CONC_MACROS_(A,B) A ## B
  285. #define CURL_CONC_MACROS(A,B) CURL_CONC_MACROS_(A,B)
  286. /* curl uses its own printf() function internally. It understands the GNU
  287. * format. Use this format, so that is matches the GNU format attribute we
  288. * use with the MinGW compiler, allowing it to verify them at compile-time.
  289. */
  290. #ifdef __MINGW32__
  291. # undef CURL_FORMAT_CURL_OFF_T
  292. # undef CURL_FORMAT_CURL_OFF_TU
  293. # define CURL_FORMAT_CURL_OFF_T "lld"
  294. # define CURL_FORMAT_CURL_OFF_TU "llu"
  295. #endif
  296. /* based on logic in "curl/mprintf.h" */
  297. #if (defined(__GNUC__) || defined(__clang__) || \
  298. defined(__IAR_SYSTEMS_ICC__)) && \
  299. defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && \
  300. !defined(CURL_NO_FMT_CHECKS)
  301. #if defined(__MINGW32__) && !defined(__clang__)
  302. #define CURL_PRINTF(fmt, arg) \
  303. __attribute__((format(gnu_printf, fmt, arg)))
  304. #else
  305. #define CURL_PRINTF(fmt, arg) \
  306. __attribute__((format(__printf__, fmt, arg)))
  307. #endif
  308. #else
  309. #define CURL_PRINTF(fmt, arg)
  310. #endif
  311. /* Override default printf mask check rules in "curl/mprintf.h" */
  312. #define CURL_TEMP_PRINTF CURL_PRINTF
  313. /* Workaround for mainline llvm v16 and earlier missing a built-in macro
  314. expected by macOS SDK v14 / Xcode v15 (2023) and newer.
  315. gcc (as of v14) is also missing it. */
  316. #if defined(__APPLE__) && \
  317. ((!defined(__apple_build_version__) && \
  318. defined(__clang__) && __clang_major__ < 17) || \
  319. (defined(__GNUC__) && __GNUC__ <= 14)) && \
  320. defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && \
  321. !defined(__ENVIRONMENT_OS_VERSION_MIN_REQUIRED__)
  322. #define __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__ \
  323. __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__
  324. #endif
  325. /*
  326. * Use getaddrinfo to resolve the IPv4 address literal. If the current network
  327. * interface does not support IPv4, but supports IPv6, NAT64, and DNS64,
  328. * performing this task will result in a synthesized IPv6 address.
  329. */
  330. #if defined(__APPLE__) && !defined(USE_ARES)
  331. #define USE_RESOLVE_ON_IPS 1
  332. # if TARGET_OS_MAC && !(defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE) && \
  333. defined(USE_IPV6)
  334. # define CURL_MACOS_CALL_COPYPROXIES 1
  335. # endif
  336. #endif
  337. #ifdef USE_LWIPSOCK
  338. # include <lwip/init.h>
  339. # include <lwip/sockets.h>
  340. # include <lwip/netdb.h>
  341. #endif
  342. #ifdef HAVE_EXTRA_STRICMP_H
  343. # include <extra/stricmp.h>
  344. #endif
  345. #ifdef HAVE_EXTRA_STRDUP_H
  346. # include <extra/strdup.h>
  347. #endif
  348. #ifdef __AMIGA__
  349. # ifdef __amigaos4__
  350. # define __USE_INLINE__
  351. /* use our own resolver which uses runtime feature detection */
  352. # define CURLRES_AMIGA
  353. /* getaddrinfo() currently crashes bsdsocket.library, so disable */
  354. # undef HAVE_GETADDRINFO
  355. # if !(defined(__NEWLIB__) || \
  356. (defined(__CLIB2__) && defined(__THREAD_SAFE)))
  357. /* disable threaded resolver with clib2 - requires newlib or clib-ts */
  358. # undef USE_THREADS_POSIX
  359. # endif
  360. # endif
  361. # include <exec/types.h>
  362. # include <exec/execbase.h>
  363. # include <proto/exec.h>
  364. # include <proto/dos.h>
  365. # include <unistd.h>
  366. # if defined(HAVE_PROTO_BSDSOCKET_H) && \
  367. (!defined(__amigaos4__) || defined(USE_AMISSL))
  368. /* use bsdsocket.library directly, instead of libc networking functions */
  369. # define _SYS_MBUF_H /* m_len define clashes with curl */
  370. # include <proto/bsdsocket.h>
  371. # ifdef __amigaos4__
  372. int Curl_amiga_select(int nfds, fd_set *readfds, fd_set *writefds,
  373. fd_set *errorfds, struct timeval *timeout);
  374. # define select(a,b,c,d,e) Curl_amiga_select(a,b,c,d,e)
  375. # else
  376. # define select(a,b,c,d,e) WaitSelect(a,b,c,d,e,0)
  377. # endif
  378. /* must not use libc's fcntl() on bsdsocket.library sockfds! */
  379. # undef HAVE_FCNTL
  380. # undef HAVE_FCNTL_O_NONBLOCK
  381. # else
  382. /* use libc networking and hence close() and fnctl() */
  383. # undef HAVE_CLOSESOCKET_CAMEL
  384. # undef HAVE_IOCTLSOCKET_CAMEL
  385. # endif
  386. /*
  387. * In clib2 arpa/inet.h warns that some prototypes may clash
  388. * with bsdsocket.library. This avoids the definition of those.
  389. */
  390. # define __NO_NET_API
  391. #endif
  392. #include <stdio.h>
  393. #include <assert.h>
  394. #ifdef __TANDEM /* for ns*-tandem-nsk systems */
  395. # if ! defined __LP64
  396. # include <floss.h> /* FLOSS is only used for 32-bit builds. */
  397. # endif
  398. #endif
  399. #ifndef STDC_HEADERS /* no standard C headers! */
  400. #include <curl/stdcheaders.h>
  401. #endif
  402. /*
  403. * Large file (>2Gb) support using Win32 functions.
  404. */
  405. #ifdef USE_WIN32_LARGE_FILES
  406. # include <io.h>
  407. # include <sys/types.h>
  408. # include <sys/stat.h>
  409. # undef lseek
  410. # define lseek(fdes,offset,whence) _lseeki64(fdes, offset, whence)
  411. # undef fstat
  412. # define fstat(fdes,stp) _fstati64(fdes, stp)
  413. # undef stat
  414. # define stat(fname,stp) curlx_win32_stat(fname, stp)
  415. # define struct_stat struct _stati64
  416. # define LSEEK_ERROR (__int64)-1
  417. # define open curlx_win32_open
  418. # define fopen(fname,mode) curlx_win32_fopen(fname, mode)
  419. int curlx_win32_open(const char *filename, int oflag, ...);
  420. int curlx_win32_stat(const char *path, struct_stat *buffer);
  421. FILE *curlx_win32_fopen(const char *filename, const char *mode);
  422. #endif
  423. /*
  424. * Small file (<2Gb) support using Win32 functions.
  425. */
  426. #ifdef USE_WIN32_SMALL_FILES
  427. # include <io.h>
  428. # include <sys/types.h>
  429. # include <sys/stat.h>
  430. # ifndef _WIN32_WCE
  431. # undef lseek
  432. # define lseek(fdes,offset,whence) _lseek(fdes, (long)offset, whence)
  433. # define fstat(fdes,stp) _fstat(fdes, stp)
  434. # define stat(fname,stp) curlx_win32_stat(fname, stp)
  435. # define struct_stat struct _stat
  436. # define open curlx_win32_open
  437. # define fopen(fname,mode) curlx_win32_fopen(fname, mode)
  438. int curlx_win32_stat(const char *path, struct_stat *buffer);
  439. int curlx_win32_open(const char *filename, int oflag, ...);
  440. FILE *curlx_win32_fopen(const char *filename, const char *mode);
  441. # endif
  442. # define LSEEK_ERROR (long)-1
  443. #endif
  444. #ifndef struct_stat
  445. # define struct_stat struct stat
  446. #endif
  447. #ifndef LSEEK_ERROR
  448. # define LSEEK_ERROR (off_t)-1
  449. #endif
  450. #ifndef SIZEOF_TIME_T
  451. /* assume default size of time_t to be 32 bits */
  452. #define SIZEOF_TIME_T 4
  453. #endif
  454. #ifndef SIZEOF_CURL_SOCKET_T
  455. /* configure and cmake check and set the define */
  456. # ifdef _WIN64
  457. # define SIZEOF_CURL_SOCKET_T 8
  458. # else
  459. /* default guess */
  460. # define SIZEOF_CURL_SOCKET_T 4
  461. # endif
  462. #endif
  463. #if SIZEOF_CURL_SOCKET_T < 8
  464. # define FMT_SOCKET_T "d"
  465. #elif defined(__MINGW32__)
  466. # define FMT_SOCKET_T "zd"
  467. #else
  468. # define FMT_SOCKET_T "qd"
  469. #endif
  470. /*
  471. * Default sizeof(off_t) in case it has not been defined in config file.
  472. */
  473. #ifndef SIZEOF_OFF_T
  474. # if defined(__VMS) && !defined(__VAX)
  475. # if defined(_LARGEFILE)
  476. # define SIZEOF_OFF_T 8
  477. # endif
  478. # elif defined(__OS400__) && defined(__ILEC400__)
  479. # if defined(_LARGE_FILES)
  480. # define SIZEOF_OFF_T 8
  481. # endif
  482. # elif defined(__MVS__) && defined(__IBMC__)
  483. # if defined(_LP64) || defined(_LARGE_FILES)
  484. # define SIZEOF_OFF_T 8
  485. # endif
  486. # elif defined(__370__) && defined(__IBMC__)
  487. # if defined(_LP64) || defined(_LARGE_FILES)
  488. # define SIZEOF_OFF_T 8
  489. # endif
  490. # endif
  491. # ifndef SIZEOF_OFF_T
  492. # define SIZEOF_OFF_T 4
  493. # endif
  494. #endif
  495. #if (SIZEOF_CURL_OFF_T < 8)
  496. #error "too small curl_off_t"
  497. #else
  498. /* assume SIZEOF_CURL_OFF_T == 8 */
  499. # define CURL_OFF_T_MAX CURL_OFF_T_C(0x7FFFFFFFFFFFFFFF)
  500. #endif
  501. #define CURL_OFF_T_MIN (-CURL_OFF_T_MAX - CURL_OFF_T_C(1))
  502. #if (SIZEOF_CURL_OFF_T != 8)
  503. # error "curl_off_t must be exactly 64 bits"
  504. #else
  505. typedef unsigned CURL_TYPEOF_CURL_OFF_T curl_uint64_t;
  506. typedef CURL_TYPEOF_CURL_OFF_T curl_int64_t;
  507. # ifndef CURL_SUFFIX_CURL_OFF_TU
  508. # error "CURL_SUFFIX_CURL_OFF_TU must be defined"
  509. # endif
  510. # define CURL_UINT64_SUFFIX CURL_SUFFIX_CURL_OFF_TU
  511. # define CURL_UINT64_C(val) CURL_CONC_MACROS(val,CURL_UINT64_SUFFIX)
  512. # define FMT_PRId64 CURL_FORMAT_CURL_OFF_T
  513. # define FMT_PRIu64 CURL_FORMAT_CURL_OFF_TU
  514. #endif
  515. #define FMT_OFF_T CURL_FORMAT_CURL_OFF_T
  516. #define FMT_OFF_TU CURL_FORMAT_CURL_OFF_TU
  517. #if (SIZEOF_TIME_T == 4)
  518. # ifdef HAVE_TIME_T_UNSIGNED
  519. # define TIME_T_MAX UINT_MAX
  520. # define TIME_T_MIN 0
  521. # else
  522. # define TIME_T_MAX INT_MAX
  523. # define TIME_T_MIN INT_MIN
  524. # endif
  525. #else
  526. # ifdef HAVE_TIME_T_UNSIGNED
  527. # define TIME_T_MAX 0xFFFFFFFFFFFFFFFF
  528. # define TIME_T_MIN 0
  529. # else
  530. # define TIME_T_MAX 0x7FFFFFFFFFFFFFFF
  531. # define TIME_T_MIN (-TIME_T_MAX - 1)
  532. # endif
  533. #endif
  534. #ifndef SIZE_T_MAX
  535. /* some limits.h headers have this defined, some do not */
  536. #if defined(SIZEOF_SIZE_T) && (SIZEOF_SIZE_T > 4)
  537. #define SIZE_T_MAX 18446744073709551615U
  538. #else
  539. #define SIZE_T_MAX 4294967295U
  540. #endif
  541. #endif
  542. #ifndef SSIZE_T_MAX
  543. /* some limits.h headers have this defined, some do not */
  544. #if defined(SIZEOF_SIZE_T) && (SIZEOF_SIZE_T > 4)
  545. #define SSIZE_T_MAX 9223372036854775807
  546. #else
  547. #define SSIZE_T_MAX 2147483647
  548. #endif
  549. #endif
  550. /*
  551. * Arg 2 type for gethostname in case it has not been defined in config file.
  552. */
  553. #ifndef GETHOSTNAME_TYPE_ARG2
  554. # ifdef USE_WINSOCK
  555. # define GETHOSTNAME_TYPE_ARG2 int
  556. # else
  557. # define GETHOSTNAME_TYPE_ARG2 size_t
  558. # endif
  559. #endif
  560. /* Below we define some functions. They should
  561. 4. set the SIGALRM signal timeout
  562. 5. set dir/file naming defines
  563. */
  564. #ifdef _WIN32
  565. # define DIR_CHAR "\\"
  566. #else /* _WIN32 */
  567. # ifdef MSDOS /* Watt-32 */
  568. # include <sys/ioctl.h>
  569. # define select(n,r,w,x,t) select_s(n,r,w,x,t)
  570. # define ioctl(x,y,z) ioctlsocket(x,y,(char *)(z))
  571. # include <tcp.h>
  572. # ifdef word
  573. # undef word
  574. # endif
  575. # ifdef byte
  576. # undef byte
  577. # endif
  578. # endif /* MSDOS */
  579. # ifdef __minix
  580. /* Minix 3 versions up to at least 3.1.3 are missing these prototypes */
  581. extern char *strtok_r(char *s, const char *delim, char **last);
  582. extern struct tm *gmtime_r(const time_t * const timep, struct tm *tmp);
  583. # endif
  584. # define DIR_CHAR "/"
  585. #endif /* _WIN32 */
  586. /* ---------------------------------------------------------------- */
  587. /* resolver specialty compile-time defines */
  588. /* CURLRES_* defines to use in the host*.c sources */
  589. /* ---------------------------------------------------------------- */
  590. /*
  591. * MSVC threads support requires a multi-threaded runtime library.
  592. * _beginthreadex() is not available in single-threaded ones.
  593. */
  594. #if defined(_MSC_VER) && !defined(_MT)
  595. # undef USE_THREADS_POSIX
  596. # undef USE_THREADS_WIN32
  597. #endif
  598. /*
  599. * Mutually exclusive CURLRES_* definitions.
  600. */
  601. #if defined(USE_IPV6) && defined(HAVE_GETADDRINFO)
  602. # define CURLRES_IPV6
  603. #elif defined(USE_IPV6) && (defined(_WIN32) || defined(__CYGWIN__))
  604. /* assume on Windows that IPv6 without getaddrinfo is a broken build */
  605. # error "Unexpected build: IPv6 is enabled but getaddrinfo was not found."
  606. #else
  607. # define CURLRES_IPV4
  608. #endif
  609. #ifdef USE_ARES
  610. # define CURLRES_ASYNCH
  611. # define CURLRES_ARES
  612. /* now undef the stock libc functions just to avoid them being used */
  613. # undef HAVE_GETADDRINFO
  614. # undef HAVE_FREEADDRINFO
  615. #elif defined(USE_THREADS_POSIX) || defined(USE_THREADS_WIN32)
  616. # define CURLRES_ASYNCH
  617. # define CURLRES_THREADED
  618. #else
  619. # define CURLRES_SYNCH
  620. #endif
  621. /* ---------------------------------------------------------------- */
  622. #if defined(HAVE_LIBIDN2) && defined(HAVE_IDN2_H) && \
  623. !defined(USE_WIN32_IDN) && !defined(USE_APPLE_IDN)
  624. /* The lib and header are present */
  625. #define USE_LIBIDN2
  626. #endif
  627. #if defined(USE_LIBIDN2) && (defined(USE_WIN32_IDN) || defined(USE_APPLE_IDN))
  628. #error "libidn2 cannot be enabled with WinIDN or AppleIDN, choose one."
  629. #endif
  630. #define LIBIDN_REQUIRED_VERSION "0.4.1"
  631. #if defined(USE_GNUTLS) || defined(USE_OPENSSL) || defined(USE_MBEDTLS) || \
  632. defined(USE_WOLFSSL) || defined(USE_SCHANNEL) || defined(USE_SECTRANSP) || \
  633. defined(USE_BEARSSL) || defined(USE_RUSTLS)
  634. #define USE_SSL /* SSL support has been enabled */
  635. #endif
  636. #if defined(USE_WOLFSSL) && defined(USE_GNUTLS)
  637. /* Avoid defining unprefixed wolfSSL SHA macros colliding with nettle ones */
  638. #define NO_OLD_WC_NAMES
  639. #endif
  640. /* Single point where USE_SPNEGO definition might be defined */
  641. #if !defined(CURL_DISABLE_NEGOTIATE_AUTH) && \
  642. (defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI))
  643. #define USE_SPNEGO
  644. #endif
  645. /* Single point where USE_KERBEROS5 definition might be defined */
  646. #if !defined(CURL_DISABLE_KERBEROS_AUTH) && \
  647. (defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI))
  648. #define USE_KERBEROS5
  649. #endif
  650. /* Single point where USE_NTLM definition might be defined */
  651. #if !defined(CURL_DISABLE_NTLM)
  652. # if defined(USE_OPENSSL) || defined(USE_MBEDTLS) || \
  653. defined(USE_GNUTLS) || defined(USE_SECTRANSP) || \
  654. defined(USE_OS400CRYPTO) || defined(USE_WIN32_CRYPTO) || \
  655. (defined(USE_WOLFSSL) && defined(HAVE_WOLFSSL_DES_ECB_ENCRYPT))
  656. # define USE_CURL_NTLM_CORE
  657. # endif
  658. # if defined(USE_CURL_NTLM_CORE) || defined(USE_WINDOWS_SSPI)
  659. # define USE_NTLM
  660. # endif
  661. #endif
  662. #ifdef CURL_WANTS_CA_BUNDLE_ENV
  663. #error "No longer supported. Set CURLOPT_CAINFO at runtime instead."
  664. #endif
  665. #if defined(USE_LIBSSH2) || defined(USE_LIBSSH) || defined(USE_WOLFSSH)
  666. #define USE_SSH
  667. #endif
  668. /*
  669. * Provide a mechanism to silence picky compilers, such as gcc 4.6+.
  670. * Parameters should of course normally not be unused, but for example when
  671. * we have multiple implementations of the same interface it may happen.
  672. */
  673. #if defined(__GNUC__) && ((__GNUC__ >= 3) || \
  674. ((__GNUC__ == 2) && defined(__GNUC_MINOR__) && (__GNUC_MINOR__ >= 7)))
  675. # define UNUSED_PARAM __attribute__((__unused__))
  676. # define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
  677. #elif defined(__IAR_SYSTEMS_ICC__)
  678. # define UNUSED_PARAM __attribute__((__unused__))
  679. # if (__VER__ >= 9040001)
  680. # define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
  681. # else
  682. # define WARN_UNUSED_RESULT
  683. # endif
  684. #else
  685. # define UNUSED_PARAM /* NOTHING */
  686. # define WARN_UNUSED_RESULT
  687. #endif
  688. /* noreturn attribute */
  689. #if !defined(CURL_NORETURN)
  690. #if (defined(__GNUC__) && (__GNUC__ >= 3)) || defined(__clang__) || \
  691. defined(__IAR_SYSTEMS_ICC__)
  692. # define CURL_NORETURN __attribute__((__noreturn__))
  693. #elif defined(_MSC_VER) && (_MSC_VER >= 1200)
  694. # define CURL_NORETURN __declspec(noreturn)
  695. #else
  696. # define CURL_NORETURN
  697. #endif
  698. #endif
  699. /* fallthrough attribute */
  700. #if !defined(FALLTHROUGH)
  701. #if (defined(__GNUC__) && __GNUC__ >= 7) || \
  702. (defined(__clang__) && __clang_major__ >= 10)
  703. # define FALLTHROUGH() __attribute__((fallthrough))
  704. #else
  705. # define FALLTHROUGH() do {} while (0)
  706. #endif
  707. #endif
  708. /*
  709. * Include macros and defines that should only be processed once.
  710. */
  711. #ifndef HEADER_CURL_SETUP_ONCE_H
  712. #include "curl_setup_once.h"
  713. #endif
  714. /*
  715. * Definition of our NOP statement Object-like macro
  716. */
  717. #ifndef Curl_nop_stmt
  718. # define Curl_nop_stmt do { } while(0)
  719. #endif
  720. /*
  721. * Ensure that Winsock and lwIP TCP/IP stacks are not mixed.
  722. */
  723. #if defined(__LWIP_OPT_H__) || defined(LWIP_HDR_OPT_H)
  724. # if defined(SOCKET) || defined(USE_WINSOCK)
  725. # error "Winsock and lwIP TCP/IP stack definitions shall not coexist!"
  726. # endif
  727. #endif
  728. /*
  729. * shutdown() flags for systems that do not define them
  730. */
  731. #ifndef SHUT_RD
  732. #define SHUT_RD 0x00
  733. #endif
  734. #ifndef SHUT_WR
  735. #define SHUT_WR 0x01
  736. #endif
  737. #ifndef SHUT_RDWR
  738. #define SHUT_RDWR 0x02
  739. #endif
  740. /* Define S_ISREG if not defined by system headers, e.g. MSVC */
  741. #if !defined(S_ISREG) && defined(S_IFMT) && defined(S_IFREG)
  742. #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  743. #endif
  744. /* Define S_ISDIR if not defined by system headers, e.g. MSVC */
  745. #if !defined(S_ISDIR) && defined(S_IFMT) && defined(S_IFDIR)
  746. #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  747. #endif
  748. /* In Windows the default file mode is text but an application can override it.
  749. Therefore we specify it explicitly. https://github.com/curl/curl/pull/258
  750. */
  751. #if defined(_WIN32) || defined(MSDOS)
  752. #define FOPEN_READTEXT "rt"
  753. #define FOPEN_WRITETEXT "wt"
  754. #define FOPEN_APPENDTEXT "at"
  755. #elif defined(__CYGWIN__)
  756. /* Cygwin has specific behavior we need to address when _WIN32 is not defined.
  757. https://cygwin.com/cygwin-ug-net/using-textbinary.html
  758. For write we want our output to have line endings of LF and be compatible with
  759. other Cygwin utilities. For read we want to handle input that may have line
  760. endings either CRLF or LF so 't' is appropriate.
  761. */
  762. #define FOPEN_READTEXT "rt"
  763. #define FOPEN_WRITETEXT "w"
  764. #define FOPEN_APPENDTEXT "a"
  765. #else
  766. #define FOPEN_READTEXT "r"
  767. #define FOPEN_WRITETEXT "w"
  768. #define FOPEN_APPENDTEXT "a"
  769. #endif
  770. /* for systems that do not detect this in configure */
  771. #ifndef CURL_SA_FAMILY_T
  772. # if defined(HAVE_SA_FAMILY_T)
  773. # define CURL_SA_FAMILY_T sa_family_t
  774. # elif defined(HAVE_ADDRESS_FAMILY)
  775. # define CURL_SA_FAMILY_T ADDRESS_FAMILY
  776. # else
  777. /* use a sensible default */
  778. # define CURL_SA_FAMILY_T unsigned short
  779. # endif
  780. #endif
  781. /* Some convenience macros to get the larger/smaller value out of two given.
  782. We prefix with CURL to prevent name collisions. */
  783. #define CURLMAX(x,y) ((x)>(y)?(x):(y))
  784. #define CURLMIN(x,y) ((x)<(y)?(x):(y))
  785. /* A convenience macro to provide both the string literal and the length of
  786. the string literal in one go, useful for functions that take "string,len"
  787. as their argument */
  788. #define STRCONST(x) x,sizeof(x)-1
  789. /* Some versions of the Android SDK is missing the declaration */
  790. #if defined(HAVE_GETPWUID_R) && defined(HAVE_DECL_GETPWUID_R_MISSING)
  791. struct passwd;
  792. int getpwuid_r(uid_t uid, struct passwd *pwd, char *buf,
  793. size_t buflen, struct passwd **result);
  794. #endif
  795. #ifdef UNITTESTS
  796. #define UNITTEST
  797. #else
  798. #define UNITTEST static
  799. #endif
  800. /* Hyper supports HTTP2 also, but Curl's integration with Hyper does not */
  801. #if defined(USE_NGHTTP2)
  802. #define USE_HTTP2
  803. #endif
  804. #if (defined(USE_NGTCP2) && defined(USE_NGHTTP3)) || \
  805. (defined(USE_OPENSSL_QUIC) && defined(USE_NGHTTP3)) || \
  806. defined(USE_QUICHE) || defined(USE_MSH3)
  807. #ifdef CURL_WITH_MULTI_SSL
  808. #error "Multi-SSL combined with QUIC is not supported"
  809. #endif
  810. #define USE_HTTP3
  811. #endif
  812. /* Certain Windows implementations are not aligned with what curl expects,
  813. so always use the local one on this platform. E.g. the mingw-w64
  814. implementation can return wrong results for non-ASCII inputs. */
  815. #if defined(HAVE_BASENAME) && defined(_WIN32)
  816. #undef HAVE_BASENAME
  817. #endif
  818. #if defined(USE_UNIX_SOCKETS) && defined(_WIN32)
  819. # if !defined(UNIX_PATH_MAX)
  820. /* Replicating logic present in afunix.h
  821. (distributed with newer Windows 10 SDK versions only) */
  822. # define UNIX_PATH_MAX 108
  823. /* !checksrc! disable TYPEDEFSTRUCT 1 */
  824. typedef struct sockaddr_un {
  825. ADDRESS_FAMILY sun_family;
  826. char sun_path[UNIX_PATH_MAX];
  827. } SOCKADDR_UN, *PSOCKADDR_UN;
  828. # define WIN32_SOCKADDR_UN
  829. # endif
  830. #endif
  831. /* OpenSSLv3 marks DES, MD5 and ENGINE functions deprecated but we have no
  832. replacements (yet) so tell the compiler to not warn for them. */
  833. #ifdef USE_OPENSSL
  834. #define OPENSSL_SUPPRESS_DEPRECATED
  835. #endif
  836. #if defined(inline)
  837. /* 'inline' is defined as macro and assumed to be correct */
  838. /* No need for 'inline' replacement */
  839. #elif defined(__cplusplus)
  840. /* The code is compiled with C++ compiler.
  841. C++ always supports 'inline'. */
  842. /* No need for 'inline' replacement */
  843. #elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901
  844. /* C99 (and later) supports 'inline' keyword */
  845. /* No need for 'inline' replacement */
  846. #elif defined(__GNUC__) && __GNUC__ >= 3
  847. /* GCC supports '__inline__' as an extension */
  848. # define inline __inline__
  849. #elif defined(_MSC_VER) && _MSC_VER >= 1400
  850. /* MSC supports '__inline' from VS 2005 (or even earlier) */
  851. # define inline __inline
  852. #else
  853. /* Probably 'inline' is not supported by compiler.
  854. Define to the empty string to be on the safe side. */
  855. # define inline /* empty */
  856. #endif
  857. #endif /* HEADER_CURL_SETUP_H */