BIO_s_accept.pod 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. =pod
  2. =head1 NAME
  3. BIO_s_accept, BIO_set_accept_name, BIO_set_accept_port, BIO_get_accept_name,
  4. BIO_get_accept_port, BIO_new_accept, BIO_set_nbio_accept, BIO_set_accept_bios,
  5. BIO_get_peer_name, BIO_get_peer_port,
  6. BIO_get_accept_ip_family, BIO_set_accept_ip_family,
  7. BIO_set_bind_mode, BIO_get_bind_mode, BIO_do_accept - accept BIO
  8. =head1 SYNOPSIS
  9. #include <openssl/bio.h>
  10. const BIO_METHOD *BIO_s_accept(void);
  11. long BIO_set_accept_name(BIO *b, char *name);
  12. char *BIO_get_accept_name(BIO *b);
  13. long BIO_set_accept_port(BIO *b, char *port);
  14. char *BIO_get_accept_port(BIO *b);
  15. BIO *BIO_new_accept(char *host_port);
  16. long BIO_set_nbio_accept(BIO *b, int n);
  17. long BIO_set_accept_bios(BIO *b, char *bio);
  18. char *BIO_get_peer_name(BIO *b);
  19. char *BIO_get_peer_port(BIO *b);
  20. long BIO_get_accept_ip_family(BIO *b);
  21. long BIO_set_accept_ip_family(BIO *b, long family);
  22. long BIO_set_bind_mode(BIO *b, long mode);
  23. long BIO_get_bind_mode(BIO *b);
  24. int BIO_do_accept(BIO *b);
  25. =head1 DESCRIPTION
  26. BIO_s_accept() returns the accept BIO method. This is a wrapper
  27. round the platform's TCP/IP socket accept routines.
  28. Using accept BIOs, TCP/IP connections can be accepted and data
  29. transferred using only BIO routines. In this way any platform
  30. specific operations are hidden by the BIO abstraction.
  31. Read and write operations on an accept BIO will perform I/O
  32. on the underlying connection. If no connection is established
  33. and the port (see below) is set up properly then the BIO
  34. waits for an incoming connection.
  35. Accept BIOs support BIO_puts() but not BIO_gets().
  36. If the close flag is set on an accept BIO then any active
  37. connection on that chain is shutdown and the socket closed when
  38. the BIO is freed.
  39. Calling BIO_reset() on an accept BIO will close any active
  40. connection and reset the BIO into a state where it awaits another
  41. incoming connection.
  42. BIO_get_fd() and BIO_set_fd() can be called to retrieve or set
  43. the accept socket. See L<BIO_s_fd(3)>
  44. BIO_set_accept_name() uses the string B<name> to set the accept
  45. name. The name is represented as a string of the form "host:port",
  46. where "host" is the interface to use and "port" is the port.
  47. The host can be "*" or empty which is interpreted as meaning
  48. any interface. If the host is an IPv6 address, it has to be
  49. enclosed in brackets, for example "[::1]:https". "port" has the
  50. same syntax as the port specified in BIO_set_conn_port() for
  51. connect BIOs, that is it can be a numerical port string or a
  52. string to lookup using getservbyname() and a string table.
  53. BIO_set_accept_port() uses the string B<port> to set the accept
  54. port of BIO I<b>. "port" has the same syntax as the port specified in
  55. BIO_set_conn_port() for connect BIOs, that is it can be a numerical
  56. port string or a string to lookup using getservbyname() and a string
  57. table.
  58. If the given port is C<0> then a random available port is chosen.
  59. It may be queried using BIO_sock_info() and L<BIO_ADDR_service_string(3)>.
  60. BIO_new_accept() combines BIO_new() and BIO_set_accept_name() into
  61. a single call: that is it creates a new accept BIO with port
  62. B<host_port>.
  63. BIO_set_nbio_accept() sets the accept socket to blocking mode
  64. (the default) if B<n> is 0 or non blocking mode if B<n> is 1.
  65. BIO_set_accept_bios() can be used to set a chain of BIOs which
  66. will be duplicated and prepended to the chain when an incoming
  67. connection is received. This is useful if, for example, a
  68. buffering or SSL BIO is required for each connection. The
  69. chain of BIOs must not be freed after this call, they will
  70. be automatically freed when the accept BIO is freed.
  71. BIO_get_accept_ip_family() returns the IP family accepted by the BIO I<b>,
  72. which may be B<BIO_FAMILY_IPV4>, B<BIO_FAMILY_IPV6>, or B<BIO_FAMILY_IPANY>.
  73. BIO_set_accept_ip_family() sets the IP family I<family> accepted by BIO I<b>.
  74. The default is B<BIO_FAMILY_IPANY>.
  75. BIO_set_bind_mode() and BIO_get_bind_mode() set and retrieve
  76. the current bind mode. If B<BIO_BIND_NORMAL> (the default) is set
  77. then another socket cannot be bound to the same port. If
  78. B<BIO_BIND_REUSEADDR> is set then other sockets can bind to the
  79. same port. If B<BIO_BIND_REUSEADDR_IF_UNUSED> is set then and
  80. attempt is first made to use BIO_BIN_NORMAL, if this fails
  81. and the port is not in use then a second attempt is made
  82. using B<BIO_BIND_REUSEADDR>.
  83. BIO_do_accept() serves two functions. When it is first
  84. called, after the accept BIO has been setup, it will attempt
  85. to create the accept socket and bind an address to it. Second
  86. and subsequent calls to BIO_do_accept() will await an incoming
  87. connection, or request a retry in non blocking mode.
  88. =head1 NOTES
  89. When an accept BIO is at the end of a chain it will await an
  90. incoming connection before processing I/O calls. When an accept
  91. BIO is not at then end of a chain it passes I/O calls to the next
  92. BIO in the chain.
  93. When a connection is established a new socket BIO is created for
  94. the connection and appended to the chain. That is the chain is now
  95. accept->socket. This effectively means that attempting I/O on
  96. an initial accept socket will await an incoming connection then
  97. perform I/O on it.
  98. If any additional BIOs have been set using BIO_set_accept_bios()
  99. then they are placed between the socket and the accept BIO,
  100. that is the chain will be accept->otherbios->socket.
  101. If a server wishes to process multiple connections (as is normally
  102. the case) then the accept BIO must be made available for further
  103. incoming connections. This can be done by waiting for a connection and
  104. then calling:
  105. connection = BIO_pop(accept);
  106. After this call B<connection> will contain a BIO for the recently
  107. established connection and B<accept> will now be a single BIO
  108. again which can be used to await further incoming connections.
  109. If no further connections will be accepted the B<accept> can
  110. be freed using BIO_free().
  111. If only a single connection will be processed it is possible to
  112. perform I/O using the accept BIO itself. This is often undesirable
  113. however because the accept BIO will still accept additional incoming
  114. connections. This can be resolved by using BIO_pop() (see above)
  115. and freeing up the accept BIO after the initial connection.
  116. If the underlying accept socket is nonblocking and BIO_do_accept() is
  117. called to await an incoming connection it is possible for
  118. BIO_should_io_special() with the reason BIO_RR_ACCEPT. If this happens
  119. then it is an indication that an accept attempt would block: the application
  120. should take appropriate action to wait until the underlying socket has
  121. accepted a connection and retry the call.
  122. BIO_set_accept_name(), BIO_get_accept_name(), BIO_set_accept_port(),
  123. BIO_get_accept_port(), BIO_set_nbio_accept(), BIO_set_accept_bios(),
  124. BIO_get_peer_name(), BIO_get_peer_port(),
  125. BIO_get_accept_ip_family(), BIO_set_accept_ip_family(),
  126. BIO_set_bind_mode(), BIO_get_bind_mode() and BIO_do_accept() are macros.
  127. =head1 RETURN VALUES
  128. BIO_do_accept(),
  129. BIO_set_accept_name(), BIO_set_accept_port(), BIO_set_nbio_accept(),
  130. BIO_set_accept_bios(), BIO_set_accept_ip_family(), and BIO_set_bind_mode()
  131. return 1 for success and 0 or -1 for failure.
  132. BIO_get_accept_name() returns the accept name or NULL on error.
  133. BIO_get_peer_name() returns the peer name or NULL on error.
  134. BIO_get_accept_port() returns the accept port as a string or NULL on error.
  135. BIO_get_peer_port() returns the peer port as a string or NULL on error.
  136. BIO_get_accept_ip_family() returns the IP family or -1 on error.
  137. BIO_get_bind_mode() returns the set of B<BIO_BIND> flags, or -1 on failure.
  138. BIO_new_accept() returns a BIO or NULL on error.
  139. =head1 EXAMPLES
  140. This example accepts two connections on port 4444, sends messages
  141. down each and finally closes both down.
  142. BIO *abio, *cbio, *cbio2;
  143. /* First call to BIO_accept() sets up accept BIO */
  144. abio = BIO_new_accept("4444");
  145. if (BIO_do_accept(abio) <= 0) {
  146. fprintf(stderr, "Error setting up accept\n");
  147. ERR_print_errors_fp(stderr);
  148. exit(1);
  149. }
  150. /* Wait for incoming connection */
  151. if (BIO_do_accept(abio) <= 0) {
  152. fprintf(stderr, "Error accepting connection\n");
  153. ERR_print_errors_fp(stderr);
  154. exit(1);
  155. }
  156. fprintf(stderr, "Connection 1 established\n");
  157. /* Retrieve BIO for connection */
  158. cbio = BIO_pop(abio);
  159. BIO_puts(cbio, "Connection 1: Sending out Data on initial connection\n");
  160. fprintf(stderr, "Sent out data on connection 1\n");
  161. /* Wait for another connection */
  162. if (BIO_do_accept(abio) <= 0) {
  163. fprintf(stderr, "Error accepting connection\n");
  164. ERR_print_errors_fp(stderr);
  165. exit(1);
  166. }
  167. fprintf(stderr, "Connection 2 established\n");
  168. /* Close accept BIO to refuse further connections */
  169. cbio2 = BIO_pop(abio);
  170. BIO_free(abio);
  171. BIO_puts(cbio2, "Connection 2: Sending out Data on second\n");
  172. fprintf(stderr, "Sent out data on connection 2\n");
  173. BIO_puts(cbio, "Connection 1: Second connection established\n");
  174. /* Close the two established connections */
  175. BIO_free(cbio);
  176. BIO_free(cbio2);
  177. =head1 COPYRIGHT
  178. Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.
  179. Licensed under the Apache License 2.0 (the "License"). You may not use
  180. this file except in compliance with the License. You can obtain a copy
  181. in the file LICENSE in the source distribution or at
  182. L<https://www.openssl.org/source/license.html>.
  183. =cut