SSL_write.pod 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. =pod
  2. =head1 NAME
  3. SSL_write_ex, SSL_write, SSL_sendfile - write bytes to a TLS/SSL connection
  4. =head1 SYNOPSIS
  5. #include <openssl/ssl.h>
  6. ossl_ssize_t SSL_sendfile(SSL *s, int fd, off_t offset, size_t size, int flags);
  7. int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written);
  8. int SSL_write(SSL *ssl, const void *buf, int num);
  9. =head1 DESCRIPTION
  10. SSL_write_ex() and SSL_write() write B<num> bytes from the buffer B<buf> into
  11. the specified B<ssl> connection. On success SSL_write_ex() will store the number
  12. of bytes written in B<*written>.
  13. SSL_sendfile() writes B<size> bytes from offset B<offset> in the file
  14. descriptor B<fd> to the specified SSL connection B<s>. This function provides
  15. efficient zero-copy semantics. SSL_sendfile() is available only when
  16. Kernel TLS is enabled, which can be checked by calling BIO_get_ktls_send().
  17. It is provided here to allow users to maintain the same interface.
  18. The meaning of B<flags> is platform dependent.
  19. Currently, under Linux it is ignored.
  20. =head1 NOTES
  21. In the paragraphs below a "write function" is defined as one of either
  22. SSL_write_ex(), or SSL_write().
  23. If necessary, a write function will negotiate a TLS/SSL session, if not already
  24. explicitly performed by L<SSL_connect(3)> or L<SSL_accept(3)>. If the peer
  25. requests a re-negotiation, it will be performed transparently during
  26. the write function operation. The behaviour of the write functions depends on the
  27. underlying BIO.
  28. For the transparent negotiation to succeed, the B<ssl> must have been
  29. initialized to client or server mode. This is being done by calling
  30. L<SSL_set_connect_state(3)> or SSL_set_accept_state()
  31. before the first call to a write function.
  32. If the underlying BIO is B<blocking>, the write functions will only return, once
  33. the write operation has been finished or an error occurred.
  34. If the underlying BIO is B<non-blocking> the write functions will also return
  35. when the underlying BIO could not satisfy the needs of the function to continue
  36. the operation. In this case a call to L<SSL_get_error(3)> with the
  37. return value of the write function will yield B<SSL_ERROR_WANT_READ>
  38. or B<SSL_ERROR_WANT_WRITE>. As at any time a re-negotiation is possible, a
  39. call to a write function can also cause read operations! The calling process
  40. then must repeat the call after taking appropriate action to satisfy the needs
  41. of the write function. The action depends on the underlying BIO. When using a
  42. non-blocking socket, nothing is to be done, but select() can be used to check
  43. for the required condition. When using a buffering BIO, like a BIO pair, data
  44. must be written into or retrieved out of the BIO before being able to continue.
  45. The write functions will only return with success when the complete contents of
  46. B<buf> of length B<num> has been written. This default behaviour can be changed
  47. with the SSL_MODE_ENABLE_PARTIAL_WRITE option of L<SSL_CTX_set_mode(3)>. When
  48. this flag is set the write functions will also return with success when a
  49. partial write has been successfully completed. In this case the write function
  50. operation is considered completed. The bytes are sent and a new write call with
  51. a new buffer (with the already sent bytes removed) must be started. A partial
  52. write is performed with the size of a message block, which is 16kB.
  53. =head1 WARNING
  54. When a write function call has to be repeated because L<SSL_get_error(3)>
  55. returned B<SSL_ERROR_WANT_READ> or B<SSL_ERROR_WANT_WRITE>, it must be repeated
  56. with the same arguments.
  57. The data that was passed might have been partially processed.
  58. When B<SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER> was set using L<SSL_CTX_set_mode(3)>
  59. the pointer can be different, but the data and length should still be the same.
  60. You should not call SSL_write() with num=0, it will return an error.
  61. SSL_write_ex() can be called with num=0, but will not send application data to
  62. the peer.
  63. =head1 RETURN VALUES
  64. SSL_write_ex() will return 1 for success or 0 for failure. Success means that
  65. all requested application data bytes have been written to the SSL connection or,
  66. if SSL_MODE_ENABLE_PARTIAL_WRITE is in use, at least 1 application data byte has
  67. been written to the SSL connection. Failure means that not all the requested
  68. bytes have been written yet (if SSL_MODE_ENABLE_PARTIAL_WRITE is not in use) or
  69. no bytes could be written to the SSL connection (if
  70. SSL_MODE_ENABLE_PARTIAL_WRITE is in use). Failures can be retryable (e.g. the
  71. network write buffer has temporarily filled up) or non-retryable (e.g. a fatal
  72. network error). In the event of a failure call L<SSL_get_error(3)> to find out
  73. the reason which indicates whether the call is retryable or not.
  74. For SSL_write() the following return values can occur:
  75. =over 4
  76. =item E<gt> 0
  77. The write operation was successful, the return value is the number of
  78. bytes actually written to the TLS/SSL connection.
  79. =item Z<><= 0
  80. The write operation was not successful, because either the connection was
  81. closed, an error occurred or action must be taken by the calling process.
  82. Call SSL_get_error() with the return value B<ret> to find out the reason.
  83. Old documentation indicated a difference between 0 and -1, and that -1 was
  84. retryable.
  85. You should instead call SSL_get_error() to find out if it's retryable.
  86. =back
  87. For SSL_sendfile(), the following return values can occur:
  88. =over 4
  89. =item Z<>>= 0
  90. The write operation was successful, the return value is the number
  91. of bytes of the file written to the TLS/SSL connection.
  92. =item E<lt> 0
  93. The write operation was not successful, because either the connection was
  94. closed, an error occured or action must be taken by the calling process.
  95. Call SSL_get_error() with the return value to find out the reason.
  96. =back
  97. =head1 SEE ALSO
  98. L<SSL_get_error(3)>, L<SSL_read_ex(3)>, L<SSL_read(3)>
  99. L<SSL_CTX_set_mode(3)>, L<SSL_CTX_new(3)>,
  100. L<SSL_connect(3)>, L<SSL_accept(3)>
  101. L<SSL_set_connect_state(3)>, L<BIO_ctrl(3)>,
  102. L<ssl(7)>, L<bio(7)>
  103. =head1 HISTORY
  104. The SSL_write_ex() function was added in OpenSSL 1.1.1.
  105. The SSL_sendfile() function was added in OpenSSL 3.0.0.
  106. =head1 COPYRIGHT
  107. Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
  108. Licensed under the Apache License 2.0 (the "License"). You may not use
  109. this file except in compliance with the License. You can obtain a copy
  110. in the file LICENSE in the source distribution or at
  111. L<https://www.openssl.org/source/license.html>.
  112. =cut