| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | =pod | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NAME | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SSL_CTX_set_async_callback, | 
					
						
							|  |  |  | SSL_CTX_set_async_callback_arg, | 
					
						
							|  |  |  | SSL_set_async_callback, | 
					
						
							|  |  |  | SSL_set_async_callback_arg, | 
					
						
							|  |  |  | SSL_get_async_status, | 
					
						
							|  |  |  | SSL_async_callback_fn | 
					
						
							|  |  |  | - manage asynchronous operations | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 SYNOPSIS | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-29 23:10:59 +08:00
										 |  |  | =for openssl multiple includes | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  #include <openssl/ssl.h> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  typedef int (*SSL_async_callback_fn)(SSL *s, void *arg); | 
					
						
							|  |  |  |  int SSL_CTX_set_async_callback(SSL_CTX *ctx, SSL_async_callback_fn callback); | 
					
						
							|  |  |  |  int SSL_CTX_set_async_callback_arg(SSL_CTX *ctx, void *arg); | 
					
						
							|  |  |  |  int SSL_set_async_callback(SSL *s, SSL_async_callback_fn callback); | 
					
						
							|  |  |  |  int SSL_set_async_callback_arg(SSL *s, void *arg); | 
					
						
							|  |  |  |  int SSL_get_async_status(SSL *s, int *status); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 DESCRIPTION | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-28 14:45:05 +08:00
										 |  |  | SSL_CTX_set_async_callback() sets an asynchronous callback function. All B<SSL> | 
					
						
							|  |  |  | objects generated based on this B<SSL_CTX> will get this callback. If an engine | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | supports the callback mechanism, it will be automatically called if | 
					
						
							| 
									
										
										
										
											2019-09-28 14:45:05 +08:00
										 |  |  | B<SSL_MODE_ASYNC> has been set and an asynchronous capable engine completes a | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | cryptography operation to notify the application to resume the paused work flow. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SSL_CTX_set_async_callback_arg() sets the callback argument. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SSL_set_async_callback() allows an application to set a callback in an | 
					
						
							| 
									
										
										
										
											2019-09-28 14:45:05 +08:00
										 |  |  | asynchronous B<SSL> object, so that when an engine completes a cryptography | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | operation, the callback will be called to notify the application to resume the | 
					
						
							|  |  |  | paused work flow. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-28 14:45:05 +08:00
										 |  |  | SSL_set_async_callback_arg() sets an argument for the B<SSL> object when the | 
					
						
							|  |  |  | above callback is called. | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | SSL_get_async_status() returns the engine status. This function facilitates the | 
					
						
							|  |  |  | communication from the engine to the application. During an SSL session, | 
					
						
							|  |  |  | cryptographic operations are dispatched to an engine. The engine status is very | 
					
						
							|  |  |  | useful for an application to know if the operation has been successfully | 
					
						
							|  |  |  | dispatched. If the engine does not support this additional callback method, | 
					
						
							| 
									
										
										
										
											2019-09-28 14:45:05 +08:00
										 |  |  | B<ASYNC_STATUS_UNSUPPORTED> will be returned. See ASYNC_WAIT_CTX_set_status() | 
					
						
							|  |  |  | for a description of all of the status values. | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-28 14:45:05 +08:00
										 |  |  | An example of the above functions would be the following: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =over 4 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =item 1. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-21 08:59:56 +08:00
										 |  |  | Application sets the async callback and callback data on an SSL connection | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | by calling SSL_set_async_callback(). | 
					
						
							| 
									
										
										
										
											2019-09-28 14:45:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =item 2. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Application sets B<SSL_MODE_ASYNC> and makes an asynchronous SSL call | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =item 3. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OpenSSL submits the asynchronous request to the engine. If a retry occurs at | 
					
						
							|  |  |  | this point then the status within the B<ASYNC_WAIT_CTX> would be set and the | 
					
						
							|  |  |  | async callback function would be called (goto Step 7). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =item 4. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The OpenSSL engine pauses the current job and returns, so that the | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | application can continue processing other connections. | 
					
						
							| 
									
										
										
										
											2019-09-28 14:45:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =item 5. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | At a future point in time (probably via a polling mechanism or via an | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | interrupt) the engine will become aware that the asynchronous request has | 
					
						
							|  |  |  | finished processing. | 
					
						
							| 
									
										
										
										
											2019-09-28 14:45:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =item 6. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The engine will call the application's callback passing the callback data as | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | a parameter. | 
					
						
							| 
									
										
										
										
											2019-09-28 14:45:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =item 7. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The callback function should then run. Note: it is a requirement that the | 
					
						
							| 
									
										
										
										
											2020-07-17 18:31:26 +08:00
										 |  |  | callback function is small and nonblocking as it will be run in the context of | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | a polling mechanism or an interrupt. | 
					
						
							| 
									
										
										
										
											2019-09-28 14:45:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =item 8. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | It is the application's responsibility via the callback function to schedule | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | recalling the OpenSSL asynchronous function and to continue processing. | 
					
						
							| 
									
										
										
										
											2019-09-28 14:45:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =item 9. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The callback function has the option to check the status returned via | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | SSL_get_async_status() to determine whether a retry happened instead of the | 
					
						
							|  |  |  | request being submitted, allowing different processing if required. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-28 14:45:05 +08:00
										 |  |  | =back | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | =head1 RETURN VALUES | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SSL_CTX_set_async_callback(), SSL_set_async_callback(), | 
					
						
							|  |  |  | SSL_CTX_set_async_callback_arg(), SSL_CTX_set_async_callback_arg() and | 
					
						
							|  |  |  | SSL_get_async_status() return 1 on success or 0 on error. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-02 00:27:29 +08:00
										 |  |  | =head1 SEE ALSO | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | L<ssl(7)> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | =head1 HISTORY | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SSL_CTX_set_async_callback(), SSL_CTX_set_async_callback_arg(), | 
					
						
							|  |  |  | SSL_set_async_callback(), SSL_set_async_callback_arg() and | 
					
						
							| 
									
										
										
										
											2019-07-15 21:03:44 +08:00
										 |  |  | SSL_get_async_status() were first added to OpenSSL 3.0. | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 COPYRIGHT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-15 21:09:49 +08:00
										 |  |  | Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-27 12:59:50 +08:00
										 |  |  | Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2018-11-06 04:41:01 +08:00
										 |  |  | this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  | in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  | L<https://www.openssl.org/source/license.html>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =cut |