curl_setup.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805
  1. #ifndef HEADER_CURL_SETUP_H
  2. #define HEADER_CURL_SETUP_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 1998 - 2020, 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.haxx.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. ***************************************************************************/
  24. #if defined(BUILDING_LIBCURL) && !defined(CURL_NO_OLDIES)
  25. #define CURL_NO_OLDIES
  26. #endif
  27. /*
  28. * Disable Visual Studio warnings:
  29. * 4127 "conditional expression is constant"
  30. */
  31. #ifdef _MSC_VER
  32. #pragma warning(disable:4127)
  33. #endif
  34. /*
  35. * Define WIN32 when build target is Win32 API
  36. */
  37. #if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32) && \
  38. !defined(__SYMBIAN32__)
  39. #define WIN32
  40. #endif
  41. #ifdef WIN32
  42. /*
  43. * Don't include unneeded stuff in Windows headers to avoid compiler
  44. * warnings and macro clashes.
  45. * Make sure to define this macro before including any Windows headers.
  46. */
  47. # ifndef WIN32_LEAN_AND_MEAN
  48. # define WIN32_LEAN_AND_MEAN
  49. # endif
  50. # ifndef NOGDI
  51. # define NOGDI
  52. # endif
  53. #endif
  54. /*
  55. * Include configuration script results or hand-crafted
  56. * configuration file for platforms which lack config tool.
  57. */
  58. #ifdef HAVE_CONFIG_H
  59. #include "curl_config.h"
  60. #else /* HAVE_CONFIG_H */
  61. #ifdef _WIN32_WCE
  62. # include "config-win32ce.h"
  63. #else
  64. # ifdef WIN32
  65. # include "config-win32.h"
  66. # endif
  67. #endif
  68. #if defined(macintosh) && defined(__MRC__)
  69. # include "config-mac.h"
  70. #endif
  71. #ifdef __riscos__
  72. # include "config-riscos.h"
  73. #endif
  74. #ifdef __AMIGA__
  75. # include "config-amigaos.h"
  76. #endif
  77. #ifdef __SYMBIAN32__
  78. # include "config-symbian.h"
  79. #endif
  80. #ifdef __OS400__
  81. # include "config-os400.h"
  82. #endif
  83. #ifdef TPF
  84. # include "config-tpf.h"
  85. #endif
  86. #ifdef __VXWORKS__
  87. # include "config-vxworks.h"
  88. #endif
  89. #ifdef __PLAN9__
  90. # include "config-plan9.h"
  91. #endif
  92. #endif /* HAVE_CONFIG_H */
  93. /* ================================================================ */
  94. /* Definition of preprocessor macros/symbols which modify compiler */
  95. /* behavior or generated code characteristics must be done here, */
  96. /* as appropriate, before any system header file is included. It is */
  97. /* also possible to have them defined in the config file included */
  98. /* before this point. As a result of all this we frown inclusion of */
  99. /* system header files in our config files, avoid this at any cost. */
  100. /* ================================================================ */
  101. /*
  102. * AIX 4.3 and newer needs _THREAD_SAFE defined to build
  103. * proper reentrant code. Others may also need it.
  104. */
  105. #ifdef NEED_THREAD_SAFE
  106. # ifndef _THREAD_SAFE
  107. # define _THREAD_SAFE
  108. # endif
  109. #endif
  110. /*
  111. * Tru64 needs _REENTRANT set for a few function prototypes and
  112. * things to appear in the system header files. Unixware needs it
  113. * to build proper reentrant code. Others may also need it.
  114. */
  115. #ifdef NEED_REENTRANT
  116. # ifndef _REENTRANT
  117. # define _REENTRANT
  118. # endif
  119. #endif
  120. /* Solaris needs this to get a POSIX-conformant getpwuid_r */
  121. #if defined(sun) || defined(__sun)
  122. # ifndef _POSIX_PTHREAD_SEMANTICS
  123. # define _POSIX_PTHREAD_SEMANTICS 1
  124. # endif
  125. #endif
  126. /* ================================================================ */
  127. /* If you need to include a system header file for your platform, */
  128. /* please, do it beyond the point further indicated in this file. */
  129. /* ================================================================ */
  130. #include <curl/curl.h>
  131. #define CURL_SIZEOF_CURL_OFF_T SIZEOF_CURL_OFF_T
  132. /*
  133. * Disable other protocols when http is the only one desired.
  134. */
  135. #ifdef HTTP_ONLY
  136. # ifndef CURL_DISABLE_TFTP
  137. # define CURL_DISABLE_TFTP
  138. # endif
  139. # ifndef CURL_DISABLE_FTP
  140. # define CURL_DISABLE_FTP
  141. # endif
  142. # ifndef CURL_DISABLE_LDAP
  143. # define CURL_DISABLE_LDAP
  144. # endif
  145. # ifndef CURL_DISABLE_TELNET
  146. # define CURL_DISABLE_TELNET
  147. # endif
  148. # ifndef CURL_DISABLE_DICT
  149. # define CURL_DISABLE_DICT
  150. # endif
  151. # ifndef CURL_DISABLE_FILE
  152. # define CURL_DISABLE_FILE
  153. # endif
  154. # ifndef CURL_DISABLE_RTSP
  155. # define CURL_DISABLE_RTSP
  156. # endif
  157. # ifndef CURL_DISABLE_POP3
  158. # define CURL_DISABLE_POP3
  159. # endif
  160. # ifndef CURL_DISABLE_IMAP
  161. # define CURL_DISABLE_IMAP
  162. # endif
  163. # ifndef CURL_DISABLE_SMTP
  164. # define CURL_DISABLE_SMTP
  165. # endif
  166. # ifndef CURL_DISABLE_GOPHER
  167. # define CURL_DISABLE_GOPHER
  168. # endif
  169. # ifndef CURL_DISABLE_SMB
  170. # define CURL_DISABLE_SMB
  171. # endif
  172. #endif
  173. /*
  174. * When http is disabled rtsp is not supported.
  175. */
  176. #if defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_RTSP)
  177. # define CURL_DISABLE_RTSP
  178. #endif
  179. /* ================================================================ */
  180. /* No system header file shall be included in this file before this */
  181. /* point. The only allowed ones are those included from curl/system.h */
  182. /* ================================================================ */
  183. /*
  184. * OS/400 setup file includes some system headers.
  185. */
  186. #ifdef __OS400__
  187. # include "setup-os400.h"
  188. #endif
  189. /*
  190. * VMS setup file includes some system headers.
  191. */
  192. #ifdef __VMS
  193. # include "setup-vms.h"
  194. #endif
  195. /*
  196. * Windows setup file includes some system headers.
  197. */
  198. #ifdef HAVE_WINDOWS_H
  199. # include "setup-win32.h"
  200. #endif
  201. /*
  202. * Use getaddrinfo to resolve the IPv4 address literal. If the current network
  203. * interface doesn't support IPv4, but supports IPv6, NAT64, and DNS64,
  204. * performing this task will result in a synthesized IPv6 address.
  205. */
  206. #ifdef __APPLE__
  207. #define USE_RESOLVE_ON_IPS 1
  208. #endif
  209. #ifdef USE_LWIPSOCK
  210. # include <lwip/init.h>
  211. # include <lwip/sockets.h>
  212. # include <lwip/netdb.h>
  213. #endif
  214. #ifdef HAVE_EXTRA_STRICMP_H
  215. # include <extra/stricmp.h>
  216. #endif
  217. #ifdef HAVE_EXTRA_STRDUP_H
  218. # include <extra/strdup.h>
  219. #endif
  220. #ifdef TPF
  221. # include <strings.h> /* for bzero, strcasecmp, and strncasecmp */
  222. # include <string.h> /* for strcpy and strlen */
  223. # include <stdlib.h> /* for rand and srand */
  224. # include <sys/socket.h> /* for select and ioctl*/
  225. # include <netdb.h> /* for in_addr_t definition */
  226. # include <tpf/sysapi.h> /* for tpf_process_signals */
  227. /* change which select is used for libcurl */
  228. # define select(a,b,c,d,e) tpf_select_libcurl(a,b,c,d,e)
  229. #endif
  230. #ifdef __VXWORKS__
  231. # include <sockLib.h> /* for generic BSD socket functions */
  232. # include <ioLib.h> /* for basic I/O interface functions */
  233. #endif
  234. #ifdef __AMIGA__
  235. # include <exec/types.h>
  236. # include <exec/execbase.h>
  237. # include <proto/exec.h>
  238. # include <proto/dos.h>
  239. # ifdef HAVE_PROTO_BSDSOCKET_H
  240. # include <proto/bsdsocket.h> /* ensure bsdsocket.library use */
  241. # define select(a,b,c,d,e) WaitSelect(a,b,c,d,e,0)
  242. # endif
  243. #endif
  244. #include <stdio.h>
  245. #ifdef HAVE_ASSERT_H
  246. #include <assert.h>
  247. #endif
  248. #ifdef __TANDEM /* for nsr-tandem-nsk systems */
  249. #include <floss.h>
  250. #endif
  251. #ifndef STDC_HEADERS /* no standard C headers! */
  252. #include <curl/stdcheaders.h>
  253. #endif
  254. #ifdef __POCC__
  255. # include <sys/types.h>
  256. # include <unistd.h>
  257. # define sys_nerr EILSEQ
  258. #endif
  259. /*
  260. * Salford-C kludge section (mostly borrowed from wxWidgets).
  261. */
  262. #ifdef __SALFORDC__
  263. #pragma suppress 353 /* Possible nested comments */
  264. #pragma suppress 593 /* Define not used */
  265. #pragma suppress 61 /* enum has no name */
  266. #pragma suppress 106 /* unnamed, unused parameter */
  267. #include <clib.h>
  268. #endif
  269. /*
  270. * Large file (>2Gb) support using WIN32 functions.
  271. */
  272. #ifdef USE_WIN32_LARGE_FILES
  273. # include <io.h>
  274. # include <sys/types.h>
  275. # include <sys/stat.h>
  276. # undef lseek
  277. # define lseek(fdes,offset,whence) _lseeki64(fdes, offset, whence)
  278. # undef fstat
  279. # define fstat(fdes,stp) _fstati64(fdes, stp)
  280. # undef stat
  281. # define stat(fname,stp) curlx_win32_stat(fname, stp)
  282. # define struct_stat struct _stati64
  283. # define LSEEK_ERROR (__int64)-1
  284. # define fopen(fname,mode) curlx_win32_fopen(fname, mode)
  285. # define access(fname,mode) curlx_win32_access(fname, mode)
  286. int curlx_win32_stat(const char *path, struct_stat *buffer);
  287. FILE *curlx_win32_fopen(const char *filename, const char *mode);
  288. int curlx_win32_access(const char *path, int mode);
  289. #endif
  290. /*
  291. * Small file (<2Gb) support using WIN32 functions.
  292. */
  293. #ifdef USE_WIN32_SMALL_FILES
  294. # include <io.h>
  295. # include <sys/types.h>
  296. # include <sys/stat.h>
  297. # ifndef _WIN32_WCE
  298. # undef lseek
  299. # define lseek(fdes,offset,whence) _lseek(fdes, (long)offset, whence)
  300. # define fstat(fdes,stp) _fstat(fdes, stp)
  301. # define stat(fname,stp) curlx_win32_stat(fname, stp)
  302. # define struct_stat struct _stat
  303. # define fopen(fname,mode) curlx_win32_fopen(fname, mode)
  304. # define access(fname,mode) curlx_win32_access(fname, mode)
  305. int curlx_win32_stat(const char *path, struct_stat *buffer);
  306. FILE *curlx_win32_fopen(const char *filename, const char *mode);
  307. int curlx_win32_access(const char *path, int mode);
  308. # endif
  309. # define LSEEK_ERROR (long)-1
  310. #endif
  311. #ifndef struct_stat
  312. # define struct_stat struct stat
  313. #endif
  314. #ifndef LSEEK_ERROR
  315. # define LSEEK_ERROR (off_t)-1
  316. #endif
  317. #ifndef SIZEOF_TIME_T
  318. /* assume default size of time_t to be 32 bit */
  319. #define SIZEOF_TIME_T 4
  320. #endif
  321. /*
  322. * Default sizeof(off_t) in case it hasn't been defined in config file.
  323. */
  324. #ifndef SIZEOF_OFF_T
  325. # if defined(__VMS) && !defined(__VAX)
  326. # if defined(_LARGEFILE)
  327. # define SIZEOF_OFF_T 8
  328. # endif
  329. # elif defined(__OS400__) && defined(__ILEC400__)
  330. # if defined(_LARGE_FILES)
  331. # define SIZEOF_OFF_T 8
  332. # endif
  333. # elif defined(__MVS__) && defined(__IBMC__)
  334. # if defined(_LP64) || defined(_LARGE_FILES)
  335. # define SIZEOF_OFF_T 8
  336. # endif
  337. # elif defined(__370__) && defined(__IBMC__)
  338. # if defined(_LP64) || defined(_LARGE_FILES)
  339. # define SIZEOF_OFF_T 8
  340. # endif
  341. # endif
  342. # ifndef SIZEOF_OFF_T
  343. # define SIZEOF_OFF_T 4
  344. # endif
  345. #endif
  346. #if (SIZEOF_CURL_OFF_T == 4)
  347. # define CURL_OFF_T_MAX CURL_OFF_T_C(0x7FFFFFFF)
  348. #else
  349. /* assume CURL_SIZEOF_CURL_OFF_T == 8 */
  350. # define CURL_OFF_T_MAX CURL_OFF_T_C(0x7FFFFFFFFFFFFFFF)
  351. #endif
  352. #define CURL_OFF_T_MIN (-CURL_OFF_T_MAX - CURL_OFF_T_C(1))
  353. #if (SIZEOF_TIME_T == 4)
  354. # ifdef HAVE_TIME_T_UNSIGNED
  355. # define TIME_T_MAX UINT_MAX
  356. # define TIME_T_MIN 0
  357. # else
  358. # define TIME_T_MAX INT_MAX
  359. # define TIME_T_MIN INT_MIN
  360. # endif
  361. #else
  362. # ifdef HAVE_TIME_T_UNSIGNED
  363. # define TIME_T_MAX 0xFFFFFFFFFFFFFFFF
  364. # define TIME_T_MIN 0
  365. # else
  366. # define TIME_T_MAX 0x7FFFFFFFFFFFFFFF
  367. # define TIME_T_MIN (-TIME_T_MAX - 1)
  368. # endif
  369. #endif
  370. #ifndef SIZE_T_MAX
  371. /* some limits.h headers have this defined, some don't */
  372. #if defined(SIZEOF_SIZE_T) && (SIZEOF_SIZE_T > 4)
  373. #define SIZE_T_MAX 18446744073709551615U
  374. #else
  375. #define SIZE_T_MAX 4294967295U
  376. #endif
  377. #endif
  378. /*
  379. * Arg 2 type for gethostname in case it hasn't been defined in config file.
  380. */
  381. #ifndef GETHOSTNAME_TYPE_ARG2
  382. # ifdef USE_WINSOCK
  383. # define GETHOSTNAME_TYPE_ARG2 int
  384. # else
  385. # define GETHOSTNAME_TYPE_ARG2 size_t
  386. # endif
  387. #endif
  388. /* Below we define some functions. They should
  389. 4. set the SIGALRM signal timeout
  390. 5. set dir/file naming defines
  391. */
  392. #ifdef WIN32
  393. # define DIR_CHAR "\\"
  394. #else /* WIN32 */
  395. # ifdef MSDOS /* Watt-32 */
  396. # include <sys/ioctl.h>
  397. # define select(n,r,w,x,t) select_s(n,r,w,x,t)
  398. # define ioctl(x,y,z) ioctlsocket(x,y,(char *)(z))
  399. # include <tcp.h>
  400. # ifdef word
  401. # undef word
  402. # endif
  403. # ifdef byte
  404. # undef byte
  405. # endif
  406. # endif /* MSDOS */
  407. # ifdef __minix
  408. /* Minix 3 versions up to at least 3.1.3 are missing these prototypes */
  409. extern char *strtok_r(char *s, const char *delim, char **last);
  410. extern struct tm *gmtime_r(const time_t * const timep, struct tm *tmp);
  411. # endif
  412. # define DIR_CHAR "/"
  413. # ifndef fileno /* sunos 4 have this as a macro! */
  414. int fileno(FILE *stream);
  415. # endif
  416. #endif /* WIN32 */
  417. /*
  418. * msvc 6.0 requires PSDK in order to have INET6_ADDRSTRLEN
  419. * defined in ws2tcpip.h as well as to provide IPv6 support.
  420. * Does not apply if lwIP is used.
  421. */
  422. #if defined(_MSC_VER) && !defined(__POCC__) && !defined(USE_LWIPSOCK)
  423. # if !defined(HAVE_WS2TCPIP_H) || \
  424. ((_MSC_VER < 1300) && !defined(INET6_ADDRSTRLEN))
  425. # undef HAVE_GETADDRINFO_THREADSAFE
  426. # undef HAVE_FREEADDRINFO
  427. # undef HAVE_GETADDRINFO
  428. # undef HAVE_GETNAMEINFO
  429. # undef ENABLE_IPV6
  430. # endif
  431. #endif
  432. /* ---------------------------------------------------------------- */
  433. /* resolver specialty compile-time defines */
  434. /* CURLRES_* defines to use in the host*.c sources */
  435. /* ---------------------------------------------------------------- */
  436. /*
  437. * lcc-win32 doesn't have _beginthreadex(), lacks threads support.
  438. */
  439. #if defined(__LCC__) && defined(WIN32)
  440. # undef USE_THREADS_POSIX
  441. # undef USE_THREADS_WIN32
  442. #endif
  443. /*
  444. * MSVC threads support requires a multi-threaded runtime library.
  445. * _beginthreadex() is not available in single-threaded ones.
  446. */
  447. #if defined(_MSC_VER) && !defined(__POCC__) && !defined(_MT)
  448. # undef USE_THREADS_POSIX
  449. # undef USE_THREADS_WIN32
  450. #endif
  451. /*
  452. * Mutually exclusive CURLRES_* definitions.
  453. */
  454. #if defined(ENABLE_IPV6) && defined(HAVE_GETADDRINFO)
  455. # define CURLRES_IPV6
  456. #else
  457. # define CURLRES_IPV4
  458. #endif
  459. #ifdef USE_ARES
  460. # define CURLRES_ASYNCH
  461. # define CURLRES_ARES
  462. /* now undef the stock libc functions just to avoid them being used */
  463. # undef HAVE_GETADDRINFO
  464. # undef HAVE_FREEADDRINFO
  465. # undef HAVE_GETHOSTBYNAME
  466. #elif defined(USE_THREADS_POSIX) || defined(USE_THREADS_WIN32)
  467. # define CURLRES_ASYNCH
  468. # define CURLRES_THREADED
  469. #else
  470. # define CURLRES_SYNCH
  471. #endif
  472. /* ---------------------------------------------------------------- */
  473. /*
  474. * When using WINSOCK, TELNET protocol requires WINSOCK2 API.
  475. */
  476. #if defined(USE_WINSOCK) && (USE_WINSOCK != 2)
  477. # define CURL_DISABLE_TELNET 1
  478. #endif
  479. /*
  480. * msvc 6.0 does not have struct sockaddr_storage and
  481. * does not define IPPROTO_ESP in winsock2.h. But both
  482. * are available if PSDK is properly installed.
  483. */
  484. #if defined(_MSC_VER) && !defined(__POCC__)
  485. # if !defined(HAVE_WINSOCK2_H) || ((_MSC_VER < 1300) && !defined(IPPROTO_ESP))
  486. # undef HAVE_STRUCT_SOCKADDR_STORAGE
  487. # endif
  488. #endif
  489. /*
  490. * Intentionally fail to build when using msvc 6.0 without PSDK installed.
  491. * The brave of heart can circumvent this, defining ALLOW_MSVC6_WITHOUT_PSDK
  492. * in lib/config-win32.h although absolutely discouraged and unsupported.
  493. */
  494. #if defined(_MSC_VER) && !defined(__POCC__)
  495. # if !defined(HAVE_WINDOWS_H) || ((_MSC_VER < 1300) && !defined(_FILETIME_))
  496. # if !defined(ALLOW_MSVC6_WITHOUT_PSDK)
  497. # error MSVC 6.0 requires "February 2003 Platform SDK" a.k.a. \
  498. "Windows Server 2003 PSDK"
  499. # else
  500. # define CURL_DISABLE_LDAP 1
  501. # endif
  502. # endif
  503. #endif
  504. #ifdef NETWARE
  505. int netware_init(void);
  506. #ifndef __NOVELL_LIBC__
  507. #include <sys/bsdskt.h>
  508. #include <sys/timeval.h>
  509. #endif
  510. #endif
  511. #if defined(HAVE_LIBIDN2) && defined(HAVE_IDN2_H) && !defined(USE_WIN32_IDN)
  512. /* The lib and header are present */
  513. #define USE_LIBIDN2
  514. #endif
  515. #if defined(USE_LIBIDN2) && defined(USE_WIN32_IDN)
  516. #error "Both libidn2 and WinIDN are enabled, choose one."
  517. #endif
  518. #define LIBIDN_REQUIRED_VERSION "0.4.1"
  519. #if defined(USE_GNUTLS) || defined(USE_OPENSSL) || defined(USE_NSS) || \
  520. defined(USE_MBEDTLS) || \
  521. defined(USE_WOLFSSL) || defined(USE_SCHANNEL) || \
  522. defined(USE_SECTRANSP) || defined(USE_GSKIT) || defined(USE_MESALINK) || \
  523. defined(USE_BEARSSL)
  524. #define USE_SSL /* SSL support has been enabled */
  525. #endif
  526. /* Single point where USE_SPNEGO definition might be defined */
  527. #if !defined(CURL_DISABLE_CRYPTO_AUTH) && \
  528. (defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI))
  529. #define USE_SPNEGO
  530. #endif
  531. /* Single point where USE_KERBEROS5 definition might be defined */
  532. #if !defined(CURL_DISABLE_CRYPTO_AUTH) && \
  533. (defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI))
  534. #define USE_KERBEROS5
  535. #endif
  536. /* Single point where USE_NTLM definition might be defined */
  537. #if !defined(CURL_DISABLE_NTLM) && !defined(CURL_DISABLE_CRYPTO_AUTH)
  538. #if defined(USE_OPENSSL) || defined(USE_WINDOWS_SSPI) || \
  539. defined(USE_GNUTLS) || defined(USE_NSS) || defined(USE_SECTRANSP) || \
  540. defined(USE_OS400CRYPTO) || defined(USE_WIN32_CRYPTO) || \
  541. defined(USE_MBEDTLS) || \
  542. (defined(USE_WOLFSSL) && defined(HAVE_WOLFSSL_DES_SET_ODD_PARITY))
  543. #define USE_NTLM
  544. # if defined(USE_MBEDTLS)
  545. /* Get definition of MBEDTLS_MD4_C */
  546. # include <mbedtls/md4.h>
  547. # endif
  548. #endif
  549. #endif
  550. #ifdef CURL_WANTS_CA_BUNDLE_ENV
  551. #error "No longer supported. Set CURLOPT_CAINFO at runtime instead."
  552. #endif
  553. #if defined(USE_LIBSSH2) || defined(USE_LIBSSH) || defined(USE_WOLFSSH)
  554. #define USE_SSH
  555. #endif
  556. /*
  557. * Provide a mechanism to silence picky compilers, such as gcc 4.6+.
  558. * Parameters should of course normally not be unused, but for example when
  559. * we have multiple implementations of the same interface it may happen.
  560. */
  561. #if defined(__GNUC__) && ((__GNUC__ >= 3) || \
  562. ((__GNUC__ == 2) && defined(__GNUC_MINOR__) && (__GNUC_MINOR__ >= 7)))
  563. # define UNUSED_PARAM __attribute__((__unused__))
  564. # define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
  565. #else
  566. # define UNUSED_PARAM /*NOTHING*/
  567. # define WARN_UNUSED_RESULT
  568. #endif
  569. /*
  570. * Include macros and defines that should only be processed once.
  571. */
  572. #ifndef HEADER_CURL_SETUP_ONCE_H
  573. #include "curl_setup_once.h"
  574. #endif
  575. /*
  576. * Definition of our NOP statement Object-like macro
  577. */
  578. #ifndef Curl_nop_stmt
  579. # define Curl_nop_stmt do { } while(0)
  580. #endif
  581. /*
  582. * Ensure that Winsock and lwIP TCP/IP stacks are not mixed.
  583. */
  584. #if defined(__LWIP_OPT_H__) || defined(LWIP_HDR_OPT_H)
  585. # if defined(SOCKET) || \
  586. defined(USE_WINSOCK) || \
  587. defined(HAVE_WINSOCK_H) || \
  588. defined(HAVE_WINSOCK2_H) || \
  589. defined(HAVE_WS2TCPIP_H)
  590. # error "Winsock and lwIP TCP/IP stack definitions shall not coexist!"
  591. # endif
  592. #endif
  593. /*
  594. * Portable symbolic names for Winsock shutdown() mode flags.
  595. */
  596. #ifdef USE_WINSOCK
  597. # define SHUT_RD 0x00
  598. # define SHUT_WR 0x01
  599. # define SHUT_RDWR 0x02
  600. #endif
  601. /* Define S_ISREG if not defined by system headers, f.e. MSVC */
  602. #if !defined(S_ISREG) && defined(S_IFMT) && defined(S_IFREG)
  603. #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  604. #endif
  605. /* Define S_ISDIR if not defined by system headers, f.e. MSVC */
  606. #if !defined(S_ISDIR) && defined(S_IFMT) && defined(S_IFDIR)
  607. #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  608. #endif
  609. /* In Windows the default file mode is text but an application can override it.
  610. Therefore we specify it explicitly. https://github.com/curl/curl/pull/258
  611. */
  612. #if defined(WIN32) || defined(MSDOS)
  613. #define FOPEN_READTEXT "rt"
  614. #define FOPEN_WRITETEXT "wt"
  615. #define FOPEN_APPENDTEXT "at"
  616. #elif defined(__CYGWIN__)
  617. /* Cygwin has specific behavior we need to address when WIN32 is not defined.
  618. https://cygwin.com/cygwin-ug-net/using-textbinary.html
  619. For write we want our output to have line endings of LF and be compatible with
  620. other Cygwin utilities. For read we want to handle input that may have line
  621. endings either CRLF or LF so 't' is appropriate.
  622. */
  623. #define FOPEN_READTEXT "rt"
  624. #define FOPEN_WRITETEXT "w"
  625. #define FOPEN_APPENDTEXT "a"
  626. #else
  627. #define FOPEN_READTEXT "r"
  628. #define FOPEN_WRITETEXT "w"
  629. #define FOPEN_APPENDTEXT "a"
  630. #endif
  631. /* WinSock destroys recv() buffer when send() failed.
  632. * Enabled automatically for Windows and for Cygwin as Cygwin sockets are
  633. * wrappers for WinSock sockets. https://github.com/curl/curl/issues/657
  634. * Define DONT_USE_RECV_BEFORE_SEND_WORKAROUND to force disable workaround.
  635. */
  636. #if !defined(DONT_USE_RECV_BEFORE_SEND_WORKAROUND)
  637. # if defined(WIN32) || defined(__CYGWIN__)
  638. # define USE_RECV_BEFORE_SEND_WORKAROUND
  639. # endif
  640. #else /* DONT_USE_RECV_BEFORE_SEND_WORKAROUND */
  641. # ifdef USE_RECV_BEFORE_SEND_WORKAROUND
  642. # undef USE_RECV_BEFORE_SEND_WORKAROUND
  643. # endif
  644. #endif /* DONT_USE_RECV_BEFORE_SEND_WORKAROUND */
  645. /* Detect Windows App environment which has a restricted access
  646. * to the Win32 APIs. */
  647. # if (defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0602)) || \
  648. defined(WINAPI_FAMILY)
  649. # include <winapifamily.h>
  650. # if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) && \
  651. !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
  652. # define CURL_WINDOWS_APP
  653. # endif
  654. # endif
  655. /* for systems that don't detect this in configure, use a sensible default */
  656. #ifndef CURL_SA_FAMILY_T
  657. #define CURL_SA_FAMILY_T unsigned short
  658. #endif
  659. /* Some convenience macros to get the larger/smaller value out of two given.
  660. We prefix with CURL to prevent name collisions. */
  661. #define CURLMAX(x,y) ((x)>(y)?(x):(y))
  662. #define CURLMIN(x,y) ((x)<(y)?(x):(y))
  663. /* Some versions of the Android SDK is missing the declaration */
  664. #if defined(HAVE_GETPWUID_R) && defined(HAVE_DECL_GETPWUID_R_MISSING)
  665. struct passwd;
  666. int getpwuid_r(uid_t uid, struct passwd *pwd, char *buf,
  667. size_t buflen, struct passwd **result);
  668. #endif
  669. #ifdef DEBUGBUILD
  670. #define UNITTEST
  671. #else
  672. #define UNITTEST static
  673. #endif
  674. #if defined(USE_NGTCP2) || defined(USE_QUICHE)
  675. #define ENABLE_QUIC
  676. #endif
  677. #endif /* HEADER_CURL_SETUP_H */