typecheck-gcc.h 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712
  1. #ifndef CURLINC_TYPECHECK_GCC_H
  2. #define CURLINC_TYPECHECK_GCC_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 1998 - 2022, 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. /* wraps curl_easy_setopt() with typechecking */
  27. /* To add a new kind of warning, add an
  28. * if(curlcheck_sometype_option(_curl_opt))
  29. * if(!curlcheck_sometype(value))
  30. * _curl_easy_setopt_err_sometype();
  31. * block and define curlcheck_sometype_option, curlcheck_sometype and
  32. * _curl_easy_setopt_err_sometype below
  33. *
  34. * NOTE: We use two nested 'if' statements here instead of the && operator, in
  35. * order to work around gcc bug #32061. It affects only gcc 4.3.x/4.4.x
  36. * when compiling with -Wlogical-op.
  37. *
  38. * To add an option that uses the same type as an existing option, you'll just
  39. * need to extend the appropriate _curl_*_option macro
  40. */
  41. #define curl_easy_setopt(handle, option, value) \
  42. __extension__({ \
  43. __typeof__(option) _curl_opt = option; \
  44. if(__builtin_constant_p(_curl_opt)) { \
  45. if(curlcheck_long_option(_curl_opt)) \
  46. if(!curlcheck_long(value)) \
  47. _curl_easy_setopt_err_long(); \
  48. if(curlcheck_off_t_option(_curl_opt)) \
  49. if(!curlcheck_off_t(value)) \
  50. _curl_easy_setopt_err_curl_off_t(); \
  51. if(curlcheck_string_option(_curl_opt)) \
  52. if(!curlcheck_string(value)) \
  53. _curl_easy_setopt_err_string(); \
  54. if(curlcheck_write_cb_option(_curl_opt)) \
  55. if(!curlcheck_write_cb(value)) \
  56. _curl_easy_setopt_err_write_callback(); \
  57. if((_curl_opt) == CURLOPT_RESOLVER_START_FUNCTION) \
  58. if(!curlcheck_resolver_start_callback(value)) \
  59. _curl_easy_setopt_err_resolver_start_callback(); \
  60. if((_curl_opt) == CURLOPT_READFUNCTION) \
  61. if(!curlcheck_read_cb(value)) \
  62. _curl_easy_setopt_err_read_cb(); \
  63. if((_curl_opt) == CURLOPT_IOCTLFUNCTION) \
  64. if(!curlcheck_ioctl_cb(value)) \
  65. _curl_easy_setopt_err_ioctl_cb(); \
  66. if((_curl_opt) == CURLOPT_SOCKOPTFUNCTION) \
  67. if(!curlcheck_sockopt_cb(value)) \
  68. _curl_easy_setopt_err_sockopt_cb(); \
  69. if((_curl_opt) == CURLOPT_OPENSOCKETFUNCTION) \
  70. if(!curlcheck_opensocket_cb(value)) \
  71. _curl_easy_setopt_err_opensocket_cb(); \
  72. if((_curl_opt) == CURLOPT_PROGRESSFUNCTION) \
  73. if(!curlcheck_progress_cb(value)) \
  74. _curl_easy_setopt_err_progress_cb(); \
  75. if((_curl_opt) == CURLOPT_DEBUGFUNCTION) \
  76. if(!curlcheck_debug_cb(value)) \
  77. _curl_easy_setopt_err_debug_cb(); \
  78. if((_curl_opt) == CURLOPT_SSL_CTX_FUNCTION) \
  79. if(!curlcheck_ssl_ctx_cb(value)) \
  80. _curl_easy_setopt_err_ssl_ctx_cb(); \
  81. if(curlcheck_conv_cb_option(_curl_opt)) \
  82. if(!curlcheck_conv_cb(value)) \
  83. _curl_easy_setopt_err_conv_cb(); \
  84. if((_curl_opt) == CURLOPT_SEEKFUNCTION) \
  85. if(!curlcheck_seek_cb(value)) \
  86. _curl_easy_setopt_err_seek_cb(); \
  87. if(curlcheck_cb_data_option(_curl_opt)) \
  88. if(!curlcheck_cb_data(value)) \
  89. _curl_easy_setopt_err_cb_data(); \
  90. if((_curl_opt) == CURLOPT_ERRORBUFFER) \
  91. if(!curlcheck_error_buffer(value)) \
  92. _curl_easy_setopt_err_error_buffer(); \
  93. if((_curl_opt) == CURLOPT_STDERR) \
  94. if(!curlcheck_FILE(value)) \
  95. _curl_easy_setopt_err_FILE(); \
  96. if(curlcheck_postfields_option(_curl_opt)) \
  97. if(!curlcheck_postfields(value)) \
  98. _curl_easy_setopt_err_postfields(); \
  99. if((_curl_opt) == CURLOPT_HTTPPOST) \
  100. if(!curlcheck_arr((value), struct curl_httppost)) \
  101. _curl_easy_setopt_err_curl_httpost(); \
  102. if((_curl_opt) == CURLOPT_MIMEPOST) \
  103. if(!curlcheck_ptr((value), curl_mime)) \
  104. _curl_easy_setopt_err_curl_mimepost(); \
  105. if(curlcheck_slist_option(_curl_opt)) \
  106. if(!curlcheck_arr((value), struct curl_slist)) \
  107. _curl_easy_setopt_err_curl_slist(); \
  108. if((_curl_opt) == CURLOPT_SHARE) \
  109. if(!curlcheck_ptr((value), CURLSH)) \
  110. _curl_easy_setopt_err_CURLSH(); \
  111. } \
  112. curl_easy_setopt(handle, _curl_opt, value); \
  113. })
  114. /* wraps curl_easy_getinfo() with typechecking */
  115. #define curl_easy_getinfo(handle, info, arg) \
  116. __extension__({ \
  117. __typeof__(info) _curl_info = info; \
  118. if(__builtin_constant_p(_curl_info)) { \
  119. if(curlcheck_string_info(_curl_info)) \
  120. if(!curlcheck_arr((arg), char *)) \
  121. _curl_easy_getinfo_err_string(); \
  122. if(curlcheck_long_info(_curl_info)) \
  123. if(!curlcheck_arr((arg), long)) \
  124. _curl_easy_getinfo_err_long(); \
  125. if(curlcheck_double_info(_curl_info)) \
  126. if(!curlcheck_arr((arg), double)) \
  127. _curl_easy_getinfo_err_double(); \
  128. if(curlcheck_slist_info(_curl_info)) \
  129. if(!curlcheck_arr((arg), struct curl_slist *)) \
  130. _curl_easy_getinfo_err_curl_slist(); \
  131. if(curlcheck_tlssessioninfo_info(_curl_info)) \
  132. if(!curlcheck_arr((arg), struct curl_tlssessioninfo *)) \
  133. _curl_easy_getinfo_err_curl_tlssesssioninfo(); \
  134. if(curlcheck_certinfo_info(_curl_info)) \
  135. if(!curlcheck_arr((arg), struct curl_certinfo *)) \
  136. _curl_easy_getinfo_err_curl_certinfo(); \
  137. if(curlcheck_socket_info(_curl_info)) \
  138. if(!curlcheck_arr((arg), curl_socket_t)) \
  139. _curl_easy_getinfo_err_curl_socket(); \
  140. if(curlcheck_off_t_info(_curl_info)) \
  141. if(!curlcheck_arr((arg), curl_off_t)) \
  142. _curl_easy_getinfo_err_curl_off_t(); \
  143. } \
  144. curl_easy_getinfo(handle, _curl_info, arg); \
  145. })
  146. /*
  147. * For now, just make sure that the functions are called with three arguments
  148. */
  149. #define curl_share_setopt(share,opt,param) curl_share_setopt(share,opt,param)
  150. #define curl_multi_setopt(handle,opt,param) curl_multi_setopt(handle,opt,param)
  151. /* the actual warnings, triggered by calling the _curl_easy_setopt_err*
  152. * functions */
  153. /* To define a new warning, use _CURL_WARNING(identifier, "message") */
  154. #define CURLWARNING(id, message) \
  155. static void __attribute__((__warning__(message))) \
  156. __attribute__((__unused__)) __attribute__((__noinline__)) \
  157. id(void) { __asm__(""); }
  158. CURLWARNING(_curl_easy_setopt_err_long,
  159. "curl_easy_setopt expects a long argument for this option")
  160. CURLWARNING(_curl_easy_setopt_err_curl_off_t,
  161. "curl_easy_setopt expects a curl_off_t argument for this option")
  162. CURLWARNING(_curl_easy_setopt_err_string,
  163. "curl_easy_setopt expects a "
  164. "string ('char *' or char[]) argument for this option"
  165. )
  166. CURLWARNING(_curl_easy_setopt_err_write_callback,
  167. "curl_easy_setopt expects a curl_write_callback argument for this option")
  168. CURLWARNING(_curl_easy_setopt_err_resolver_start_callback,
  169. "curl_easy_setopt expects a "
  170. "curl_resolver_start_callback argument for this option"
  171. )
  172. CURLWARNING(_curl_easy_setopt_err_read_cb,
  173. "curl_easy_setopt expects a curl_read_callback argument for this option")
  174. CURLWARNING(_curl_easy_setopt_err_ioctl_cb,
  175. "curl_easy_setopt expects a curl_ioctl_callback argument for this option")
  176. CURLWARNING(_curl_easy_setopt_err_sockopt_cb,
  177. "curl_easy_setopt expects a curl_sockopt_callback argument for this option")
  178. CURLWARNING(_curl_easy_setopt_err_opensocket_cb,
  179. "curl_easy_setopt expects a "
  180. "curl_opensocket_callback argument for this option"
  181. )
  182. CURLWARNING(_curl_easy_setopt_err_progress_cb,
  183. "curl_easy_setopt expects a curl_progress_callback argument for this option")
  184. CURLWARNING(_curl_easy_setopt_err_debug_cb,
  185. "curl_easy_setopt expects a curl_debug_callback argument for this option")
  186. CURLWARNING(_curl_easy_setopt_err_ssl_ctx_cb,
  187. "curl_easy_setopt expects a curl_ssl_ctx_callback argument for this option")
  188. CURLWARNING(_curl_easy_setopt_err_conv_cb,
  189. "curl_easy_setopt expects a curl_conv_callback argument for this option")
  190. CURLWARNING(_curl_easy_setopt_err_seek_cb,
  191. "curl_easy_setopt expects a curl_seek_callback argument for this option")
  192. CURLWARNING(_curl_easy_setopt_err_cb_data,
  193. "curl_easy_setopt expects a "
  194. "private data pointer as argument for this option")
  195. CURLWARNING(_curl_easy_setopt_err_error_buffer,
  196. "curl_easy_setopt expects a "
  197. "char buffer of CURL_ERROR_SIZE as argument for this option")
  198. CURLWARNING(_curl_easy_setopt_err_FILE,
  199. "curl_easy_setopt expects a 'FILE *' argument for this option")
  200. CURLWARNING(_curl_easy_setopt_err_postfields,
  201. "curl_easy_setopt expects a 'void *' or 'char *' argument for this option")
  202. CURLWARNING(_curl_easy_setopt_err_curl_httpost,
  203. "curl_easy_setopt expects a 'struct curl_httppost *' "
  204. "argument for this option")
  205. CURLWARNING(_curl_easy_setopt_err_curl_mimepost,
  206. "curl_easy_setopt expects a 'curl_mime *' "
  207. "argument for this option")
  208. CURLWARNING(_curl_easy_setopt_err_curl_slist,
  209. "curl_easy_setopt expects a 'struct curl_slist *' argument for this option")
  210. CURLWARNING(_curl_easy_setopt_err_CURLSH,
  211. "curl_easy_setopt expects a CURLSH* argument for this option")
  212. CURLWARNING(_curl_easy_getinfo_err_string,
  213. "curl_easy_getinfo expects a pointer to 'char *' for this info")
  214. CURLWARNING(_curl_easy_getinfo_err_long,
  215. "curl_easy_getinfo expects a pointer to long for this info")
  216. CURLWARNING(_curl_easy_getinfo_err_double,
  217. "curl_easy_getinfo expects a pointer to double for this info")
  218. CURLWARNING(_curl_easy_getinfo_err_curl_slist,
  219. "curl_easy_getinfo expects a pointer to 'struct curl_slist *' for this info")
  220. CURLWARNING(_curl_easy_getinfo_err_curl_tlssesssioninfo,
  221. "curl_easy_getinfo expects a pointer to "
  222. "'struct curl_tlssessioninfo *' for this info")
  223. CURLWARNING(_curl_easy_getinfo_err_curl_certinfo,
  224. "curl_easy_getinfo expects a pointer to "
  225. "'struct curl_certinfo *' for this info")
  226. CURLWARNING(_curl_easy_getinfo_err_curl_socket,
  227. "curl_easy_getinfo expects a pointer to curl_socket_t for this info")
  228. CURLWARNING(_curl_easy_getinfo_err_curl_off_t,
  229. "curl_easy_getinfo expects a pointer to curl_off_t for this info")
  230. /* groups of curl_easy_setops options that take the same type of argument */
  231. /* To add a new option to one of the groups, just add
  232. * (option) == CURLOPT_SOMETHING
  233. * to the or-expression. If the option takes a long or curl_off_t, you don't
  234. * have to do anything
  235. */
  236. /* evaluates to true if option takes a long argument */
  237. #define curlcheck_long_option(option) \
  238. (0 < (option) && (option) < CURLOPTTYPE_OBJECTPOINT)
  239. #define curlcheck_off_t_option(option) \
  240. (((option) > CURLOPTTYPE_OFF_T) && ((option) < CURLOPTTYPE_BLOB))
  241. /* evaluates to true if option takes a char* argument */
  242. #define curlcheck_string_option(option) \
  243. ((option) == CURLOPT_ABSTRACT_UNIX_SOCKET || \
  244. (option) == CURLOPT_ACCEPT_ENCODING || \
  245. (option) == CURLOPT_ALTSVC || \
  246. (option) == CURLOPT_CAINFO || \
  247. (option) == CURLOPT_CAPATH || \
  248. (option) == CURLOPT_COOKIE || \
  249. (option) == CURLOPT_COOKIEFILE || \
  250. (option) == CURLOPT_COOKIEJAR || \
  251. (option) == CURLOPT_COOKIELIST || \
  252. (option) == CURLOPT_CRLFILE || \
  253. (option) == CURLOPT_CUSTOMREQUEST || \
  254. (option) == CURLOPT_DEFAULT_PROTOCOL || \
  255. (option) == CURLOPT_DNS_INTERFACE || \
  256. (option) == CURLOPT_DNS_LOCAL_IP4 || \
  257. (option) == CURLOPT_DNS_LOCAL_IP6 || \
  258. (option) == CURLOPT_DNS_SERVERS || \
  259. (option) == CURLOPT_DOH_URL || \
  260. (option) == CURLOPT_EGDSOCKET || \
  261. (option) == CURLOPT_FTP_ACCOUNT || \
  262. (option) == CURLOPT_FTP_ALTERNATIVE_TO_USER || \
  263. (option) == CURLOPT_FTPPORT || \
  264. (option) == CURLOPT_HSTS || \
  265. (option) == CURLOPT_INTERFACE || \
  266. (option) == CURLOPT_ISSUERCERT || \
  267. (option) == CURLOPT_KEYPASSWD || \
  268. (option) == CURLOPT_KRBLEVEL || \
  269. (option) == CURLOPT_LOGIN_OPTIONS || \
  270. (option) == CURLOPT_MAIL_AUTH || \
  271. (option) == CURLOPT_MAIL_FROM || \
  272. (option) == CURLOPT_NETRC_FILE || \
  273. (option) == CURLOPT_NOPROXY || \
  274. (option) == CURLOPT_PASSWORD || \
  275. (option) == CURLOPT_PINNEDPUBLICKEY || \
  276. (option) == CURLOPT_PRE_PROXY || \
  277. (option) == CURLOPT_PROTOCOLS_STR || \
  278. (option) == CURLOPT_PROXY || \
  279. (option) == CURLOPT_PROXY_CAINFO || \
  280. (option) == CURLOPT_PROXY_CAPATH || \
  281. (option) == CURLOPT_PROXY_CRLFILE || \
  282. (option) == CURLOPT_PROXY_ISSUERCERT || \
  283. (option) == CURLOPT_PROXY_KEYPASSWD || \
  284. (option) == CURLOPT_PROXY_PINNEDPUBLICKEY || \
  285. (option) == CURLOPT_PROXY_SERVICE_NAME || \
  286. (option) == CURLOPT_PROXY_SSL_CIPHER_LIST || \
  287. (option) == CURLOPT_PROXY_SSLCERT || \
  288. (option) == CURLOPT_PROXY_SSLCERTTYPE || \
  289. (option) == CURLOPT_PROXY_SSLKEY || \
  290. (option) == CURLOPT_PROXY_SSLKEYTYPE || \
  291. (option) == CURLOPT_PROXY_TLS13_CIPHERS || \
  292. (option) == CURLOPT_PROXY_TLSAUTH_PASSWORD || \
  293. (option) == CURLOPT_PROXY_TLSAUTH_TYPE || \
  294. (option) == CURLOPT_PROXY_TLSAUTH_USERNAME || \
  295. (option) == CURLOPT_PROXYPASSWORD || \
  296. (option) == CURLOPT_PROXYUSERNAME || \
  297. (option) == CURLOPT_PROXYUSERPWD || \
  298. (option) == CURLOPT_RANDOM_FILE || \
  299. (option) == CURLOPT_RANGE || \
  300. (option) == CURLOPT_REDIR_PROTOCOLS_STR || \
  301. (option) == CURLOPT_REFERER || \
  302. (option) == CURLOPT_REQUEST_TARGET || \
  303. (option) == CURLOPT_RTSP_SESSION_ID || \
  304. (option) == CURLOPT_RTSP_STREAM_URI || \
  305. (option) == CURLOPT_RTSP_TRANSPORT || \
  306. (option) == CURLOPT_SASL_AUTHZID || \
  307. (option) == CURLOPT_SERVICE_NAME || \
  308. (option) == CURLOPT_SOCKS5_GSSAPI_SERVICE || \
  309. (option) == CURLOPT_SSH_HOST_PUBLIC_KEY_MD5 || \
  310. (option) == CURLOPT_SSH_HOST_PUBLIC_KEY_SHA256 || \
  311. (option) == CURLOPT_SSH_KNOWNHOSTS || \
  312. (option) == CURLOPT_SSH_PRIVATE_KEYFILE || \
  313. (option) == CURLOPT_SSH_PUBLIC_KEYFILE || \
  314. (option) == CURLOPT_SSLCERT || \
  315. (option) == CURLOPT_SSLCERTTYPE || \
  316. (option) == CURLOPT_SSLENGINE || \
  317. (option) == CURLOPT_SSLKEY || \
  318. (option) == CURLOPT_SSLKEYTYPE || \
  319. (option) == CURLOPT_SSL_CIPHER_LIST || \
  320. (option) == CURLOPT_TLS13_CIPHERS || \
  321. (option) == CURLOPT_TLSAUTH_PASSWORD || \
  322. (option) == CURLOPT_TLSAUTH_TYPE || \
  323. (option) == CURLOPT_TLSAUTH_USERNAME || \
  324. (option) == CURLOPT_UNIX_SOCKET_PATH || \
  325. (option) == CURLOPT_URL || \
  326. (option) == CURLOPT_USERAGENT || \
  327. (option) == CURLOPT_USERNAME || \
  328. (option) == CURLOPT_AWS_SIGV4 || \
  329. (option) == CURLOPT_USERPWD || \
  330. (option) == CURLOPT_XOAUTH2_BEARER || \
  331. (option) == CURLOPT_SSL_EC_CURVES || \
  332. 0)
  333. /* evaluates to true if option takes a curl_write_callback argument */
  334. #define curlcheck_write_cb_option(option) \
  335. ((option) == CURLOPT_HEADERFUNCTION || \
  336. (option) == CURLOPT_WRITEFUNCTION)
  337. /* evaluates to true if option takes a curl_conv_callback argument */
  338. #define curlcheck_conv_cb_option(option) \
  339. ((option) == CURLOPT_CONV_TO_NETWORK_FUNCTION || \
  340. (option) == CURLOPT_CONV_FROM_NETWORK_FUNCTION || \
  341. (option) == CURLOPT_CONV_FROM_UTF8_FUNCTION)
  342. /* evaluates to true if option takes a data argument to pass to a callback */
  343. #define curlcheck_cb_data_option(option) \
  344. ((option) == CURLOPT_CHUNK_DATA || \
  345. (option) == CURLOPT_CLOSESOCKETDATA || \
  346. (option) == CURLOPT_DEBUGDATA || \
  347. (option) == CURLOPT_FNMATCH_DATA || \
  348. (option) == CURLOPT_HEADERDATA || \
  349. (option) == CURLOPT_HSTSREADDATA || \
  350. (option) == CURLOPT_HSTSWRITEDATA || \
  351. (option) == CURLOPT_INTERLEAVEDATA || \
  352. (option) == CURLOPT_IOCTLDATA || \
  353. (option) == CURLOPT_OPENSOCKETDATA || \
  354. (option) == CURLOPT_PREREQDATA || \
  355. (option) == CURLOPT_PROGRESSDATA || \
  356. (option) == CURLOPT_READDATA || \
  357. (option) == CURLOPT_SEEKDATA || \
  358. (option) == CURLOPT_SOCKOPTDATA || \
  359. (option) == CURLOPT_SSH_KEYDATA || \
  360. (option) == CURLOPT_SSL_CTX_DATA || \
  361. (option) == CURLOPT_WRITEDATA || \
  362. (option) == CURLOPT_RESOLVER_START_DATA || \
  363. (option) == CURLOPT_TRAILERDATA || \
  364. (option) == CURLOPT_SSH_HOSTKEYDATA || \
  365. 0)
  366. /* evaluates to true if option takes a POST data argument (void* or char*) */
  367. #define curlcheck_postfields_option(option) \
  368. ((option) == CURLOPT_POSTFIELDS || \
  369. (option) == CURLOPT_COPYPOSTFIELDS || \
  370. 0)
  371. /* evaluates to true if option takes a struct curl_slist * argument */
  372. #define curlcheck_slist_option(option) \
  373. ((option) == CURLOPT_HTTP200ALIASES || \
  374. (option) == CURLOPT_HTTPHEADER || \
  375. (option) == CURLOPT_MAIL_RCPT || \
  376. (option) == CURLOPT_POSTQUOTE || \
  377. (option) == CURLOPT_PREQUOTE || \
  378. (option) == CURLOPT_PROXYHEADER || \
  379. (option) == CURLOPT_QUOTE || \
  380. (option) == CURLOPT_RESOLVE || \
  381. (option) == CURLOPT_TELNETOPTIONS || \
  382. (option) == CURLOPT_CONNECT_TO || \
  383. 0)
  384. /* groups of curl_easy_getinfo infos that take the same type of argument */
  385. /* evaluates to true if info expects a pointer to char * argument */
  386. #define curlcheck_string_info(info) \
  387. (CURLINFO_STRING < (info) && (info) < CURLINFO_LONG && \
  388. (info) != CURLINFO_PRIVATE)
  389. /* evaluates to true if info expects a pointer to long argument */
  390. #define curlcheck_long_info(info) \
  391. (CURLINFO_LONG < (info) && (info) < CURLINFO_DOUBLE)
  392. /* evaluates to true if info expects a pointer to double argument */
  393. #define curlcheck_double_info(info) \
  394. (CURLINFO_DOUBLE < (info) && (info) < CURLINFO_SLIST)
  395. /* true if info expects a pointer to struct curl_slist * argument */
  396. #define curlcheck_slist_info(info) \
  397. (((info) == CURLINFO_SSL_ENGINES) || ((info) == CURLINFO_COOKIELIST))
  398. /* true if info expects a pointer to struct curl_tlssessioninfo * argument */
  399. #define curlcheck_tlssessioninfo_info(info) \
  400. (((info) == CURLINFO_TLS_SSL_PTR) || ((info) == CURLINFO_TLS_SESSION))
  401. /* true if info expects a pointer to struct curl_certinfo * argument */
  402. #define curlcheck_certinfo_info(info) ((info) == CURLINFO_CERTINFO)
  403. /* true if info expects a pointer to struct curl_socket_t argument */
  404. #define curlcheck_socket_info(info) \
  405. (CURLINFO_SOCKET < (info) && (info) < CURLINFO_OFF_T)
  406. /* true if info expects a pointer to curl_off_t argument */
  407. #define curlcheck_off_t_info(info) \
  408. (CURLINFO_OFF_T < (info))
  409. /* typecheck helpers -- check whether given expression has requested type*/
  410. /* For pointers, you can use the curlcheck_ptr/curlcheck_arr macros,
  411. * otherwise define a new macro. Search for __builtin_types_compatible_p
  412. * in the GCC manual.
  413. * NOTE: these macros MUST NOT EVALUATE their arguments! The argument is
  414. * the actual expression passed to the curl_easy_setopt macro. This
  415. * means that you can only apply the sizeof and __typeof__ operators, no
  416. * == or whatsoever.
  417. */
  418. /* XXX: should evaluate to true if expr is a pointer */
  419. #define curlcheck_any_ptr(expr) \
  420. (sizeof(expr) == sizeof(void *))
  421. /* evaluates to true if expr is NULL */
  422. /* XXX: must not evaluate expr, so this check is not accurate */
  423. #define curlcheck_NULL(expr) \
  424. (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL)))
  425. /* evaluates to true if expr is type*, const type* or NULL */
  426. #define curlcheck_ptr(expr, type) \
  427. (curlcheck_NULL(expr) || \
  428. __builtin_types_compatible_p(__typeof__(expr), type *) || \
  429. __builtin_types_compatible_p(__typeof__(expr), const type *))
  430. /* evaluates to true if expr is one of type[], type*, NULL or const type* */
  431. #define curlcheck_arr(expr, type) \
  432. (curlcheck_ptr((expr), type) || \
  433. __builtin_types_compatible_p(__typeof__(expr), type []))
  434. /* evaluates to true if expr is a string */
  435. #define curlcheck_string(expr) \
  436. (curlcheck_arr((expr), char) || \
  437. curlcheck_arr((expr), signed char) || \
  438. curlcheck_arr((expr), unsigned char))
  439. /* evaluates to true if expr is a long (no matter the signedness)
  440. * XXX: for now, int is also accepted (and therefore short and char, which
  441. * are promoted to int when passed to a variadic function) */
  442. #define curlcheck_long(expr) \
  443. (__builtin_types_compatible_p(__typeof__(expr), long) || \
  444. __builtin_types_compatible_p(__typeof__(expr), signed long) || \
  445. __builtin_types_compatible_p(__typeof__(expr), unsigned long) || \
  446. __builtin_types_compatible_p(__typeof__(expr), int) || \
  447. __builtin_types_compatible_p(__typeof__(expr), signed int) || \
  448. __builtin_types_compatible_p(__typeof__(expr), unsigned int) || \
  449. __builtin_types_compatible_p(__typeof__(expr), short) || \
  450. __builtin_types_compatible_p(__typeof__(expr), signed short) || \
  451. __builtin_types_compatible_p(__typeof__(expr), unsigned short) || \
  452. __builtin_types_compatible_p(__typeof__(expr), char) || \
  453. __builtin_types_compatible_p(__typeof__(expr), signed char) || \
  454. __builtin_types_compatible_p(__typeof__(expr), unsigned char))
  455. /* evaluates to true if expr is of type curl_off_t */
  456. #define curlcheck_off_t(expr) \
  457. (__builtin_types_compatible_p(__typeof__(expr), curl_off_t))
  458. /* evaluates to true if expr is abuffer suitable for CURLOPT_ERRORBUFFER */
  459. /* XXX: also check size of an char[] array? */
  460. #define curlcheck_error_buffer(expr) \
  461. (curlcheck_NULL(expr) || \
  462. __builtin_types_compatible_p(__typeof__(expr), char *) || \
  463. __builtin_types_compatible_p(__typeof__(expr), char[]))
  464. /* evaluates to true if expr is of type (const) void* or (const) FILE* */
  465. #if 0
  466. #define curlcheck_cb_data(expr) \
  467. (curlcheck_ptr((expr), void) || \
  468. curlcheck_ptr((expr), FILE))
  469. #else /* be less strict */
  470. #define curlcheck_cb_data(expr) \
  471. curlcheck_any_ptr(expr)
  472. #endif
  473. /* evaluates to true if expr is of type FILE* */
  474. #define curlcheck_FILE(expr) \
  475. (curlcheck_NULL(expr) || \
  476. (__builtin_types_compatible_p(__typeof__(expr), FILE *)))
  477. /* evaluates to true if expr can be passed as POST data (void* or char*) */
  478. #define curlcheck_postfields(expr) \
  479. (curlcheck_ptr((expr), void) || \
  480. curlcheck_arr((expr), char) || \
  481. curlcheck_arr((expr), unsigned char))
  482. /* helper: __builtin_types_compatible_p distinguishes between functions and
  483. * function pointers, hide it */
  484. #define curlcheck_cb_compatible(func, type) \
  485. (__builtin_types_compatible_p(__typeof__(func), type) || \
  486. __builtin_types_compatible_p(__typeof__(func) *, type))
  487. /* evaluates to true if expr is of type curl_resolver_start_callback */
  488. #define curlcheck_resolver_start_callback(expr) \
  489. (curlcheck_NULL(expr) || \
  490. curlcheck_cb_compatible((expr), curl_resolver_start_callback))
  491. /* evaluates to true if expr is of type curl_read_callback or "similar" */
  492. #define curlcheck_read_cb(expr) \
  493. (curlcheck_NULL(expr) || \
  494. curlcheck_cb_compatible((expr), __typeof__(fread) *) || \
  495. curlcheck_cb_compatible((expr), curl_read_callback) || \
  496. curlcheck_cb_compatible((expr), _curl_read_callback1) || \
  497. curlcheck_cb_compatible((expr), _curl_read_callback2) || \
  498. curlcheck_cb_compatible((expr), _curl_read_callback3) || \
  499. curlcheck_cb_compatible((expr), _curl_read_callback4) || \
  500. curlcheck_cb_compatible((expr), _curl_read_callback5) || \
  501. curlcheck_cb_compatible((expr), _curl_read_callback6))
  502. typedef size_t (*_curl_read_callback1)(char *, size_t, size_t, void *);
  503. typedef size_t (*_curl_read_callback2)(char *, size_t, size_t, const void *);
  504. typedef size_t (*_curl_read_callback3)(char *, size_t, size_t, FILE *);
  505. typedef size_t (*_curl_read_callback4)(void *, size_t, size_t, void *);
  506. typedef size_t (*_curl_read_callback5)(void *, size_t, size_t, const void *);
  507. typedef size_t (*_curl_read_callback6)(void *, size_t, size_t, FILE *);
  508. /* evaluates to true if expr is of type curl_write_callback or "similar" */
  509. #define curlcheck_write_cb(expr) \
  510. (curlcheck_read_cb(expr) || \
  511. curlcheck_cb_compatible((expr), __typeof__(fwrite) *) || \
  512. curlcheck_cb_compatible((expr), curl_write_callback) || \
  513. curlcheck_cb_compatible((expr), _curl_write_callback1) || \
  514. curlcheck_cb_compatible((expr), _curl_write_callback2) || \
  515. curlcheck_cb_compatible((expr), _curl_write_callback3) || \
  516. curlcheck_cb_compatible((expr), _curl_write_callback4) || \
  517. curlcheck_cb_compatible((expr), _curl_write_callback5) || \
  518. curlcheck_cb_compatible((expr), _curl_write_callback6))
  519. typedef size_t (*_curl_write_callback1)(const char *, size_t, size_t, void *);
  520. typedef size_t (*_curl_write_callback2)(const char *, size_t, size_t,
  521. const void *);
  522. typedef size_t (*_curl_write_callback3)(const char *, size_t, size_t, FILE *);
  523. typedef size_t (*_curl_write_callback4)(const void *, size_t, size_t, void *);
  524. typedef size_t (*_curl_write_callback5)(const void *, size_t, size_t,
  525. const void *);
  526. typedef size_t (*_curl_write_callback6)(const void *, size_t, size_t, FILE *);
  527. /* evaluates to true if expr is of type curl_ioctl_callback or "similar" */
  528. #define curlcheck_ioctl_cb(expr) \
  529. (curlcheck_NULL(expr) || \
  530. curlcheck_cb_compatible((expr), curl_ioctl_callback) || \
  531. curlcheck_cb_compatible((expr), _curl_ioctl_callback1) || \
  532. curlcheck_cb_compatible((expr), _curl_ioctl_callback2) || \
  533. curlcheck_cb_compatible((expr), _curl_ioctl_callback3) || \
  534. curlcheck_cb_compatible((expr), _curl_ioctl_callback4))
  535. typedef curlioerr (*_curl_ioctl_callback1)(CURL *, int, void *);
  536. typedef curlioerr (*_curl_ioctl_callback2)(CURL *, int, const void *);
  537. typedef curlioerr (*_curl_ioctl_callback3)(CURL *, curliocmd, void *);
  538. typedef curlioerr (*_curl_ioctl_callback4)(CURL *, curliocmd, const void *);
  539. /* evaluates to true if expr is of type curl_sockopt_callback or "similar" */
  540. #define curlcheck_sockopt_cb(expr) \
  541. (curlcheck_NULL(expr) || \
  542. curlcheck_cb_compatible((expr), curl_sockopt_callback) || \
  543. curlcheck_cb_compatible((expr), _curl_sockopt_callback1) || \
  544. curlcheck_cb_compatible((expr), _curl_sockopt_callback2))
  545. typedef int (*_curl_sockopt_callback1)(void *, curl_socket_t, curlsocktype);
  546. typedef int (*_curl_sockopt_callback2)(const void *, curl_socket_t,
  547. curlsocktype);
  548. /* evaluates to true if expr is of type curl_opensocket_callback or
  549. "similar" */
  550. #define curlcheck_opensocket_cb(expr) \
  551. (curlcheck_NULL(expr) || \
  552. curlcheck_cb_compatible((expr), curl_opensocket_callback) || \
  553. curlcheck_cb_compatible((expr), _curl_opensocket_callback1) || \
  554. curlcheck_cb_compatible((expr), _curl_opensocket_callback2) || \
  555. curlcheck_cb_compatible((expr), _curl_opensocket_callback3) || \
  556. curlcheck_cb_compatible((expr), _curl_opensocket_callback4))
  557. typedef curl_socket_t (*_curl_opensocket_callback1)
  558. (void *, curlsocktype, struct curl_sockaddr *);
  559. typedef curl_socket_t (*_curl_opensocket_callback2)
  560. (void *, curlsocktype, const struct curl_sockaddr *);
  561. typedef curl_socket_t (*_curl_opensocket_callback3)
  562. (const void *, curlsocktype, struct curl_sockaddr *);
  563. typedef curl_socket_t (*_curl_opensocket_callback4)
  564. (const void *, curlsocktype, const struct curl_sockaddr *);
  565. /* evaluates to true if expr is of type curl_progress_callback or "similar" */
  566. #define curlcheck_progress_cb(expr) \
  567. (curlcheck_NULL(expr) || \
  568. curlcheck_cb_compatible((expr), curl_progress_callback) || \
  569. curlcheck_cb_compatible((expr), _curl_progress_callback1) || \
  570. curlcheck_cb_compatible((expr), _curl_progress_callback2))
  571. typedef int (*_curl_progress_callback1)(void *,
  572. double, double, double, double);
  573. typedef int (*_curl_progress_callback2)(const void *,
  574. double, double, double, double);
  575. /* evaluates to true if expr is of type curl_debug_callback or "similar" */
  576. #define curlcheck_debug_cb(expr) \
  577. (curlcheck_NULL(expr) || \
  578. curlcheck_cb_compatible((expr), curl_debug_callback) || \
  579. curlcheck_cb_compatible((expr), _curl_debug_callback1) || \
  580. curlcheck_cb_compatible((expr), _curl_debug_callback2) || \
  581. curlcheck_cb_compatible((expr), _curl_debug_callback3) || \
  582. curlcheck_cb_compatible((expr), _curl_debug_callback4) || \
  583. curlcheck_cb_compatible((expr), _curl_debug_callback5) || \
  584. curlcheck_cb_compatible((expr), _curl_debug_callback6) || \
  585. curlcheck_cb_compatible((expr), _curl_debug_callback7) || \
  586. curlcheck_cb_compatible((expr), _curl_debug_callback8))
  587. typedef int (*_curl_debug_callback1) (CURL *,
  588. curl_infotype, char *, size_t, void *);
  589. typedef int (*_curl_debug_callback2) (CURL *,
  590. curl_infotype, char *, size_t, const void *);
  591. typedef int (*_curl_debug_callback3) (CURL *,
  592. curl_infotype, const char *, size_t, void *);
  593. typedef int (*_curl_debug_callback4) (CURL *,
  594. curl_infotype, const char *, size_t, const void *);
  595. typedef int (*_curl_debug_callback5) (CURL *,
  596. curl_infotype, unsigned char *, size_t, void *);
  597. typedef int (*_curl_debug_callback6) (CURL *,
  598. curl_infotype, unsigned char *, size_t, const void *);
  599. typedef int (*_curl_debug_callback7) (CURL *,
  600. curl_infotype, const unsigned char *, size_t, void *);
  601. typedef int (*_curl_debug_callback8) (CURL *,
  602. curl_infotype, const unsigned char *, size_t, const void *);
  603. /* evaluates to true if expr is of type curl_ssl_ctx_callback or "similar" */
  604. /* this is getting even messier... */
  605. #define curlcheck_ssl_ctx_cb(expr) \
  606. (curlcheck_NULL(expr) || \
  607. curlcheck_cb_compatible((expr), curl_ssl_ctx_callback) || \
  608. curlcheck_cb_compatible((expr), _curl_ssl_ctx_callback1) || \
  609. curlcheck_cb_compatible((expr), _curl_ssl_ctx_callback2) || \
  610. curlcheck_cb_compatible((expr), _curl_ssl_ctx_callback3) || \
  611. curlcheck_cb_compatible((expr), _curl_ssl_ctx_callback4) || \
  612. curlcheck_cb_compatible((expr), _curl_ssl_ctx_callback5) || \
  613. curlcheck_cb_compatible((expr), _curl_ssl_ctx_callback6) || \
  614. curlcheck_cb_compatible((expr), _curl_ssl_ctx_callback7) || \
  615. curlcheck_cb_compatible((expr), _curl_ssl_ctx_callback8))
  616. typedef CURLcode (*_curl_ssl_ctx_callback1)(CURL *, void *, void *);
  617. typedef CURLcode (*_curl_ssl_ctx_callback2)(CURL *, void *, const void *);
  618. typedef CURLcode (*_curl_ssl_ctx_callback3)(CURL *, const void *, void *);
  619. typedef CURLcode (*_curl_ssl_ctx_callback4)(CURL *, const void *,
  620. const void *);
  621. #ifdef HEADER_SSL_H
  622. /* hack: if we included OpenSSL's ssl.h, we know about SSL_CTX
  623. * this will of course break if we're included before OpenSSL headers...
  624. */
  625. typedef CURLcode (*_curl_ssl_ctx_callback5)(CURL *, SSL_CTX *, void *);
  626. typedef CURLcode (*_curl_ssl_ctx_callback6)(CURL *, SSL_CTX *, const void *);
  627. typedef CURLcode (*_curl_ssl_ctx_callback7)(CURL *, const SSL_CTX *, void *);
  628. typedef CURLcode (*_curl_ssl_ctx_callback8)(CURL *, const SSL_CTX *,
  629. const void *);
  630. #else
  631. typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback5;
  632. typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback6;
  633. typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback7;
  634. typedef _curl_ssl_ctx_callback1 _curl_ssl_ctx_callback8;
  635. #endif
  636. /* evaluates to true if expr is of type curl_conv_callback or "similar" */
  637. #define curlcheck_conv_cb(expr) \
  638. (curlcheck_NULL(expr) || \
  639. curlcheck_cb_compatible((expr), curl_conv_callback) || \
  640. curlcheck_cb_compatible((expr), _curl_conv_callback1) || \
  641. curlcheck_cb_compatible((expr), _curl_conv_callback2) || \
  642. curlcheck_cb_compatible((expr), _curl_conv_callback3) || \
  643. curlcheck_cb_compatible((expr), _curl_conv_callback4))
  644. typedef CURLcode (*_curl_conv_callback1)(char *, size_t length);
  645. typedef CURLcode (*_curl_conv_callback2)(const char *, size_t length);
  646. typedef CURLcode (*_curl_conv_callback3)(void *, size_t length);
  647. typedef CURLcode (*_curl_conv_callback4)(const void *, size_t length);
  648. /* evaluates to true if expr is of type curl_seek_callback or "similar" */
  649. #define curlcheck_seek_cb(expr) \
  650. (curlcheck_NULL(expr) || \
  651. curlcheck_cb_compatible((expr), curl_seek_callback) || \
  652. curlcheck_cb_compatible((expr), _curl_seek_callback1) || \
  653. curlcheck_cb_compatible((expr), _curl_seek_callback2))
  654. typedef CURLcode (*_curl_seek_callback1)(void *, curl_off_t, int);
  655. typedef CURLcode (*_curl_seek_callback2)(const void *, curl_off_t, int);
  656. #endif /* CURLINC_TYPECHECK_GCC_H */