]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/engine/eng_int.h
Initial public key ASN1 method engine support. Not integrated yet.
[thirdparty/openssl.git] / crypto / engine / eng_int.h
CommitLineData
2b671586 1/* crypto/engine/eng_int.h */
5270e702
RL
2/* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL
3 * project 2000.
4 */
5/* ====================================================================
2b671586 6 * Copyright (c) 1999-2001 The OpenSSL Project. All rights reserved.
5270e702
RL
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
e172d60d
BM
58/* ====================================================================
59 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
60 * ECDH support in OpenSSL originally developed by
61 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
62 */
5270e702
RL
63
64#ifndef HEADER_ENGINE_INT_H
65#define HEADER_ENGINE_INT_H
66
60a938c6 67#include "cryptlib.h"
11c0f120
RL
68/* Take public definitions from engine.h */
69#include <openssl/engine.h>
70
5270e702
RL
71#ifdef __cplusplus
72extern "C" {
73#endif
74
b41f836e
GT
75/* If we compile with this symbol defined, then both reference counts in the
76 * ENGINE structure will be monitored with a line of output on stderr for each
77 * change. This prints the engine's pointer address (truncated to unsigned int),
78 * "struct" or "funct" to indicate the reference type, the before and after
79 * reference count, and the file:line-number pair. The "engine_ref_debug"
80 * statements must come *after* the change. */
81#ifdef ENGINE_REF_COUNT_DEBUG
82
83#define engine_ref_debug(e, isfunct, diff) \
06cb0353 84 fprintf(stderr, "engine: %08x %s from %d to %d (%s:%d)\n", \
b41f836e
GT
85 (unsigned int)(e), (isfunct ? "funct" : "struct"), \
86 ((isfunct) ? ((e)->funct_ref - (diff)) : ((e)->struct_ref - (diff))), \
87 ((isfunct) ? (e)->funct_ref : (e)->struct_ref), \
88 (__FILE__), (__LINE__));
89
90#else
91
92#define engine_ref_debug(e, isfunct, diff)
93
94#endif
95
b6d1e52d
GT
96/* Any code that will need cleanup operations should use these functions to
97 * register callbacks. ENGINE_cleanup() will call all registered callbacks in
98 * order. NB: both the "add" functions assume CRYPTO_LOCK_ENGINE to already be
99 * held (in "write" mode). */
100typedef void (ENGINE_CLEANUP_CB)(void);
5c32657c
GT
101typedef struct st_engine_cleanup_item
102 {
103 ENGINE_CLEANUP_CB *cb;
104 } ENGINE_CLEANUP_ITEM;
105DECLARE_STACK_OF(ENGINE_CLEANUP_ITEM)
b6d1e52d
GT
106void engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb);
107void engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb);
108
109/* We need stacks of ENGINEs for use in eng_table.c */
110DECLARE_STACK_OF(ENGINE)
111
112/* If this symbol is defined then engine_table_select(), the function that is
113 * used by RSA, DSA (etc) code to select registered ENGINEs, cache defaults and
114 * functional references (etc), will display debugging summaries to stderr. */
115/* #define ENGINE_TABLE_DEBUG */
116
117/* This represents an implementation table. Dependent code should instantiate it
118 * as a (ENGINE_TABLE *) pointer value set initially to NULL. */
119typedef struct st_engine_table ENGINE_TABLE;
120int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB *cleanup,
121 ENGINE *e, const int *nids, int num_nids, int setdefault);
122void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e);
123void engine_table_cleanup(ENGINE_TABLE **table);
124#ifndef ENGINE_TABLE_DEBUG
125ENGINE *engine_table_select(ENGINE_TABLE **table, int nid);
126#else
127ENGINE *engine_table_select_tmp(ENGINE_TABLE **table, int nid, const char *f, int l);
128#define engine_table_select(t,n) engine_table_select_tmp(t,n,__FILE__,__LINE__)
129#endif
354c3ace 130
b6d1e52d
GT
131/* Internal versions of API functions that have control over locking. These are
132 * used between C files when functionality needs to be shared but the caller may
133 * already be controlling of the CRYPTO_LOCK_ENGINE lock. */
134int engine_unlocked_init(ENGINE *e);
135int engine_unlocked_finish(ENGINE *e, int unlock_for_handlers);
136int engine_free_util(ENGINE *e, int locked);
354c3ace 137
e4a6cf42
GT
138/* This function will reset all "set"able values in an ENGINE to NULL. This
139 * won't touch reference counts or ex_data, but is equivalent to calling all the
140 * ENGINE_set_***() functions with a NULL value. */
141void engine_set_all_null(ENGINE *e);
142
dcd87618
GT
143/* NB: Bitwise OR-able values for the "flags" variable in ENGINE are now exposed
144 * in engine.h. */
5270e702 145
7e5b0681
DSH
146/* Free up dynamically allocated public key methods associated with ENGINE */
147
148void engine_pkey_meths_free(ENGINE *e);
149
5270e702
RL
150/* This is a structure for storing implementations of various crypto
151 * algorithms and functions. */
11c0f120 152struct engine_st
5270e702
RL
153 {
154 const char *id;
155 const char *name;
10e473e9 156 const RSA_METHOD *rsa_meth;
a4aba800 157 const DSA_METHOD *dsa_meth;
f971ccb2 158 const DH_METHOD *dh_meth;
e172d60d 159 const ECDH_METHOD *ecdh_meth;
4d94ae00 160 const ECDSA_METHOD *ecdsa_meth;
d54bf145 161 const RAND_METHOD *rand_meth;
3bbb0212 162 const STORE_METHOD *store_meth;
b370230b
GT
163 /* Cipher handling is via this callback */
164 ENGINE_CIPHERS_PTR ciphers;
165 /* Digest handling is via this callback */
166 ENGINE_DIGESTS_PTR digests;
58aa573a
DSH
167 /* Public key handling via this callback */
168 ENGINE_PKEY_METHS_PTR pkey_meths;
de9fcfe3
DSH
169 /* ASN1 public key handling via this callback */
170 ENGINE_PKEY_ASN1_METHS_PTR pkey_asn1_meths;
354c3ace 171
f524ddbe 172 ENGINE_GEN_INT_FUNC_PTR destroy;
b6d1e52d 173
404f952a
GT
174 ENGINE_GEN_INT_FUNC_PTR init;
175 ENGINE_GEN_INT_FUNC_PTR finish;
176 ENGINE_CTRL_FUNC_PTR ctrl;
177 ENGINE_LOAD_KEY_PTR load_privkey;
178 ENGINE_LOAD_KEY_PTR load_pubkey;
354c3ace 179
40fcda29 180 const ENGINE_CMD_DEFN *cmd_defns;
5270e702
RL
181 int flags;
182 /* reference count on the structure itself */
183 int struct_ref;
184 /* reference count on usability of the engine type. NB: This
185 * controls the loading and initialisation of any functionlity
186 * required by this engine, whereas the previous count is
187 * simply to cope with (de)allocation of this structure. Hence,
188 * running_ref <= struct_ref at all times. */
189 int funct_ref;
b370230b 190 /* A place to store per-ENGINE data */
0ce5f3e4 191 CRYPTO_EX_DATA ex_data;
5270e702
RL
192 /* Used to maintain the linked-list of engines. */
193 struct engine_st *prev;
194 struct engine_st *next;
11c0f120 195 };
5270e702 196
5270e702
RL
197#ifdef __cplusplus
198}
199#endif
200
201#endif /* HEADER_ENGINE_INT_H */