curl_setup.h 28 KB

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