curl_setup_once.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. #ifndef HEADER_CURL_SETUP_ONCE_H
  2. #define HEADER_CURL_SETUP_ONCE_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. /*
  25. * Inclusion of common header files.
  26. */
  27. #include <stdio.h>
  28. #include <stdlib.h>
  29. #include <string.h>
  30. #include <stdarg.h>
  31. #include <ctype.h>
  32. #ifdef HAVE_ERRNO_H
  33. #include <errno.h>
  34. #endif
  35. #ifdef HAVE_SYS_TYPES_H
  36. #include <sys/types.h>
  37. #endif
  38. #ifdef NEED_MALLOC_H
  39. #include <malloc.h>
  40. #endif
  41. #ifdef NEED_MEMORY_H
  42. #include <memory.h>
  43. #endif
  44. #ifdef HAVE_SYS_STAT_H
  45. #include <sys/stat.h>
  46. #endif
  47. #ifdef HAVE_SYS_TIME_H
  48. #include <sys/time.h>
  49. #ifdef TIME_WITH_SYS_TIME
  50. #include <time.h>
  51. #endif
  52. #else
  53. #ifdef HAVE_TIME_H
  54. #include <time.h>
  55. #endif
  56. #endif
  57. #ifdef WIN32
  58. #include <io.h>
  59. #include <fcntl.h>
  60. #endif
  61. #if defined(HAVE_STDBOOL_H) && defined(HAVE_BOOL_T)
  62. #include <stdbool.h>
  63. #endif
  64. #ifdef HAVE_UNISTD_H
  65. #include <unistd.h>
  66. #endif
  67. #ifdef __hpux
  68. # if !defined(_XOPEN_SOURCE_EXTENDED) || defined(_KERNEL)
  69. # ifdef _APP32_64BIT_OFF_T
  70. # define OLD_APP32_64BIT_OFF_T _APP32_64BIT_OFF_T
  71. # undef _APP32_64BIT_OFF_T
  72. # else
  73. # undef OLD_APP32_64BIT_OFF_T
  74. # endif
  75. # endif
  76. #endif
  77. #ifdef HAVE_SYS_SOCKET_H
  78. #include <sys/socket.h>
  79. #endif
  80. #ifdef __hpux
  81. # if !defined(_XOPEN_SOURCE_EXTENDED) || defined(_KERNEL)
  82. # ifdef OLD_APP32_64BIT_OFF_T
  83. # define _APP32_64BIT_OFF_T OLD_APP32_64BIT_OFF_T
  84. # undef OLD_APP32_64BIT_OFF_T
  85. # endif
  86. # endif
  87. #endif
  88. /*
  89. * Definition of timeval struct for platforms that don't have it.
  90. */
  91. #ifndef HAVE_STRUCT_TIMEVAL
  92. struct timeval {
  93. long tv_sec;
  94. long tv_usec;
  95. };
  96. #endif
  97. /*
  98. * If we have the MSG_NOSIGNAL define, make sure we use
  99. * it as the fourth argument of function send()
  100. */
  101. #ifdef HAVE_MSG_NOSIGNAL
  102. #define SEND_4TH_ARG MSG_NOSIGNAL
  103. #else
  104. #define SEND_4TH_ARG 0
  105. #endif
  106. #if defined(__minix)
  107. /* Minix doesn't support recv on TCP sockets */
  108. #define sread(x,y,z) (ssize_t)read((RECV_TYPE_ARG1)(x), \
  109. (RECV_TYPE_ARG2)(y), \
  110. (RECV_TYPE_ARG3)(z))
  111. #elif defined(FreeRTOS)
  112. #define sread(a,b,c) FreeRTOS_recv(a,b,c,0)
  113. #elif defined(HAVE_RECV)
  114. /*
  115. * The definitions for the return type and arguments types
  116. * of functions recv() and send() belong and come from the
  117. * configuration file. Do not define them in any other place.
  118. *
  119. * HAVE_RECV is defined if you have a function named recv()
  120. * which is used to read incoming data from sockets. If your
  121. * function has another name then don't define HAVE_RECV.
  122. *
  123. * If HAVE_RECV is defined then RECV_TYPE_ARG1, RECV_TYPE_ARG2,
  124. * RECV_TYPE_ARG3, RECV_TYPE_ARG4 and RECV_TYPE_RETV must also
  125. * be defined.
  126. *
  127. * HAVE_SEND is defined if you have a function named send()
  128. * which is used to write outgoing data on a connected socket.
  129. * If yours has another name then don't define HAVE_SEND.
  130. *
  131. * If HAVE_SEND is defined then SEND_TYPE_ARG1, SEND_QUAL_ARG2,
  132. * SEND_TYPE_ARG2, SEND_TYPE_ARG3, SEND_TYPE_ARG4 and
  133. * SEND_TYPE_RETV must also be defined.
  134. */
  135. #if !defined(RECV_TYPE_ARG1) || \
  136. !defined(RECV_TYPE_ARG2) || \
  137. !defined(RECV_TYPE_ARG3) || \
  138. !defined(RECV_TYPE_ARG4) || \
  139. !defined(RECV_TYPE_RETV)
  140. /* */
  141. Error Missing_definition_of_return_and_arguments_types_of_recv
  142. /* */
  143. #else
  144. #define sread(x,y,z) (ssize_t)recv((RECV_TYPE_ARG1)(x), \
  145. (RECV_TYPE_ARG2)(y), \
  146. (RECV_TYPE_ARG3)(z), \
  147. (RECV_TYPE_ARG4)(0))
  148. #endif
  149. #else /* HAVE_RECV */
  150. #ifndef sread
  151. /* */
  152. Error Missing_definition_of_macro_sread
  153. /* */
  154. #endif
  155. #endif /* HAVE_RECV */
  156. #if defined(__minix)
  157. /* Minix doesn't support send on TCP sockets */
  158. #define swrite(x,y,z) (ssize_t)write((SEND_TYPE_ARG1)(x), \
  159. (SEND_TYPE_ARG2)(y), \
  160. (SEND_TYPE_ARG3)(z))
  161. #elif defined(HAVE_SEND)
  162. #if !defined(SEND_TYPE_ARG1) || \
  163. !defined(SEND_QUAL_ARG2) || \
  164. !defined(SEND_TYPE_ARG2) || \
  165. !defined(SEND_TYPE_ARG3) || \
  166. !defined(SEND_TYPE_ARG4) || \
  167. !defined(SEND_TYPE_RETV)
  168. /* */
  169. Error Missing_definition_of_return_and_arguments_types_of_send
  170. /* */
  171. #elif defined(FreeRTOS)
  172. /* The flags argument (4) marked as 'Not currently used' */
  173. #define swrite(a,b,c) FreeRTOS_send(a,b,c,0)
  174. #else
  175. #define swrite(x,y,z) (ssize_t)send((SEND_TYPE_ARG1)(x), \
  176. (SEND_QUAL_ARG2 SEND_TYPE_ARG2)(y), \
  177. (SEND_TYPE_ARG3)(z), \
  178. (SEND_TYPE_ARG4)(SEND_4TH_ARG))
  179. #endif
  180. #else /* HAVE_SEND */
  181. #ifndef swrite
  182. /* */
  183. Error Missing_definition_of_macro_swrite
  184. /* */
  185. #endif
  186. #endif /* HAVE_SEND */
  187. #if 0
  188. #if defined(HAVE_RECVFROM)
  189. /*
  190. * Currently recvfrom is only used on udp sockets.
  191. */
  192. #if !defined(RECVFROM_TYPE_ARG1) || \
  193. !defined(RECVFROM_TYPE_ARG2) || \
  194. !defined(RECVFROM_TYPE_ARG3) || \
  195. !defined(RECVFROM_TYPE_ARG4) || \
  196. !defined(RECVFROM_TYPE_ARG5) || \
  197. !defined(RECVFROM_TYPE_ARG6) || \
  198. !defined(RECVFROM_TYPE_RETV)
  199. /* */
  200. Error Missing_definition_of_return_and_arguments_types_of_recvfrom
  201. /* */
  202. #else
  203. #define sreadfrom(s,b,bl,f,fl) (ssize_t)recvfrom((RECVFROM_TYPE_ARG1) (s), \
  204. (RECVFROM_TYPE_ARG2 *)(b), \
  205. (RECVFROM_TYPE_ARG3) (bl), \
  206. (RECVFROM_TYPE_ARG4) (0), \
  207. (RECVFROM_TYPE_ARG5 *)(f), \
  208. (RECVFROM_TYPE_ARG6 *)(fl))
  209. #endif
  210. #else /* HAVE_RECVFROM */
  211. #ifndef sreadfrom
  212. /* */
  213. Error Missing_definition_of_macro_sreadfrom
  214. /* */
  215. #endif
  216. #endif /* HAVE_RECVFROM */
  217. #ifdef RECVFROM_TYPE_ARG6_IS_VOID
  218. # define RECVFROM_ARG6_T int
  219. #else
  220. # define RECVFROM_ARG6_T RECVFROM_TYPE_ARG6
  221. #endif
  222. #endif /* if 0 */
  223. /*
  224. * Function-like macro definition used to close a socket.
  225. */
  226. #if defined(HAVE_CLOSESOCKET)
  227. # define sclose(x) closesocket((x))
  228. #elif defined(HAVE_CLOSESOCKET_CAMEL)
  229. # define sclose(x) CloseSocket((x))
  230. #elif defined(HAVE_CLOSE_S)
  231. # define sclose(x) close_s((x))
  232. #elif defined(USE_LWIPSOCK)
  233. # define sclose(x) lwip_close((x))
  234. #elif defined(FreeRTOS)
  235. # define sclose(x) FreeRTOS_closesocket((x))
  236. #else
  237. # define sclose(x) close((x))
  238. #endif
  239. /*
  240. * Stack-independent version of fcntl() on sockets:
  241. */
  242. #if defined(USE_LWIPSOCK)
  243. # define sfcntl lwip_fcntl
  244. #else
  245. # define sfcntl fcntl
  246. #endif
  247. #define TOLOWER(x) (tolower((int) ((unsigned char)x)))
  248. /*
  249. * 'bool' stuff compatible with HP-UX headers.
  250. */
  251. #if defined(__hpux) && !defined(HAVE_BOOL_T)
  252. typedef int bool;
  253. # define false 0
  254. # define true 1
  255. # define HAVE_BOOL_T
  256. #endif
  257. /*
  258. * 'bool' exists on platforms with <stdbool.h>, i.e. C99 platforms.
  259. * On non-C99 platforms there's no bool, so define an enum for that.
  260. * On C99 platforms 'false' and 'true' also exist. Enum uses a
  261. * global namespace though, so use bool_false and bool_true.
  262. */
  263. #ifndef HAVE_BOOL_T
  264. typedef enum {
  265. bool_false = 0,
  266. bool_true = 1
  267. } bool;
  268. /*
  269. * Use a define to let 'true' and 'false' use those enums. There
  270. * are currently no use of true and false in libcurl proper, but
  271. * there are some in the examples. This will cater for any later
  272. * code happening to use true and false.
  273. */
  274. # define false bool_false
  275. # define true bool_true
  276. # define HAVE_BOOL_T
  277. #endif
  278. /*
  279. * Redefine TRUE and FALSE too, to catch current use. With this
  280. * change, 'bool found = 1' will give a warning on MIPSPro, but
  281. * 'bool found = TRUE' will not. Change tested on IRIX/MIPSPro,
  282. * AIX 5.1/Xlc, Tru64 5.1/cc, w/make test too.
  283. */
  284. #ifndef TRUE
  285. #define TRUE true
  286. #endif
  287. #ifndef FALSE
  288. #define FALSE false
  289. #endif
  290. #include "curl_ctype.h"
  291. /*
  292. * Typedef to 'int' if sig_atomic_t is not an available 'typedefed' type.
  293. */
  294. #ifndef HAVE_SIG_ATOMIC_T
  295. typedef int sig_atomic_t;
  296. #define HAVE_SIG_ATOMIC_T
  297. #endif
  298. /*
  299. * Convenience SIG_ATOMIC_T definition
  300. */
  301. #ifdef HAVE_SIG_ATOMIC_T_VOLATILE
  302. #define SIG_ATOMIC_T static sig_atomic_t
  303. #else
  304. #define SIG_ATOMIC_T static volatile sig_atomic_t
  305. #endif
  306. /*
  307. * Default return type for signal handlers.
  308. */
  309. #ifndef RETSIGTYPE
  310. #define RETSIGTYPE void
  311. #endif
  312. /*
  313. * Macro used to include code only in debug builds.
  314. */
  315. #ifdef DEBUGBUILD
  316. #define DEBUGF(x) x
  317. #else
  318. #define DEBUGF(x) do { } while(0)
  319. #endif
  320. /*
  321. * Macro used to include assertion code only in debug builds.
  322. */
  323. #undef DEBUGASSERT
  324. #if defined(DEBUGBUILD) && defined(HAVE_ASSERT_H)
  325. #define DEBUGASSERT(x) assert(x)
  326. #else
  327. #define DEBUGASSERT(x) do { } while(0)
  328. #endif
  329. /*
  330. * Macro SOCKERRNO / SET_SOCKERRNO() returns / sets the *socket-related* errno
  331. * (or equivalent) on this platform to hide platform details to code using it.
  332. */
  333. #ifdef USE_WINSOCK
  334. #define SOCKERRNO ((int)WSAGetLastError())
  335. #define SET_SOCKERRNO(x) (WSASetLastError((int)(x)))
  336. #else
  337. #define SOCKERRNO (errno)
  338. #define SET_SOCKERRNO(x) (errno = (x))
  339. #endif
  340. /*
  341. * Portable error number symbolic names defined to Winsock error codes.
  342. */
  343. #ifdef USE_WINSOCK
  344. #undef EBADF /* override definition in errno.h */
  345. #define EBADF WSAEBADF
  346. #undef EINTR /* override definition in errno.h */
  347. #define EINTR WSAEINTR
  348. #undef EINVAL /* override definition in errno.h */
  349. #define EINVAL WSAEINVAL
  350. #undef EWOULDBLOCK /* override definition in errno.h */
  351. #define EWOULDBLOCK WSAEWOULDBLOCK
  352. #undef EINPROGRESS /* override definition in errno.h */
  353. #define EINPROGRESS WSAEINPROGRESS
  354. #undef EALREADY /* override definition in errno.h */
  355. #define EALREADY WSAEALREADY
  356. #undef ENOTSOCK /* override definition in errno.h */
  357. #define ENOTSOCK WSAENOTSOCK
  358. #undef EDESTADDRREQ /* override definition in errno.h */
  359. #define EDESTADDRREQ WSAEDESTADDRREQ
  360. #undef EMSGSIZE /* override definition in errno.h */
  361. #define EMSGSIZE WSAEMSGSIZE
  362. #undef EPROTOTYPE /* override definition in errno.h */
  363. #define EPROTOTYPE WSAEPROTOTYPE
  364. #undef ENOPROTOOPT /* override definition in errno.h */
  365. #define ENOPROTOOPT WSAENOPROTOOPT
  366. #undef EPROTONOSUPPORT /* override definition in errno.h */
  367. #define EPROTONOSUPPORT WSAEPROTONOSUPPORT
  368. #define ESOCKTNOSUPPORT WSAESOCKTNOSUPPORT
  369. #undef EOPNOTSUPP /* override definition in errno.h */
  370. #define EOPNOTSUPP WSAEOPNOTSUPP
  371. #define EPFNOSUPPORT WSAEPFNOSUPPORT
  372. #undef EAFNOSUPPORT /* override definition in errno.h */
  373. #define EAFNOSUPPORT WSAEAFNOSUPPORT
  374. #undef EADDRINUSE /* override definition in errno.h */
  375. #define EADDRINUSE WSAEADDRINUSE
  376. #undef EADDRNOTAVAIL /* override definition in errno.h */
  377. #define EADDRNOTAVAIL WSAEADDRNOTAVAIL
  378. #undef ENETDOWN /* override definition in errno.h */
  379. #define ENETDOWN WSAENETDOWN
  380. #undef ENETUNREACH /* override definition in errno.h */
  381. #define ENETUNREACH WSAENETUNREACH
  382. #undef ENETRESET /* override definition in errno.h */
  383. #define ENETRESET WSAENETRESET
  384. #undef ECONNABORTED /* override definition in errno.h */
  385. #define ECONNABORTED WSAECONNABORTED
  386. #undef ECONNRESET /* override definition in errno.h */
  387. #define ECONNRESET WSAECONNRESET
  388. #undef ENOBUFS /* override definition in errno.h */
  389. #define ENOBUFS WSAENOBUFS
  390. #undef EISCONN /* override definition in errno.h */
  391. #define EISCONN WSAEISCONN
  392. #undef ENOTCONN /* override definition in errno.h */
  393. #define ENOTCONN WSAENOTCONN
  394. #define ESHUTDOWN WSAESHUTDOWN
  395. #define ETOOMANYREFS WSAETOOMANYREFS
  396. #undef ETIMEDOUT /* override definition in errno.h */
  397. #define ETIMEDOUT WSAETIMEDOUT
  398. #undef ECONNREFUSED /* override definition in errno.h */
  399. #define ECONNREFUSED WSAECONNREFUSED
  400. #undef ELOOP /* override definition in errno.h */
  401. #define ELOOP WSAELOOP
  402. #ifndef ENAMETOOLONG /* possible previous definition in errno.h */
  403. #define ENAMETOOLONG WSAENAMETOOLONG
  404. #endif
  405. #define EHOSTDOWN WSAEHOSTDOWN
  406. #undef EHOSTUNREACH /* override definition in errno.h */
  407. #define EHOSTUNREACH WSAEHOSTUNREACH
  408. #ifndef ENOTEMPTY /* possible previous definition in errno.h */
  409. #define ENOTEMPTY WSAENOTEMPTY
  410. #endif
  411. #define EPROCLIM WSAEPROCLIM
  412. #define EUSERS WSAEUSERS
  413. #define EDQUOT WSAEDQUOT
  414. #define ESTALE WSAESTALE
  415. #define EREMOTE WSAEREMOTE
  416. #endif
  417. /*
  418. * Macro argv_item_t hides platform details to code using it.
  419. */
  420. #ifdef __VMS
  421. #define argv_item_t __char_ptr32
  422. #elif defined(_UNICODE)
  423. #define argv_item_t wchar_t *
  424. #else
  425. #define argv_item_t char *
  426. #endif
  427. /*
  428. * We use this ZERO_NULL to avoid picky compiler warnings,
  429. * when assigning a NULL pointer to a function pointer var.
  430. */
  431. #define ZERO_NULL 0
  432. #endif /* HEADER_CURL_SETUP_ONCE_H */