bio.h.in 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975
  1. /*
  2. * {- join("\n * ", @autowarntext) -}
  3. *
  4. * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
  5. *
  6. * Licensed under the Apache License 2.0 (the "License"). You may not use
  7. * this file except in compliance with the License. You can obtain a copy
  8. * in the file LICENSE in the source distribution or at
  9. * https://www.openssl.org/source/license.html
  10. */
  11. {-
  12. use OpenSSL::stackhash qw(generate_stack_macros);
  13. -}
  14. #ifndef OPENSSL_BIO_H
  15. # define OPENSSL_BIO_H
  16. # pragma once
  17. # include <openssl/macros.h>
  18. # ifndef OPENSSL_NO_DEPRECATED_3_0
  19. # define HEADER_BIO_H
  20. # endif
  21. # include <openssl/e_os2.h>
  22. # ifndef OPENSSL_NO_STDIO
  23. # include <stdio.h>
  24. # endif
  25. # include <stdarg.h>
  26. # include <openssl/crypto.h>
  27. # include <openssl/bioerr.h>
  28. # include <openssl/core.h>
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. /* There are the classes of BIOs */
  33. # define BIO_TYPE_DESCRIPTOR 0x0100 /* socket, fd, connect or accept */
  34. # define BIO_TYPE_FILTER 0x0200
  35. # define BIO_TYPE_SOURCE_SINK 0x0400
  36. /* These are the 'types' of BIOs */
  37. # define BIO_TYPE_NONE 0
  38. # define BIO_TYPE_MEM ( 1|BIO_TYPE_SOURCE_SINK)
  39. # define BIO_TYPE_FILE ( 2|BIO_TYPE_SOURCE_SINK)
  40. # define BIO_TYPE_FD ( 4|BIO_TYPE_SOURCE_SINK|BIO_TYPE_DESCRIPTOR)
  41. # define BIO_TYPE_SOCKET ( 5|BIO_TYPE_SOURCE_SINK|BIO_TYPE_DESCRIPTOR)
  42. # define BIO_TYPE_NULL ( 6|BIO_TYPE_SOURCE_SINK)
  43. # define BIO_TYPE_SSL ( 7|BIO_TYPE_FILTER)
  44. # define BIO_TYPE_MD ( 8|BIO_TYPE_FILTER)
  45. # define BIO_TYPE_BUFFER ( 9|BIO_TYPE_FILTER)
  46. # define BIO_TYPE_CIPHER (10|BIO_TYPE_FILTER)
  47. # define BIO_TYPE_BASE64 (11|BIO_TYPE_FILTER)
  48. # define BIO_TYPE_CONNECT (12|BIO_TYPE_SOURCE_SINK|BIO_TYPE_DESCRIPTOR)
  49. # define BIO_TYPE_ACCEPT (13|BIO_TYPE_SOURCE_SINK|BIO_TYPE_DESCRIPTOR)
  50. # define BIO_TYPE_NBIO_TEST (16|BIO_TYPE_FILTER)/* server proxy BIO */
  51. # define BIO_TYPE_NULL_FILTER (17|BIO_TYPE_FILTER)
  52. # define BIO_TYPE_BIO (19|BIO_TYPE_SOURCE_SINK)/* half a BIO pair */
  53. # define BIO_TYPE_LINEBUFFER (20|BIO_TYPE_FILTER)
  54. # define BIO_TYPE_DGRAM (21|BIO_TYPE_SOURCE_SINK|BIO_TYPE_DESCRIPTOR)
  55. # define BIO_TYPE_ASN1 (22|BIO_TYPE_FILTER)
  56. # define BIO_TYPE_COMP (23|BIO_TYPE_FILTER)
  57. # ifndef OPENSSL_NO_SCTP
  58. # define BIO_TYPE_DGRAM_SCTP (24|BIO_TYPE_SOURCE_SINK|BIO_TYPE_DESCRIPTOR)
  59. # endif
  60. # define BIO_TYPE_CORE_TO_PROV (25|BIO_TYPE_SOURCE_SINK)
  61. # define BIO_TYPE_DGRAM_PAIR (26|BIO_TYPE_SOURCE_SINK)
  62. # define BIO_TYPE_DGRAM_MEM (27|BIO_TYPE_SOURCE_SINK)
  63. #define BIO_TYPE_START 128
  64. /*
  65. * BIO_FILENAME_READ|BIO_CLOSE to open or close on free.
  66. * BIO_set_fp(in,stdin,BIO_NOCLOSE);
  67. */
  68. # define BIO_NOCLOSE 0x00
  69. # define BIO_CLOSE 0x01
  70. /*
  71. * These are used in the following macros and are passed to BIO_ctrl()
  72. */
  73. # define BIO_CTRL_RESET 1/* opt - rewind/zero etc */
  74. # define BIO_CTRL_EOF 2/* opt - are we at the eof */
  75. # define BIO_CTRL_INFO 3/* opt - extra tit-bits */
  76. # define BIO_CTRL_SET 4/* man - set the 'IO' type */
  77. # define BIO_CTRL_GET 5/* man - get the 'IO' type */
  78. # define BIO_CTRL_PUSH 6/* opt - internal, used to signify change */
  79. # define BIO_CTRL_POP 7/* opt - internal, used to signify change */
  80. # define BIO_CTRL_GET_CLOSE 8/* man - set the 'close' on free */
  81. # define BIO_CTRL_SET_CLOSE 9/* man - set the 'close' on free */
  82. # define BIO_CTRL_PENDING 10/* opt - is their more data buffered */
  83. # define BIO_CTRL_FLUSH 11/* opt - 'flush' buffered output */
  84. # define BIO_CTRL_DUP 12/* man - extra stuff for 'duped' BIO */
  85. # define BIO_CTRL_WPENDING 13/* opt - number of bytes still to write */
  86. # define BIO_CTRL_SET_CALLBACK 14/* opt - set callback function */
  87. # define BIO_CTRL_GET_CALLBACK 15/* opt - set callback function */
  88. # define BIO_CTRL_PEEK 29/* BIO_f_buffer special */
  89. # define BIO_CTRL_SET_FILENAME 30/* BIO_s_file special */
  90. /* dgram BIO stuff */
  91. # define BIO_CTRL_DGRAM_CONNECT 31/* BIO dgram special */
  92. # define BIO_CTRL_DGRAM_SET_CONNECTED 32/* allow for an externally connected
  93. * socket to be passed in */
  94. # define BIO_CTRL_DGRAM_SET_RECV_TIMEOUT 33/* setsockopt, essentially */
  95. # define BIO_CTRL_DGRAM_GET_RECV_TIMEOUT 34/* getsockopt, essentially */
  96. # define BIO_CTRL_DGRAM_SET_SEND_TIMEOUT 35/* setsockopt, essentially */
  97. # define BIO_CTRL_DGRAM_GET_SEND_TIMEOUT 36/* getsockopt, essentially */
  98. # define BIO_CTRL_DGRAM_GET_RECV_TIMER_EXP 37/* flag whether the last */
  99. # define BIO_CTRL_DGRAM_GET_SEND_TIMER_EXP 38/* I/O operation timed out */
  100. /* #ifdef IP_MTU_DISCOVER */
  101. # define BIO_CTRL_DGRAM_MTU_DISCOVER 39/* set DF bit on egress packets */
  102. /* #endif */
  103. # define BIO_CTRL_DGRAM_QUERY_MTU 40/* as kernel for current MTU */
  104. # define BIO_CTRL_DGRAM_GET_FALLBACK_MTU 47
  105. # define BIO_CTRL_DGRAM_GET_MTU 41/* get cached value for MTU */
  106. # define BIO_CTRL_DGRAM_SET_MTU 42/* set cached value for MTU.
  107. * want to use this if asking
  108. * the kernel fails */
  109. # define BIO_CTRL_DGRAM_MTU_EXCEEDED 43/* check whether the MTU was
  110. * exceed in the previous write
  111. * operation */
  112. # define BIO_CTRL_DGRAM_GET_PEER 46
  113. # define BIO_CTRL_DGRAM_SET_PEER 44/* Destination for the data */
  114. # define BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT 45/* Next DTLS handshake timeout
  115. * to adjust socket timeouts */
  116. # define BIO_CTRL_DGRAM_SET_DONT_FRAG 48
  117. # define BIO_CTRL_DGRAM_GET_MTU_OVERHEAD 49
  118. /* Deliberately outside of OPENSSL_NO_SCTP - used in bss_dgram.c */
  119. # define BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE 50
  120. # ifndef OPENSSL_NO_SCTP
  121. /* SCTP stuff */
  122. # define BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY 51
  123. # define BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY 52
  124. # define BIO_CTRL_DGRAM_SCTP_AUTH_CCS_RCVD 53
  125. # define BIO_CTRL_DGRAM_SCTP_GET_SNDINFO 60
  126. # define BIO_CTRL_DGRAM_SCTP_SET_SNDINFO 61
  127. # define BIO_CTRL_DGRAM_SCTP_GET_RCVINFO 62
  128. # define BIO_CTRL_DGRAM_SCTP_SET_RCVINFO 63
  129. # define BIO_CTRL_DGRAM_SCTP_GET_PRINFO 64
  130. # define BIO_CTRL_DGRAM_SCTP_SET_PRINFO 65
  131. # define BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN 70
  132. # endif
  133. # define BIO_CTRL_DGRAM_SET_PEEK_MODE 71
  134. /*
  135. * internal BIO:
  136. * # define BIO_CTRL_SET_KTLS_SEND 72
  137. * # define BIO_CTRL_SET_KTLS_SEND_CTRL_MSG 74
  138. * # define BIO_CTRL_CLEAR_KTLS_CTRL_MSG 75
  139. */
  140. # define BIO_CTRL_GET_KTLS_SEND 73
  141. # define BIO_CTRL_GET_KTLS_RECV 76
  142. # define BIO_CTRL_DGRAM_SCTP_WAIT_FOR_DRY 77
  143. # define BIO_CTRL_DGRAM_SCTP_MSG_WAITING 78
  144. /* BIO_f_prefix controls */
  145. # define BIO_CTRL_SET_PREFIX 79
  146. # define BIO_CTRL_SET_INDENT 80
  147. # define BIO_CTRL_GET_INDENT 81
  148. # define BIO_CTRL_DGRAM_GET_LOCAL_ADDR_CAP 82
  149. # define BIO_CTRL_DGRAM_GET_LOCAL_ADDR_ENABLE 83
  150. # define BIO_CTRL_DGRAM_SET_LOCAL_ADDR_ENABLE 84
  151. # define BIO_CTRL_DGRAM_GET_EFFECTIVE_CAPS 85
  152. # define BIO_CTRL_DGRAM_GET_CAPS 86
  153. # define BIO_CTRL_DGRAM_SET_CAPS 87
  154. # define BIO_CTRL_DGRAM_GET_NO_TRUNC 88
  155. # define BIO_CTRL_DGRAM_SET_NO_TRUNC 89
  156. /*
  157. * internal BIO:
  158. * # define BIO_CTRL_SET_KTLS_TX_ZEROCOPY_SENDFILE 90
  159. */
  160. # define BIO_CTRL_GET_RPOLL_DESCRIPTOR 90
  161. # define BIO_CTRL_GET_WPOLL_DESCRIPTOR 91
  162. # define BIO_DGRAM_CAP_NONE 0U
  163. # define BIO_DGRAM_CAP_HANDLES_SRC_ADDR (1U << 0)
  164. # define BIO_DGRAM_CAP_HANDLES_DST_ADDR (1U << 1)
  165. # define BIO_DGRAM_CAP_PROVIDES_SRC_ADDR (1U << 2)
  166. # define BIO_DGRAM_CAP_PROVIDES_DST_ADDR (1U << 3)
  167. # ifndef OPENSSL_NO_KTLS
  168. # define BIO_get_ktls_send(b) \
  169. (BIO_ctrl(b, BIO_CTRL_GET_KTLS_SEND, 0, NULL) > 0)
  170. # define BIO_get_ktls_recv(b) \
  171. (BIO_ctrl(b, BIO_CTRL_GET_KTLS_RECV, 0, NULL) > 0)
  172. # else
  173. # define BIO_get_ktls_send(b) (0)
  174. # define BIO_get_ktls_recv(b) (0)
  175. # endif
  176. /* modifiers */
  177. # define BIO_FP_READ 0x02
  178. # define BIO_FP_WRITE 0x04
  179. # define BIO_FP_APPEND 0x08
  180. # define BIO_FP_TEXT 0x10
  181. # define BIO_FLAGS_READ 0x01
  182. # define BIO_FLAGS_WRITE 0x02
  183. # define BIO_FLAGS_IO_SPECIAL 0x04
  184. # define BIO_FLAGS_RWS (BIO_FLAGS_READ|BIO_FLAGS_WRITE|BIO_FLAGS_IO_SPECIAL)
  185. # define BIO_FLAGS_SHOULD_RETRY 0x08
  186. # ifndef OPENSSL_NO_DEPRECATED_3_0
  187. /* This #define was replaced by an internal constant and should not be used. */
  188. # define BIO_FLAGS_UPLINK 0
  189. # endif
  190. # define BIO_FLAGS_BASE64_NO_NL 0x100
  191. /*
  192. * This is used with memory BIOs:
  193. * BIO_FLAGS_MEM_RDONLY means we shouldn't free up or change the data in any way;
  194. * BIO_FLAGS_NONCLEAR_RST means we shouldn't clear data on reset.
  195. */
  196. # define BIO_FLAGS_MEM_RDONLY 0x200
  197. # define BIO_FLAGS_NONCLEAR_RST 0x400
  198. # define BIO_FLAGS_IN_EOF 0x800
  199. /* the BIO FLAGS values 0x1000 to 0x8000 are reserved for internal KTLS flags */
  200. typedef union bio_addr_st BIO_ADDR;
  201. typedef struct bio_addrinfo_st BIO_ADDRINFO;
  202. int BIO_get_new_index(void);
  203. void BIO_set_flags(BIO *b, int flags);
  204. int BIO_test_flags(const BIO *b, int flags);
  205. void BIO_clear_flags(BIO *b, int flags);
  206. # define BIO_get_flags(b) BIO_test_flags(b, ~(0x0))
  207. # define BIO_set_retry_special(b) \
  208. BIO_set_flags(b, (BIO_FLAGS_IO_SPECIAL|BIO_FLAGS_SHOULD_RETRY))
  209. # define BIO_set_retry_read(b) \
  210. BIO_set_flags(b, (BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY))
  211. # define BIO_set_retry_write(b) \
  212. BIO_set_flags(b, (BIO_FLAGS_WRITE|BIO_FLAGS_SHOULD_RETRY))
  213. /* These are normally used internally in BIOs */
  214. # define BIO_clear_retry_flags(b) \
  215. BIO_clear_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY))
  216. # define BIO_get_retry_flags(b) \
  217. BIO_test_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY))
  218. /* These should be used by the application to tell why we should retry */
  219. # define BIO_should_read(a) BIO_test_flags(a, BIO_FLAGS_READ)
  220. # define BIO_should_write(a) BIO_test_flags(a, BIO_FLAGS_WRITE)
  221. # define BIO_should_io_special(a) BIO_test_flags(a, BIO_FLAGS_IO_SPECIAL)
  222. # define BIO_retry_type(a) BIO_test_flags(a, BIO_FLAGS_RWS)
  223. # define BIO_should_retry(a) BIO_test_flags(a, BIO_FLAGS_SHOULD_RETRY)
  224. /*
  225. * The next three are used in conjunction with the BIO_should_io_special()
  226. * condition. After this returns true, BIO *BIO_get_retry_BIO(BIO *bio, int
  227. * *reason); will walk the BIO stack and return the 'reason' for the special
  228. * and the offending BIO. Given a BIO, BIO_get_retry_reason(bio) will return
  229. * the code.
  230. */
  231. /*
  232. * Returned from the SSL bio when the certificate retrieval code had an error
  233. */
  234. # define BIO_RR_SSL_X509_LOOKUP 0x01
  235. /* Returned from the connect BIO when a connect would have blocked */
  236. # define BIO_RR_CONNECT 0x02
  237. /* Returned from the accept BIO when an accept would have blocked */
  238. # define BIO_RR_ACCEPT 0x03
  239. /* These are passed by the BIO callback */
  240. # define BIO_CB_FREE 0x01
  241. # define BIO_CB_READ 0x02
  242. # define BIO_CB_WRITE 0x03
  243. # define BIO_CB_PUTS 0x04
  244. # define BIO_CB_GETS 0x05
  245. # define BIO_CB_CTRL 0x06
  246. # define BIO_CB_RECVMMSG 0x07
  247. # define BIO_CB_SENDMMSG 0x08
  248. /*
  249. * The callback is called before and after the underling operation, The
  250. * BIO_CB_RETURN flag indicates if it is after the call
  251. */
  252. # define BIO_CB_RETURN 0x80
  253. # define BIO_CB_return(a) ((a)|BIO_CB_RETURN)
  254. # define BIO_cb_pre(a) (!((a)&BIO_CB_RETURN))
  255. # define BIO_cb_post(a) ((a)&BIO_CB_RETURN)
  256. # ifndef OPENSSL_NO_DEPRECATED_3_0
  257. typedef long (*BIO_callback_fn)(BIO *b, int oper, const char *argp, int argi,
  258. long argl, long ret);
  259. OSSL_DEPRECATEDIN_3_0 BIO_callback_fn BIO_get_callback(const BIO *b);
  260. OSSL_DEPRECATEDIN_3_0 void BIO_set_callback(BIO *b, BIO_callback_fn callback);
  261. OSSL_DEPRECATEDIN_3_0 long BIO_debug_callback(BIO *bio, int cmd,
  262. const char *argp, int argi,
  263. long argl, long ret);
  264. # endif
  265. typedef long (*BIO_callback_fn_ex)(BIO *b, int oper, const char *argp,
  266. size_t len, int argi,
  267. long argl, int ret, size_t *processed);
  268. BIO_callback_fn_ex BIO_get_callback_ex(const BIO *b);
  269. void BIO_set_callback_ex(BIO *b, BIO_callback_fn_ex callback);
  270. long BIO_debug_callback_ex(BIO *bio, int oper, const char *argp, size_t len,
  271. int argi, long argl, int ret, size_t *processed);
  272. char *BIO_get_callback_arg(const BIO *b);
  273. void BIO_set_callback_arg(BIO *b, char *arg);
  274. typedef struct bio_method_st BIO_METHOD;
  275. const char *BIO_method_name(const BIO *b);
  276. int BIO_method_type(const BIO *b);
  277. typedef int BIO_info_cb(BIO *, int, int);
  278. typedef BIO_info_cb bio_info_cb; /* backward compatibility */
  279. {-
  280. generate_stack_macros("BIO");
  281. -}
  282. /* Prefix and suffix callback in ASN1 BIO */
  283. typedef int asn1_ps_func (BIO *b, unsigned char **pbuf, int *plen,
  284. void *parg);
  285. typedef void (*BIO_dgram_sctp_notification_handler_fn) (BIO *b,
  286. void *context,
  287. void *buf);
  288. # ifndef OPENSSL_NO_SCTP
  289. /* SCTP parameter structs */
  290. struct bio_dgram_sctp_sndinfo {
  291. uint16_t snd_sid;
  292. uint16_t snd_flags;
  293. uint32_t snd_ppid;
  294. uint32_t snd_context;
  295. };
  296. struct bio_dgram_sctp_rcvinfo {
  297. uint16_t rcv_sid;
  298. uint16_t rcv_ssn;
  299. uint16_t rcv_flags;
  300. uint32_t rcv_ppid;
  301. uint32_t rcv_tsn;
  302. uint32_t rcv_cumtsn;
  303. uint32_t rcv_context;
  304. };
  305. struct bio_dgram_sctp_prinfo {
  306. uint16_t pr_policy;
  307. uint32_t pr_value;
  308. };
  309. # endif
  310. /* BIO_sendmmsg/BIO_recvmmsg-related definitions */
  311. typedef struct bio_msg_st {
  312. void *data;
  313. size_t data_len;
  314. BIO_ADDR *peer, *local;
  315. uint64_t flags;
  316. } BIO_MSG;
  317. typedef struct bio_mmsg_cb_args_st {
  318. BIO_MSG *msg;
  319. size_t stride, num_msg;
  320. uint64_t flags;
  321. size_t *msgs_processed;
  322. } BIO_MMSG_CB_ARGS;
  323. #define BIO_POLL_DESCRIPTOR_TYPE_NONE 0
  324. #define BIO_POLL_DESCRIPTOR_TYPE_SOCK_FD 1
  325. #define BIO_POLL_DESCRIPTOR_CUSTOM_START 8192
  326. typedef struct bio_poll_descriptor_st {
  327. int type;
  328. union {
  329. int fd;
  330. void *custom;
  331. } value;
  332. } BIO_POLL_DESCRIPTOR;
  333. /*
  334. * #define BIO_CONN_get_param_hostname BIO_ctrl
  335. */
  336. # define BIO_C_SET_CONNECT 100
  337. # define BIO_C_DO_STATE_MACHINE 101
  338. # define BIO_C_SET_NBIO 102
  339. /* # define BIO_C_SET_PROXY_PARAM 103 */
  340. # define BIO_C_SET_FD 104
  341. # define BIO_C_GET_FD 105
  342. # define BIO_C_SET_FILE_PTR 106
  343. # define BIO_C_GET_FILE_PTR 107
  344. # define BIO_C_SET_FILENAME 108
  345. # define BIO_C_SET_SSL 109
  346. # define BIO_C_GET_SSL 110
  347. # define BIO_C_SET_MD 111
  348. # define BIO_C_GET_MD 112
  349. # define BIO_C_GET_CIPHER_STATUS 113
  350. # define BIO_C_SET_BUF_MEM 114
  351. # define BIO_C_GET_BUF_MEM_PTR 115
  352. # define BIO_C_GET_BUFF_NUM_LINES 116
  353. # define BIO_C_SET_BUFF_SIZE 117
  354. # define BIO_C_SET_ACCEPT 118
  355. # define BIO_C_SSL_MODE 119
  356. # define BIO_C_GET_MD_CTX 120
  357. /* # define BIO_C_GET_PROXY_PARAM 121 */
  358. # define BIO_C_SET_BUFF_READ_DATA 122/* data to read first */
  359. # define BIO_C_GET_CONNECT 123
  360. # define BIO_C_GET_ACCEPT 124
  361. # define BIO_C_SET_SSL_RENEGOTIATE_BYTES 125
  362. # define BIO_C_GET_SSL_NUM_RENEGOTIATES 126
  363. # define BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT 127
  364. # define BIO_C_FILE_SEEK 128
  365. # define BIO_C_GET_CIPHER_CTX 129
  366. # define BIO_C_SET_BUF_MEM_EOF_RETURN 130/* return end of input
  367. * value */
  368. # define BIO_C_SET_BIND_MODE 131
  369. # define BIO_C_GET_BIND_MODE 132
  370. # define BIO_C_FILE_TELL 133
  371. # define BIO_C_GET_SOCKS 134
  372. # define BIO_C_SET_SOCKS 135
  373. # define BIO_C_SET_WRITE_BUF_SIZE 136/* for BIO_s_bio */
  374. # define BIO_C_GET_WRITE_BUF_SIZE 137
  375. # define BIO_C_MAKE_BIO_PAIR 138
  376. # define BIO_C_DESTROY_BIO_PAIR 139
  377. # define BIO_C_GET_WRITE_GUARANTEE 140
  378. # define BIO_C_GET_READ_REQUEST 141
  379. # define BIO_C_SHUTDOWN_WR 142
  380. # define BIO_C_NREAD0 143
  381. # define BIO_C_NREAD 144
  382. # define BIO_C_NWRITE0 145
  383. # define BIO_C_NWRITE 146
  384. # define BIO_C_RESET_READ_REQUEST 147
  385. # define BIO_C_SET_MD_CTX 148
  386. # define BIO_C_SET_PREFIX 149
  387. # define BIO_C_GET_PREFIX 150
  388. # define BIO_C_SET_SUFFIX 151
  389. # define BIO_C_GET_SUFFIX 152
  390. # define BIO_C_SET_EX_ARG 153
  391. # define BIO_C_GET_EX_ARG 154
  392. # define BIO_C_SET_CONNECT_MODE 155
  393. # define BIO_C_SET_TFO 156 /* like BIO_C_SET_NBIO */
  394. # define BIO_set_app_data(s,arg) BIO_set_ex_data(s,0,arg)
  395. # define BIO_get_app_data(s) BIO_get_ex_data(s,0)
  396. # define BIO_set_nbio(b,n) BIO_ctrl(b,BIO_C_SET_NBIO,(n),NULL)
  397. # define BIO_set_tfo(b,n) BIO_ctrl(b,BIO_C_SET_TFO,(n),NULL)
  398. # ifndef OPENSSL_NO_SOCK
  399. /* IP families we support, for BIO_s_connect() and BIO_s_accept() */
  400. /* Note: the underlying operating system may not support some of them */
  401. # define BIO_FAMILY_IPV4 4
  402. # define BIO_FAMILY_IPV6 6
  403. # define BIO_FAMILY_IPANY 256
  404. /* BIO_s_connect() */
  405. # define BIO_set_conn_hostname(b,name) BIO_ctrl(b,BIO_C_SET_CONNECT,0, \
  406. (char *)(name))
  407. # define BIO_set_conn_port(b,port) BIO_ctrl(b,BIO_C_SET_CONNECT,1, \
  408. (char *)(port))
  409. # define BIO_set_conn_address(b,addr) BIO_ctrl(b,BIO_C_SET_CONNECT,2, \
  410. (char *)(addr))
  411. # define BIO_set_conn_ip_family(b,f) BIO_int_ctrl(b,BIO_C_SET_CONNECT,3,f)
  412. # define BIO_get_conn_hostname(b) ((const char *)BIO_ptr_ctrl(b,BIO_C_GET_CONNECT,0))
  413. # define BIO_get_conn_port(b) ((const char *)BIO_ptr_ctrl(b,BIO_C_GET_CONNECT,1))
  414. # define BIO_get_conn_address(b) ((const BIO_ADDR *)BIO_ptr_ctrl(b,BIO_C_GET_CONNECT,2))
  415. # define BIO_get_conn_ip_family(b) BIO_ctrl(b,BIO_C_GET_CONNECT,3,NULL)
  416. # define BIO_get_conn_mode(b) BIO_ctrl(b,BIO_C_GET_CONNECT,4,NULL)
  417. # define BIO_set_conn_mode(b,n) BIO_ctrl(b,BIO_C_SET_CONNECT_MODE,(n),NULL)
  418. /* BIO_s_accept() */
  419. # define BIO_set_accept_name(b,name) BIO_ctrl(b,BIO_C_SET_ACCEPT,0, \
  420. (char *)(name))
  421. # define BIO_set_accept_port(b,port) BIO_ctrl(b,BIO_C_SET_ACCEPT,1, \
  422. (char *)(port))
  423. # define BIO_get_accept_name(b) ((const char *)BIO_ptr_ctrl(b,BIO_C_GET_ACCEPT,0))
  424. # define BIO_get_accept_port(b) ((const char *)BIO_ptr_ctrl(b,BIO_C_GET_ACCEPT,1))
  425. # define BIO_get_peer_name(b) ((const char *)BIO_ptr_ctrl(b,BIO_C_GET_ACCEPT,2))
  426. # define BIO_get_peer_port(b) ((const char *)BIO_ptr_ctrl(b,BIO_C_GET_ACCEPT,3))
  427. /* #define BIO_set_nbio(b,n) BIO_ctrl(b,BIO_C_SET_NBIO,(n),NULL) */
  428. # define BIO_set_nbio_accept(b,n) BIO_ctrl(b,BIO_C_SET_ACCEPT,2,(n)?(void *)"a":NULL)
  429. # define BIO_set_accept_bios(b,bio) BIO_ctrl(b,BIO_C_SET_ACCEPT,3, \
  430. (char *)(bio))
  431. # define BIO_set_accept_ip_family(b,f) BIO_int_ctrl(b,BIO_C_SET_ACCEPT,4,f)
  432. # define BIO_get_accept_ip_family(b) BIO_ctrl(b,BIO_C_GET_ACCEPT,4,NULL)
  433. # define BIO_set_tfo_accept(b,n) BIO_ctrl(b,BIO_C_SET_ACCEPT,5,(n)?(void *)"a":NULL)
  434. /* Aliases kept for backward compatibility */
  435. # define BIO_BIND_NORMAL 0
  436. # define BIO_BIND_REUSEADDR BIO_SOCK_REUSEADDR
  437. # define BIO_BIND_REUSEADDR_IF_UNUSED BIO_SOCK_REUSEADDR
  438. # define BIO_set_bind_mode(b,mode) BIO_ctrl(b,BIO_C_SET_BIND_MODE,mode,NULL)
  439. # define BIO_get_bind_mode(b) BIO_ctrl(b,BIO_C_GET_BIND_MODE,0,NULL)
  440. # endif /* OPENSSL_NO_SOCK */
  441. # define BIO_do_connect(b) BIO_do_handshake(b)
  442. # define BIO_do_accept(b) BIO_do_handshake(b)
  443. # define BIO_do_handshake(b) BIO_ctrl(b,BIO_C_DO_STATE_MACHINE,0,NULL)
  444. /* BIO_s_datagram(), BIO_s_fd(), BIO_s_socket(), BIO_s_accept() and BIO_s_connect() */
  445. # define BIO_set_fd(b,fd,c) BIO_int_ctrl(b,BIO_C_SET_FD,c,fd)
  446. # define BIO_get_fd(b,c) BIO_ctrl(b,BIO_C_GET_FD,0,(char *)(c))
  447. /* BIO_s_file() */
  448. # define BIO_set_fp(b,fp,c) BIO_ctrl(b,BIO_C_SET_FILE_PTR,c,(char *)(fp))
  449. # define BIO_get_fp(b,fpp) BIO_ctrl(b,BIO_C_GET_FILE_PTR,0,(char *)(fpp))
  450. /* BIO_s_fd() and BIO_s_file() */
  451. # define BIO_seek(b,ofs) (int)BIO_ctrl(b,BIO_C_FILE_SEEK,ofs,NULL)
  452. # define BIO_tell(b) (int)BIO_ctrl(b,BIO_C_FILE_TELL,0,NULL)
  453. /*
  454. * name is cast to lose const, but might be better to route through a
  455. * function so we can do it safely
  456. */
  457. # ifdef CONST_STRICT
  458. /*
  459. * If you are wondering why this isn't defined, its because CONST_STRICT is
  460. * purely a compile-time kludge to allow const to be checked.
  461. */
  462. int BIO_read_filename(BIO *b, const char *name);
  463. # else
  464. # define BIO_read_filename(b,name) (int)BIO_ctrl(b,BIO_C_SET_FILENAME, \
  465. BIO_CLOSE|BIO_FP_READ,(char *)(name))
  466. # endif
  467. # define BIO_write_filename(b,name) (int)BIO_ctrl(b,BIO_C_SET_FILENAME, \
  468. BIO_CLOSE|BIO_FP_WRITE,name)
  469. # define BIO_append_filename(b,name) (int)BIO_ctrl(b,BIO_C_SET_FILENAME, \
  470. BIO_CLOSE|BIO_FP_APPEND,name)
  471. # define BIO_rw_filename(b,name) (int)BIO_ctrl(b,BIO_C_SET_FILENAME, \
  472. BIO_CLOSE|BIO_FP_READ|BIO_FP_WRITE,name)
  473. /*
  474. * WARNING WARNING, this ups the reference count on the read bio of the SSL
  475. * structure. This is because the ssl read BIO is now pointed to by the
  476. * next_bio field in the bio. So when you free the BIO, make sure you are
  477. * doing a BIO_free_all() to catch the underlying BIO.
  478. */
  479. # define BIO_set_ssl(b,ssl,c) BIO_ctrl(b,BIO_C_SET_SSL,c,(char *)(ssl))
  480. # define BIO_get_ssl(b,sslp) BIO_ctrl(b,BIO_C_GET_SSL,0,(char *)(sslp))
  481. # define BIO_set_ssl_mode(b,client) BIO_ctrl(b,BIO_C_SSL_MODE,client,NULL)
  482. # define BIO_set_ssl_renegotiate_bytes(b,num) \
  483. BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_BYTES,num,NULL)
  484. # define BIO_get_num_renegotiates(b) \
  485. BIO_ctrl(b,BIO_C_GET_SSL_NUM_RENEGOTIATES,0,NULL)
  486. # define BIO_set_ssl_renegotiate_timeout(b,seconds) \
  487. BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT,seconds,NULL)
  488. /* defined in evp.h */
  489. /* #define BIO_set_md(b,md) BIO_ctrl(b,BIO_C_SET_MD,1,(char *)(md)) */
  490. # define BIO_get_mem_data(b,pp) BIO_ctrl(b,BIO_CTRL_INFO,0,(char *)(pp))
  491. # define BIO_set_mem_buf(b,bm,c) BIO_ctrl(b,BIO_C_SET_BUF_MEM,c,(char *)(bm))
  492. # define BIO_get_mem_ptr(b,pp) BIO_ctrl(b,BIO_C_GET_BUF_MEM_PTR,0, \
  493. (char *)(pp))
  494. # define BIO_set_mem_eof_return(b,v) \
  495. BIO_ctrl(b,BIO_C_SET_BUF_MEM_EOF_RETURN,v,NULL)
  496. /* For the BIO_f_buffer() type */
  497. # define BIO_get_buffer_num_lines(b) BIO_ctrl(b,BIO_C_GET_BUFF_NUM_LINES,0,NULL)
  498. # define BIO_set_buffer_size(b,size) BIO_ctrl(b,BIO_C_SET_BUFF_SIZE,size,NULL)
  499. # define BIO_set_read_buffer_size(b,size) BIO_int_ctrl(b,BIO_C_SET_BUFF_SIZE,size,0)
  500. # define BIO_set_write_buffer_size(b,size) BIO_int_ctrl(b,BIO_C_SET_BUFF_SIZE,size,1)
  501. # define BIO_set_buffer_read_data(b,buf,num) BIO_ctrl(b,BIO_C_SET_BUFF_READ_DATA,num,buf)
  502. /* Don't use the next one unless you know what you are doing :-) */
  503. # define BIO_dup_state(b,ret) BIO_ctrl(b,BIO_CTRL_DUP,0,(char *)(ret))
  504. # define BIO_reset(b) (int)BIO_ctrl(b,BIO_CTRL_RESET,0,NULL)
  505. # define BIO_eof(b) (int)BIO_ctrl(b,BIO_CTRL_EOF,0,NULL)
  506. # define BIO_set_close(b,c) (int)BIO_ctrl(b,BIO_CTRL_SET_CLOSE,(c),NULL)
  507. # define BIO_get_close(b) (int)BIO_ctrl(b,BIO_CTRL_GET_CLOSE,0,NULL)
  508. # define BIO_pending(b) (int)BIO_ctrl(b,BIO_CTRL_PENDING,0,NULL)
  509. # define BIO_wpending(b) (int)BIO_ctrl(b,BIO_CTRL_WPENDING,0,NULL)
  510. /* ...pending macros have inappropriate return type */
  511. size_t BIO_ctrl_pending(BIO *b);
  512. size_t BIO_ctrl_wpending(BIO *b);
  513. # define BIO_flush(b) (int)BIO_ctrl(b,BIO_CTRL_FLUSH,0,NULL)
  514. # define BIO_get_info_callback(b,cbp) (int)BIO_ctrl(b,BIO_CTRL_GET_CALLBACK,0, \
  515. cbp)
  516. # define BIO_set_info_callback(b,cb) (int)BIO_callback_ctrl(b,BIO_CTRL_SET_CALLBACK,cb)
  517. /* For the BIO_f_buffer() type */
  518. # define BIO_buffer_get_num_lines(b) BIO_ctrl(b,BIO_CTRL_GET,0,NULL)
  519. # define BIO_buffer_peek(b,s,l) BIO_ctrl(b,BIO_CTRL_PEEK,(l),(s))
  520. /* For BIO_s_bio() */
  521. # define BIO_set_write_buf_size(b,size) (int)BIO_ctrl(b,BIO_C_SET_WRITE_BUF_SIZE,size,NULL)
  522. # define BIO_get_write_buf_size(b,size) (size_t)BIO_ctrl(b,BIO_C_GET_WRITE_BUF_SIZE,size,NULL)
  523. # define BIO_make_bio_pair(b1,b2) (int)BIO_ctrl(b1,BIO_C_MAKE_BIO_PAIR,0,b2)
  524. # define BIO_destroy_bio_pair(b) (int)BIO_ctrl(b,BIO_C_DESTROY_BIO_PAIR,0,NULL)
  525. # define BIO_shutdown_wr(b) (int)BIO_ctrl(b, BIO_C_SHUTDOWN_WR, 0, NULL)
  526. /* macros with inappropriate type -- but ...pending macros use int too: */
  527. # define BIO_get_write_guarantee(b) (int)BIO_ctrl(b,BIO_C_GET_WRITE_GUARANTEE,0,NULL)
  528. # define BIO_get_read_request(b) (int)BIO_ctrl(b,BIO_C_GET_READ_REQUEST,0,NULL)
  529. size_t BIO_ctrl_get_write_guarantee(BIO *b);
  530. size_t BIO_ctrl_get_read_request(BIO *b);
  531. int BIO_ctrl_reset_read_request(BIO *b);
  532. /* ctrl macros for dgram */
  533. # define BIO_ctrl_dgram_connect(b,peer) \
  534. (int)BIO_ctrl(b,BIO_CTRL_DGRAM_CONNECT,0, (char *)(peer))
  535. # define BIO_ctrl_set_connected(b,peer) \
  536. (int)BIO_ctrl(b, BIO_CTRL_DGRAM_SET_CONNECTED, 0, (char *)(peer))
  537. # define BIO_dgram_recv_timedout(b) \
  538. (int)BIO_ctrl(b, BIO_CTRL_DGRAM_GET_RECV_TIMER_EXP, 0, NULL)
  539. # define BIO_dgram_send_timedout(b) \
  540. (int)BIO_ctrl(b, BIO_CTRL_DGRAM_GET_SEND_TIMER_EXP, 0, NULL)
  541. # define BIO_dgram_get_peer(b,peer) \
  542. (int)BIO_ctrl(b, BIO_CTRL_DGRAM_GET_PEER, 0, (char *)(peer))
  543. # define BIO_dgram_set_peer(b,peer) \
  544. (int)BIO_ctrl(b, BIO_CTRL_DGRAM_SET_PEER, 0, (char *)(peer))
  545. # define BIO_dgram_get_mtu_overhead(b) \
  546. (unsigned int)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_MTU_OVERHEAD, 0, NULL)
  547. # define BIO_dgram_get_local_addr_cap(b) \
  548. (int)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_LOCAL_ADDR_CAP, 0, NULL)
  549. # define BIO_dgram_get_local_addr_enable(b, penable) \
  550. (int)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_LOCAL_ADDR_ENABLE, 0, (char *)(penable))
  551. # define BIO_dgram_set_local_addr_enable(b, enable) \
  552. (int)BIO_ctrl((b), BIO_CTRL_DGRAM_SET_LOCAL_ADDR_ENABLE, (enable), NULL)
  553. # define BIO_dgram_get_effective_caps(b) \
  554. (uint32_t)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_EFFECTIVE_CAPS, 0, NULL)
  555. # define BIO_dgram_get_caps(b) \
  556. (uint32_t)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_CAPS, 0, NULL)
  557. # define BIO_dgram_set_caps(b, caps) \
  558. (int)BIO_ctrl((b), BIO_CTRL_DGRAM_SET_CAPS, (long)(caps), NULL)
  559. # define BIO_dgram_get_no_trunc(b) \
  560. (unsigned int)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_NO_TRUNC, 0, NULL)
  561. # define BIO_dgram_set_no_trunc(b, enable) \
  562. (int)BIO_ctrl((b), BIO_CTRL_DGRAM_SET_NO_TRUNC, (enable), NULL)
  563. # define BIO_dgram_get_mtu(b) \
  564. (unsigned int)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_MTU, 0, NULL)
  565. # define BIO_dgram_set_mtu(b, mtu) \
  566. (int)BIO_ctrl((b), BIO_CTRL_DGRAM_SET_MTU, (mtu), NULL)
  567. /* ctrl macros for BIO_f_prefix */
  568. # define BIO_set_prefix(b,p) BIO_ctrl((b), BIO_CTRL_SET_PREFIX, 0, (void *)(p))
  569. # define BIO_set_indent(b,i) BIO_ctrl((b), BIO_CTRL_SET_INDENT, (i), NULL)
  570. # define BIO_get_indent(b) BIO_ctrl((b), BIO_CTRL_GET_INDENT, 0, NULL)
  571. #define BIO_get_ex_new_index(l, p, newf, dupf, freef) \
  572. CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_BIO, l, p, newf, dupf, freef)
  573. int BIO_set_ex_data(BIO *bio, int idx, void *data);
  574. void *BIO_get_ex_data(const BIO *bio, int idx);
  575. uint64_t BIO_number_read(BIO *bio);
  576. uint64_t BIO_number_written(BIO *bio);
  577. /* For BIO_f_asn1() */
  578. int BIO_asn1_set_prefix(BIO *b, asn1_ps_func *prefix,
  579. asn1_ps_func *prefix_free);
  580. int BIO_asn1_get_prefix(BIO *b, asn1_ps_func **pprefix,
  581. asn1_ps_func **pprefix_free);
  582. int BIO_asn1_set_suffix(BIO *b, asn1_ps_func *suffix,
  583. asn1_ps_func *suffix_free);
  584. int BIO_asn1_get_suffix(BIO *b, asn1_ps_func **psuffix,
  585. asn1_ps_func **psuffix_free);
  586. const BIO_METHOD *BIO_s_file(void);
  587. BIO *BIO_new_file(const char *filename, const char *mode);
  588. BIO *BIO_new_from_core_bio(OSSL_LIB_CTX *libctx, OSSL_CORE_BIO *corebio);
  589. # ifndef OPENSSL_NO_STDIO
  590. BIO *BIO_new_fp(FILE *stream, int close_flag);
  591. # endif
  592. BIO *BIO_new_ex(OSSL_LIB_CTX *libctx, const BIO_METHOD *method);
  593. BIO *BIO_new(const BIO_METHOD *type);
  594. int BIO_free(BIO *a);
  595. void BIO_set_data(BIO *a, void *ptr);
  596. void *BIO_get_data(BIO *a);
  597. void BIO_set_init(BIO *a, int init);
  598. int BIO_get_init(BIO *a);
  599. void BIO_set_shutdown(BIO *a, int shut);
  600. int BIO_get_shutdown(BIO *a);
  601. void BIO_vfree(BIO *a);
  602. int BIO_up_ref(BIO *a);
  603. int BIO_read(BIO *b, void *data, int dlen);
  604. int BIO_read_ex(BIO *b, void *data, size_t dlen, size_t *readbytes);
  605. __owur int BIO_recvmmsg(BIO *b, BIO_MSG *msg,
  606. size_t stride, size_t num_msg, uint64_t flags,
  607. size_t *msgs_processed);
  608. int BIO_gets(BIO *bp, char *buf, int size);
  609. int BIO_get_line(BIO *bio, char *buf, int size);
  610. int BIO_write(BIO *b, const void *data, int dlen);
  611. int BIO_write_ex(BIO *b, const void *data, size_t dlen, size_t *written);
  612. __owur int BIO_sendmmsg(BIO *b, BIO_MSG *msg,
  613. size_t stride, size_t num_msg, uint64_t flags,
  614. size_t *msgs_processed);
  615. __owur int BIO_get_rpoll_descriptor(BIO *b, BIO_POLL_DESCRIPTOR *desc);
  616. __owur int BIO_get_wpoll_descriptor(BIO *b, BIO_POLL_DESCRIPTOR *desc);
  617. int BIO_puts(BIO *bp, const char *buf);
  618. int BIO_indent(BIO *b, int indent, int max);
  619. long BIO_ctrl(BIO *bp, int cmd, long larg, void *parg);
  620. long BIO_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp);
  621. void *BIO_ptr_ctrl(BIO *bp, int cmd, long larg);
  622. long BIO_int_ctrl(BIO *bp, int cmd, long larg, int iarg);
  623. BIO *BIO_push(BIO *b, BIO *append);
  624. BIO *BIO_pop(BIO *b);
  625. void BIO_free_all(BIO *a);
  626. BIO *BIO_find_type(BIO *b, int bio_type);
  627. BIO *BIO_next(BIO *b);
  628. void BIO_set_next(BIO *b, BIO *next);
  629. BIO *BIO_get_retry_BIO(BIO *bio, int *reason);
  630. int BIO_get_retry_reason(BIO *bio);
  631. void BIO_set_retry_reason(BIO *bio, int reason);
  632. BIO *BIO_dup_chain(BIO *in);
  633. int BIO_nread0(BIO *bio, char **buf);
  634. int BIO_nread(BIO *bio, char **buf, int num);
  635. int BIO_nwrite0(BIO *bio, char **buf);
  636. int BIO_nwrite(BIO *bio, char **buf, int num);
  637. const BIO_METHOD *BIO_s_mem(void);
  638. # ifndef OPENSSL_NO_DGRAM
  639. const BIO_METHOD *BIO_s_dgram_mem(void);
  640. # endif
  641. const BIO_METHOD *BIO_s_secmem(void);
  642. BIO *BIO_new_mem_buf(const void *buf, int len);
  643. # ifndef OPENSSL_NO_SOCK
  644. const BIO_METHOD *BIO_s_socket(void);
  645. const BIO_METHOD *BIO_s_connect(void);
  646. const BIO_METHOD *BIO_s_accept(void);
  647. # endif
  648. const BIO_METHOD *BIO_s_fd(void);
  649. const BIO_METHOD *BIO_s_log(void);
  650. const BIO_METHOD *BIO_s_bio(void);
  651. const BIO_METHOD *BIO_s_null(void);
  652. const BIO_METHOD *BIO_f_null(void);
  653. const BIO_METHOD *BIO_f_buffer(void);
  654. const BIO_METHOD *BIO_f_readbuffer(void);
  655. const BIO_METHOD *BIO_f_linebuffer(void);
  656. const BIO_METHOD *BIO_f_nbio_test(void);
  657. const BIO_METHOD *BIO_f_prefix(void);
  658. const BIO_METHOD *BIO_s_core(void);
  659. # ifndef OPENSSL_NO_DGRAM
  660. const BIO_METHOD *BIO_s_dgram_pair(void);
  661. const BIO_METHOD *BIO_s_datagram(void);
  662. int BIO_dgram_non_fatal_error(int error);
  663. BIO *BIO_new_dgram(int fd, int close_flag);
  664. # ifndef OPENSSL_NO_SCTP
  665. const BIO_METHOD *BIO_s_datagram_sctp(void);
  666. BIO *BIO_new_dgram_sctp(int fd, int close_flag);
  667. int BIO_dgram_is_sctp(BIO *bio);
  668. int BIO_dgram_sctp_notification_cb(BIO *b,
  669. BIO_dgram_sctp_notification_handler_fn handle_notifications,
  670. void *context);
  671. int BIO_dgram_sctp_wait_for_dry(BIO *b);
  672. int BIO_dgram_sctp_msg_waiting(BIO *b);
  673. # endif
  674. # endif
  675. # ifndef OPENSSL_NO_SOCK
  676. int BIO_sock_should_retry(int i);
  677. int BIO_sock_non_fatal_error(int error);
  678. int BIO_err_is_non_fatal(unsigned int errcode);
  679. int BIO_socket_wait(int fd, int for_read, time_t max_time);
  680. # endif
  681. int BIO_wait(BIO *bio, time_t max_time, unsigned int nap_milliseconds);
  682. int BIO_do_connect_retry(BIO *bio, int timeout, int nap_milliseconds);
  683. int BIO_fd_should_retry(int i);
  684. int BIO_fd_non_fatal_error(int error);
  685. int BIO_dump_cb(int (*cb) (const void *data, size_t len, void *u),
  686. void *u, const void *s, int len);
  687. int BIO_dump_indent_cb(int (*cb) (const void *data, size_t len, void *u),
  688. void *u, const void *s, int len, int indent);
  689. int BIO_dump(BIO *b, const void *bytes, int len);
  690. int BIO_dump_indent(BIO *b, const void *bytes, int len, int indent);
  691. # ifndef OPENSSL_NO_STDIO
  692. int BIO_dump_fp(FILE *fp, const void *s, int len);
  693. int BIO_dump_indent_fp(FILE *fp, const void *s, int len, int indent);
  694. # endif
  695. int BIO_hex_string(BIO *out, int indent, int width, const void *data,
  696. int datalen);
  697. # ifndef OPENSSL_NO_SOCK
  698. BIO_ADDR *BIO_ADDR_new(void);
  699. BIO_ADDR *BIO_ADDR_dup(const BIO_ADDR *ap);
  700. int BIO_ADDR_rawmake(BIO_ADDR *ap, int family,
  701. const void *where, size_t wherelen, unsigned short port);
  702. void BIO_ADDR_free(BIO_ADDR *);
  703. void BIO_ADDR_clear(BIO_ADDR *ap);
  704. int BIO_ADDR_family(const BIO_ADDR *ap);
  705. int BIO_ADDR_rawaddress(const BIO_ADDR *ap, void *p, size_t *l);
  706. unsigned short BIO_ADDR_rawport(const BIO_ADDR *ap);
  707. char *BIO_ADDR_hostname_string(const BIO_ADDR *ap, int numeric);
  708. char *BIO_ADDR_service_string(const BIO_ADDR *ap, int numeric);
  709. char *BIO_ADDR_path_string(const BIO_ADDR *ap);
  710. const BIO_ADDRINFO *BIO_ADDRINFO_next(const BIO_ADDRINFO *bai);
  711. int BIO_ADDRINFO_family(const BIO_ADDRINFO *bai);
  712. int BIO_ADDRINFO_socktype(const BIO_ADDRINFO *bai);
  713. int BIO_ADDRINFO_protocol(const BIO_ADDRINFO *bai);
  714. const BIO_ADDR *BIO_ADDRINFO_address(const BIO_ADDRINFO *bai);
  715. void BIO_ADDRINFO_free(BIO_ADDRINFO *bai);
  716. enum BIO_hostserv_priorities {
  717. BIO_PARSE_PRIO_HOST, BIO_PARSE_PRIO_SERV
  718. };
  719. int BIO_parse_hostserv(const char *hostserv, char **host, char **service,
  720. enum BIO_hostserv_priorities hostserv_prio);
  721. enum BIO_lookup_type {
  722. BIO_LOOKUP_CLIENT, BIO_LOOKUP_SERVER
  723. };
  724. int BIO_lookup(const char *host, const char *service,
  725. enum BIO_lookup_type lookup_type,
  726. int family, int socktype, BIO_ADDRINFO **res);
  727. int BIO_lookup_ex(const char *host, const char *service,
  728. int lookup_type, int family, int socktype, int protocol,
  729. BIO_ADDRINFO **res);
  730. int BIO_sock_error(int sock);
  731. int BIO_socket_ioctl(int fd, long type, void *arg);
  732. int BIO_socket_nbio(int fd, int mode);
  733. int BIO_sock_init(void);
  734. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  735. # define BIO_sock_cleanup() while(0) continue
  736. # endif
  737. int BIO_set_tcp_ndelay(int sock, int turn_on);
  738. # ifndef OPENSSL_NO_DEPRECATED_1_1_0
  739. OSSL_DEPRECATEDIN_1_1_0 struct hostent *BIO_gethostbyname(const char *name);
  740. OSSL_DEPRECATEDIN_1_1_0 int BIO_get_port(const char *str, unsigned short *port_ptr);
  741. OSSL_DEPRECATEDIN_1_1_0 int BIO_get_host_ip(const char *str, unsigned char *ip);
  742. OSSL_DEPRECATEDIN_1_1_0 int BIO_get_accept_socket(char *host_port, int mode);
  743. OSSL_DEPRECATEDIN_1_1_0 int BIO_accept(int sock, char **ip_port);
  744. # endif
  745. union BIO_sock_info_u {
  746. BIO_ADDR *addr;
  747. };
  748. enum BIO_sock_info_type {
  749. BIO_SOCK_INFO_ADDRESS
  750. };
  751. int BIO_sock_info(int sock,
  752. enum BIO_sock_info_type type, union BIO_sock_info_u *info);
  753. # define BIO_SOCK_REUSEADDR 0x01
  754. # define BIO_SOCK_V6_ONLY 0x02
  755. # define BIO_SOCK_KEEPALIVE 0x04
  756. # define BIO_SOCK_NONBLOCK 0x08
  757. # define BIO_SOCK_NODELAY 0x10
  758. # define BIO_SOCK_TFO 0x20
  759. int BIO_socket(int domain, int socktype, int protocol, int options);
  760. int BIO_connect(int sock, const BIO_ADDR *addr, int options);
  761. int BIO_bind(int sock, const BIO_ADDR *addr, int options);
  762. int BIO_listen(int sock, const BIO_ADDR *addr, int options);
  763. int BIO_accept_ex(int accept_sock, BIO_ADDR *addr, int options);
  764. int BIO_closesocket(int sock);
  765. BIO *BIO_new_socket(int sock, int close_flag);
  766. BIO *BIO_new_connect(const char *host_port);
  767. BIO *BIO_new_accept(const char *host_port);
  768. # endif /* OPENSSL_NO_SOCK*/
  769. BIO *BIO_new_fd(int fd, int close_flag);
  770. int BIO_new_bio_pair(BIO **bio1, size_t writebuf1,
  771. BIO **bio2, size_t writebuf2);
  772. # ifndef OPENSSL_NO_DGRAM
  773. int BIO_new_bio_dgram_pair(BIO **bio1, size_t writebuf1,
  774. BIO **bio2, size_t writebuf2);
  775. # endif
  776. /*
  777. * If successful, returns 1 and in *bio1, *bio2 two BIO pair endpoints.
  778. * Otherwise returns 0 and sets *bio1 and *bio2 to NULL. Size 0 uses default
  779. * value.
  780. */
  781. void BIO_copy_next_retry(BIO *b);
  782. /*
  783. * long BIO_ghbn_ctrl(int cmd,int iarg,char *parg);
  784. */
  785. # define ossl_bio__attr__(x)
  786. # if defined(__GNUC__) && defined(__STDC_VERSION__) \
  787. && !defined(__MINGW32__) && !defined(__MINGW64__) \
  788. && !defined(__APPLE__)
  789. /*
  790. * Because we support the 'z' modifier, which made its appearance in C99,
  791. * we can't use __attribute__ with pre C99 dialects.
  792. */
  793. # if __STDC_VERSION__ >= 199901L
  794. # undef ossl_bio__attr__
  795. # define ossl_bio__attr__ __attribute__
  796. # if __GNUC__*10 + __GNUC_MINOR__ >= 44
  797. # define ossl_bio__printf__ __gnu_printf__
  798. # else
  799. # define ossl_bio__printf__ __printf__
  800. # endif
  801. # endif
  802. # endif
  803. int BIO_printf(BIO *bio, const char *format, ...)
  804. ossl_bio__attr__((__format__(ossl_bio__printf__, 2, 3)));
  805. int BIO_vprintf(BIO *bio, const char *format, va_list args)
  806. ossl_bio__attr__((__format__(ossl_bio__printf__, 2, 0)));
  807. int BIO_snprintf(char *buf, size_t n, const char *format, ...)
  808. ossl_bio__attr__((__format__(ossl_bio__printf__, 3, 4)));
  809. int BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args)
  810. ossl_bio__attr__((__format__(ossl_bio__printf__, 3, 0)));
  811. # undef ossl_bio__attr__
  812. # undef ossl_bio__printf__
  813. BIO_METHOD *BIO_meth_new(int type, const char *name);
  814. void BIO_meth_free(BIO_METHOD *biom);
  815. int (*BIO_meth_get_write(const BIO_METHOD *biom)) (BIO *, const char *, int);
  816. int (*BIO_meth_get_write_ex(const BIO_METHOD *biom)) (BIO *, const char *, size_t,
  817. size_t *);
  818. int BIO_meth_set_write(BIO_METHOD *biom,
  819. int (*write) (BIO *, const char *, int));
  820. int BIO_meth_set_write_ex(BIO_METHOD *biom,
  821. int (*bwrite) (BIO *, const char *, size_t, size_t *));
  822. int BIO_meth_set_sendmmsg(BIO_METHOD *biom,
  823. int (*f) (BIO *, BIO_MSG *, size_t, size_t,
  824. uint64_t, size_t *));
  825. int (*BIO_meth_get_sendmmsg(const BIO_METHOD *biom))(BIO *, BIO_MSG *,
  826. size_t, size_t,
  827. uint64_t, size_t *);
  828. int (*BIO_meth_get_read(const BIO_METHOD *biom)) (BIO *, char *, int);
  829. int (*BIO_meth_get_read_ex(const BIO_METHOD *biom)) (BIO *, char *, size_t, size_t *);
  830. int BIO_meth_set_read(BIO_METHOD *biom,
  831. int (*read) (BIO *, char *, int));
  832. int BIO_meth_set_read_ex(BIO_METHOD *biom,
  833. int (*bread) (BIO *, char *, size_t, size_t *));
  834. int BIO_meth_set_recvmmsg(BIO_METHOD *biom,
  835. int (*f) (BIO *, BIO_MSG *, size_t, size_t,
  836. uint64_t, size_t *));
  837. int (*BIO_meth_get_recvmmsg(const BIO_METHOD *biom))(BIO *, BIO_MSG *,
  838. size_t, size_t,
  839. uint64_t, size_t *);
  840. int (*BIO_meth_get_puts(const BIO_METHOD *biom)) (BIO *, const char *);
  841. int BIO_meth_set_puts(BIO_METHOD *biom,
  842. int (*puts) (BIO *, const char *));
  843. int (*BIO_meth_get_gets(const BIO_METHOD *biom)) (BIO *, char *, int);
  844. int BIO_meth_set_gets(BIO_METHOD *biom,
  845. int (*gets) (BIO *, char *, int));
  846. long (*BIO_meth_get_ctrl(const BIO_METHOD *biom)) (BIO *, int, long, void *);
  847. int BIO_meth_set_ctrl(BIO_METHOD *biom,
  848. long (*ctrl) (BIO *, int, long, void *));
  849. int (*BIO_meth_get_create(const BIO_METHOD *bion)) (BIO *);
  850. int BIO_meth_set_create(BIO_METHOD *biom, int (*create) (BIO *));
  851. int (*BIO_meth_get_destroy(const BIO_METHOD *biom)) (BIO *);
  852. int BIO_meth_set_destroy(BIO_METHOD *biom, int (*destroy) (BIO *));
  853. long (*BIO_meth_get_callback_ctrl(const BIO_METHOD *biom))
  854. (BIO *, int, BIO_info_cb *);
  855. int BIO_meth_set_callback_ctrl(BIO_METHOD *biom,
  856. long (*callback_ctrl) (BIO *, int,
  857. BIO_info_cb *));
  858. # ifdef __cplusplus
  859. }
  860. # endif
  861. #endif