]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/pmeth_lib.c
Fix leak.
[thirdparty/openssl.git] / crypto / evp / pmeth_lib.c
CommitLineData
0b6f3c66
DSH
1/* pmeth_lib.c */
2/* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
3 * project 2006.
4 */
5/* ====================================================================
6 * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
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 */
58
59#include <stdio.h>
60#include <stdlib.h>
61#include <openssl/objects.h>
62#include "cryptlib.h"
5da98aa6 63#include <openssl/evp.h>
cd763898 64#include "asn1_locl.h"
0b6f3c66
DSH
65#include "evp_locl.h"
66
67STACK *app_pkey_methods = NULL;
68
c927df3f 69extern EVP_PKEY_METHOD rsa_pkey_meth, dsa_pkey_meth;
0b6f3c66 70
9e4d0f0b 71static const EVP_PKEY_METHOD *standard_methods[] =
0b6f3c66 72 {
c927df3f
DSH
73 &rsa_pkey_meth,
74 &dsa_pkey_meth
0b6f3c66
DSH
75 };
76
77static int pmeth_cmp(const EVP_PKEY_METHOD * const *a,
78 const EVP_PKEY_METHOD * const *b)
79 {
80 return ((*a)->pkey_id - (*b)->pkey_id);
81 }
82
83const EVP_PKEY_METHOD *EVP_PKEY_meth_find(int type, ENGINE *e)
84 {
85 EVP_PKEY_METHOD tmp, *t = &tmp, **ret;
86 tmp.pkey_id = type;
87 if (app_pkey_methods)
88 {
89 int idx;
90 idx = sk_find(app_pkey_methods, (char *)&tmp);
91 if (idx >= 0)
92 return (EVP_PKEY_METHOD *)
93 sk_value(app_pkey_methods, idx);
94 }
95 ret = (EVP_PKEY_METHOD **) OBJ_bsearch((char *)&t,
96 (char *)standard_methods,
97 sizeof(standard_methods)/sizeof(EVP_PKEY_METHOD *),
98 sizeof(EVP_PKEY_METHOD *),
99 (int (*)(const void *, const void *))pmeth_cmp);
100 if (!ret || !*ret)
101 return NULL;
102 return *ret;
103 }
104
f5cda4cb 105static EVP_PKEY_CTX *int_ctx_new(EVP_PKEY *pkey, ENGINE *e, int id)
0b6f3c66
DSH
106 {
107 EVP_PKEY_CTX *ret;
108 const EVP_PKEY_METHOD *pmeth;
f5cda4cb
DSH
109 if (id == -1)
110 {
111 if (!pkey || !pkey->ameth)
112 return NULL;
113 id = pkey->ameth->pkey_id;
114 }
115 pmeth = EVP_PKEY_meth_find(id, e);
0b6f3c66
DSH
116 if (pmeth == NULL)
117 return NULL;
118 ret = OPENSSL_malloc(sizeof(EVP_PKEY_CTX));
119 ret->pmeth = pmeth;
120 ret->operation = EVP_PKEY_OP_UNDEFINED;
cd763898 121 ret->pkey = pkey;
f5cda4cb
DSH
122 if (pkey)
123 CRYPTO_add(&pkey->references,1,CRYPTO_LOCK_EVP_PKEY);
0b6f3c66
DSH
124 ret->data = NULL;
125
5da98aa6
DSH
126 if (pmeth->init)
127 {
128 if (pmeth->init(ret) <= 0)
129 {
130 EVP_PKEY_CTX_free(ret);
131 return NULL;
132 }
133 }
134
0b6f3c66
DSH
135 return ret;
136 }
137
f5cda4cb
DSH
138EVP_PKEY_CTX *EVP_PKEY_CTX_new(EVP_PKEY *pkey, ENGINE *e)
139 {
140 return int_ctx_new(pkey, e, -1);
141 }
142
143EVP_PKEY_CTX *EVP_PKEY_CTX_new_id(int id, ENGINE *e)
144 {
145 return int_ctx_new(NULL, e, id);
146 }
147
5da98aa6
DSH
148void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx)
149 {
150 if (ctx->pmeth && ctx->pmeth->cleanup)
151 ctx->pmeth->cleanup(ctx);
152 if (ctx->pkey)
153 EVP_PKEY_free(ctx->pkey);
154 OPENSSL_free(ctx);
155 }
156
0b6f3c66
DSH
157int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype,
158 int cmd, int p1, void *p2)
159 {
5da98aa6 160 int ret;
0b6f3c66 161 if (!ctx || !ctx->pmeth || !ctx->pmeth->ctrl)
5da98aa6
DSH
162 {
163 EVPerr(EVP_F_EVP_PKEY_CTX_CTRL, EVP_R_COMMAND_NOT_SUPPORTED);
0b6f3c66 164 return -2;
5da98aa6 165 }
0b6f3c66
DSH
166 if ((keytype != -1) && (ctx->pmeth->pkey_id != keytype))
167 return -1;
168
169 if (ctx->operation == EVP_PKEY_OP_UNDEFINED)
170 {
5da98aa6 171 EVPerr(EVP_F_EVP_PKEY_CTX_CTRL, EVP_R_NO_OPERATION_SET);
0b6f3c66
DSH
172 return -1;
173 }
174
716630c0 175 if ((optype != -1) && !(ctx->operation & optype))
0b6f3c66 176 {
5da98aa6 177 EVPerr(EVP_F_EVP_PKEY_CTX_CTRL, EVP_R_INVALID_OPERATION);
0b6f3c66
DSH
178 return -1;
179 }
180
5da98aa6 181 ret = ctx->pmeth->ctrl(ctx, cmd, p1, p2);
0b6f3c66 182
5da98aa6
DSH
183 if (ret == -2)
184 EVPerr(EVP_F_EVP_PKEY_CTX_CTRL, EVP_R_COMMAND_NOT_SUPPORTED);
0b6f3c66 185
5da98aa6 186 return ret;
0b6f3c66 187
5da98aa6 188 }
0b6f3c66 189
4a3dc3c0
DSH
190int EVP_PKEY_CTX_ctrl_str(EVP_PKEY_CTX *ctx,
191 const char *name, const char *value)
f733a5ef 192 {
c927df3f 193 if (!ctx || !ctx->pmeth || !ctx->pmeth->ctrl_str)
f733a5ef 194 {
c927df3f
DSH
195 EVPerr(EVP_F_EVP_PKEY_CTX_CTRL_STR,
196 EVP_R_COMMAND_NOT_SUPPORTED);
f733a5ef
DSH
197 return -2;
198 }
b2a97be7
DSH
199 if (!strcmp(name, "digest"))
200 {
201 const EVP_MD *md;
202 if (!value || !(md = EVP_get_digestbyname(value)))
203 {
c927df3f
DSH
204 EVPerr(EVP_F_EVP_PKEY_CTX_CTRL_STR,
205 EVP_R_INVALID_DIGEST);
b2a97be7
DSH
206 return 0;
207 }
716630c0 208 return EVP_PKEY_CTX_set_signature_md(ctx, md);
b2a97be7 209 }
f733a5ef
DSH
210 return ctx->pmeth->ctrl_str(ctx, name, value);
211 }
f5cda4cb
DSH
212
213void EVP_PKEY_CTX_set_data(EVP_PKEY_CTX *ctx, void *data)
214 {
215 ctx->data = data;
216 }
217
218void *EVP_PKEY_CTX_get_data(EVP_PKEY_CTX *ctx)
219 {
220 return ctx->data;
221 }
222
223void EVP_PKEY_CTX_set_app_data(EVP_PKEY_CTX *ctx, void *data)
224 {
225 ctx->app_data = data;
226 }
227
228void *EVP_PKEY_CTX_get_app_data(EVP_PKEY_CTX *ctx)
229 {
230 return ctx->app_data;
231 }