blob: 9d45952772bf9c591555df86f3d962c7e30d9874 [file] [log] [blame]
Adam Langleyd9e397b2015-01-22 14:27:53 -08001/* 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)
21extern "C" {
22#endif
23
24
Robert Sloan8f860b12017-08-28 07:37:06 -070025// 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 Langleyd9e397b2015-01-22 14:27:53 -080034
35
Robert Sloan8f860b12017-08-28 07:37:06 -070036// Allocation and destruction.
Adam Langleyd9e397b2015-01-22 14:27:53 -080037
Robert Sloan8f860b12017-08-28 07:37:06 -070038// ENGINE_new returns an empty ENGINE that uses the default method for all
39// algorithms.
Adam Langleyd9e397b2015-01-22 14:27:53 -080040OPENSSL_EXPORT ENGINE *ENGINE_new(void);
41
Robert Sloan8f860b12017-08-28 07:37:06 -070042// ENGINE_free decrements the reference counts for all methods linked from
Srinivas Paladugudd42a612019-08-09 19:30:39 +000043// |engine| and frees |engine| itself.
44OPENSSL_EXPORT void ENGINE_free(ENGINE *engine);
Adam Langleyd9e397b2015-01-22 14:27:53 -080045
46
Robert Sloan8f860b12017-08-28 07:37:06 -070047// 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 Langleyd9e397b2015-01-22 14:27:53 -080055
Adam Langleyd9e397b2015-01-22 14:27:53 -080056OPENSSL_EXPORT int ENGINE_set_RSA_method(ENGINE *engine,
57 const RSA_METHOD *method,
58 size_t method_size);
59OPENSSL_EXPORT RSA_METHOD *ENGINE_get_RSA_method(const ENGINE *engine);
60
61OPENSSL_EXPORT int ENGINE_set_ECDSA_method(ENGINE *engine,
62 const ECDSA_METHOD *method,
63 size_t method_size);
64OPENSSL_EXPORT ECDSA_METHOD *ENGINE_get_ECDSA_method(const ENGINE *engine);
65
66
Robert Sloan8f860b12017-08-28 07:37:06 -070067// Generic method functions.
68//
69// These functions take a void* type but actually operate on all method
70// structures.
Adam Langleyd9e397b2015-01-22 14:27:53 -080071
Robert Sloan8f860b12017-08-28 07:37:06 -070072// METHOD_ref increments the reference count of |method|. This is a no-op for
73// now because all methods are currently static.
Adam Langleye9ada862015-05-11 17:20:37 -070074void METHOD_ref(void *method);
Adam Langleyd9e397b2015-01-22 14:27:53 -080075
Robert Sloan8f860b12017-08-28 07:37:06 -070076// 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 Langleye9ada862015-05-11 17:20:37 -070079void METHOD_unref(void *method);
Adam Langleyd9e397b2015-01-22 14:27:53 -080080
81
Robert Sloan8f860b12017-08-28 07:37:06 -070082// Private functions.
Adam Langleyd9e397b2015-01-22 14:27:53 -080083
Robert Sloan8f860b12017-08-28 07:37:06 -070084// openssl_method_common_st contains the common part of all method structures.
85// This must be the first member of all method structures.
Adam Langleyd9e397b2015-01-22 14:27:53 -080086struct openssl_method_common_st {
Robert Sloan8f860b12017-08-28 07:37:06 -070087 int references; // dummy – not used.
Adam Langleyd9e397b2015-01-22 14:27:53 -080088 char is_static;
89};
90
91
92#if defined(__cplusplus)
Robert Sloan8f860b12017-08-28 07:37:06 -070093} // extern C
David Benjaminf0c4a6c2016-08-11 13:26:41 -040094
95extern "C++" {
96
Robert Sloan726e9d12018-09-11 11:45:04 -070097BSSL_NAMESPACE_BEGIN
David Benjaminf0c4a6c2016-08-11 13:26:41 -040098
99BORINGSSL_MAKE_DELETER(ENGINE, ENGINE_free)
100
Robert Sloan726e9d12018-09-11 11:45:04 -0700101BSSL_NAMESPACE_END
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400102
Robert Sloan8f860b12017-08-28 07:37:06 -0700103} // extern C++
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400104
Adam Langleyd9e397b2015-01-22 14:27:53 -0800105#endif
106
107#define ENGINE_R_OPERATION_NOT_SUPPORTED 100
108
Robert Sloan8f860b12017-08-28 07:37:06 -0700109#endif // OPENSSL_HEADER_ENGINE_H