Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2014, Google Inc. |
| 2 | * |
| 3 | * Permission to use, copy, modify, and/or distribute this software for any |
| 4 | * purpose with or without fee is hereby granted, provided that the above |
| 5 | * copyright notice and this permission notice appear in all copies. |
| 6 | * |
| 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION |
| 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN |
| 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ |
| 14 | |
| 15 | #ifndef OPENSSL_HEADER_ENGINE_H |
| 16 | #define OPENSSL_HEADER_ENGINE_H |
| 17 | |
| 18 | #include <openssl/base.h> |
| 19 | |
| 20 | #if defined(__cplusplus) |
| 21 | extern "C" { |
| 22 | #endif |
| 23 | |
| 24 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 25 | // Engines are collections of methods. Methods are tables of function pointers, |
| 26 | // defined for certain algorithms, that allow operations on those algorithms to |
| 27 | // be overridden via a callback. This can be used, for example, to implement an |
| 28 | // RSA* that forwards operations to a hardware module. |
| 29 | // |
| 30 | // Methods are reference counted but |ENGINE|s are not. When creating a method, |
| 31 | // you should zero the whole structure and fill in the function pointers that |
| 32 | // you wish before setting it on an |ENGINE|. Any functions pointers that |
| 33 | // are NULL indicate that the default behaviour should be used. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 34 | |
| 35 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 36 | // Allocation and destruction. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 37 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 38 | // ENGINE_new returns an empty ENGINE that uses the default method for all |
| 39 | // algorithms. |
David Benjamin | c44d2f4 | 2014-08-20 16:24:00 -0400 | [diff] [blame] | 40 | OPENSSL_EXPORT ENGINE *ENGINE_new(void); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 41 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 42 | // ENGINE_free decrements the reference counts for all methods linked from |
David Benjamin | 9df41ae | 2019-04-16 12:49:41 -0500 | [diff] [blame] | 43 | // |engine| and frees |engine| itself. It returns one. |
| 44 | OPENSSL_EXPORT int ENGINE_free(ENGINE *engine); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 45 | |
| 46 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 47 | // Method accessors. |
| 48 | // |
| 49 | // Method accessors take a method pointer and the size of the structure. The |
| 50 | // size allows for ABI compatibility in the case that the method structure is |
| 51 | // extended with extra elements at the end. Methods are always copied by the |
| 52 | // set functions. |
| 53 | // |
| 54 | // Set functions return one on success and zero on allocation failure. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 55 | |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 56 | OPENSSL_EXPORT int ENGINE_set_RSA_method(ENGINE *engine, |
| 57 | const RSA_METHOD *method, |
| 58 | size_t method_size); |
| 59 | OPENSSL_EXPORT RSA_METHOD *ENGINE_get_RSA_method(const ENGINE *engine); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 60 | |
Adam Langley | eb7d2ed | 2014-07-30 16:02:14 -0700 | [diff] [blame] | 61 | OPENSSL_EXPORT int ENGINE_set_ECDSA_method(ENGINE *engine, |
| 62 | const ECDSA_METHOD *method, |
| 63 | size_t method_size); |
| 64 | OPENSSL_EXPORT ECDSA_METHOD *ENGINE_get_ECDSA_method(const ENGINE *engine); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 65 | |
| 66 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 67 | // Generic method functions. |
| 68 | // |
| 69 | // These functions take a void* type but actually operate on all method |
| 70 | // structures. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 71 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 72 | // METHOD_ref increments the reference count of |method|. This is a no-op for |
| 73 | // now because all methods are currently static. |
Adam Langley | 4e04ee8 | 2015-02-03 17:20:06 -0800 | [diff] [blame] | 74 | void METHOD_ref(void *method); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 75 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 76 | // METHOD_unref decrements the reference count of |method| and frees it if the |
| 77 | // reference count drops to zero. This is a no-op for now because all methods |
| 78 | // are currently static. |
Adam Langley | 4e04ee8 | 2015-02-03 17:20:06 -0800 | [diff] [blame] | 79 | void METHOD_unref(void *method); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 80 | |
| 81 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 82 | // Private functions. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 83 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 84 | // openssl_method_common_st contains the common part of all method structures. |
| 85 | // This must be the first member of all method structures. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 86 | struct openssl_method_common_st { |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 87 | int references; // dummy – not used. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 88 | char is_static; |
| 89 | }; |
| 90 | |
| 91 | |
| 92 | #if defined(__cplusplus) |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 93 | } // extern C |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 94 | |
| 95 | extern "C++" { |
| 96 | |
Joshua Liebow-Feeser | 8c7c635 | 2018-08-26 18:53:36 -0700 | [diff] [blame] | 97 | BSSL_NAMESPACE_BEGIN |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 98 | |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 99 | BORINGSSL_MAKE_DELETER(ENGINE, ENGINE_free) |
| 100 | |
Joshua Liebow-Feeser | 8c7c635 | 2018-08-26 18:53:36 -0700 | [diff] [blame] | 101 | BSSL_NAMESPACE_END |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 102 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 103 | } // extern C++ |
Matt Braithwaite | d17d74d | 2016-08-17 20:10:28 -0700 | [diff] [blame] | 104 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 105 | #endif |
| 106 | |
Adam Langley | 7ea8481 | 2014-10-09 16:26:09 -0700 | [diff] [blame] | 107 | #define ENGINE_R_OPERATION_NOT_SUPPORTED 100 |
| 108 | |
David Benjamin | 4512b79 | 2017-08-18 19:21:50 -0400 | [diff] [blame] | 109 | #endif // OPENSSL_HEADER_ENGINE_H |