hcrypto: Use memset_s() when clearing sensitive buffers
[heimdal.git] / lib / hx509 / collector.c
blob7b46809816cf8a8c6efe274d40314a75b1e01947
1 /*
2 * Copyright (c) 2004 - 2007 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
34 #include "hx_locl.h"
36 struct private_key {
37 AlgorithmIdentifier alg;
38 hx509_private_key private_key;
39 heim_octet_string localKeyId;
42 struct hx509_collector {
43 hx509_lock lock;
44 hx509_certs unenvelop_certs;
45 hx509_certs certs;
46 struct {
47 struct private_key **data;
48 size_t len;
49 } val;
53 HX509_LIB_FUNCTION int HX509_LIB_CALL
54 _hx509_collector_alloc(hx509_context context, hx509_lock lock, struct hx509_collector **collector)
56 struct hx509_collector *c;
57 int ret;
59 *collector = NULL;
61 c = calloc(1, sizeof(*c));
62 if (c == NULL) {
63 hx509_set_error_string(context, 0, ENOMEM, "out of memory");
64 return ENOMEM;
66 c->lock = lock;
68 ret = hx509_certs_init(context, "MEMORY:collector-unenvelop-cert",
69 0,NULL, &c->unenvelop_certs);
70 if (ret) {
71 free(c);
72 return ret;
74 c->val.data = NULL;
75 c->val.len = 0;
76 ret = hx509_certs_init(context, "MEMORY:collector-tmp-store",
77 0, NULL, &c->certs);
78 if (ret) {
79 hx509_certs_free(&c->unenvelop_certs);
80 free(c);
81 return ret;
84 *collector = c;
85 return 0;
88 HX509_LIB_FUNCTION hx509_lock HX509_LIB_CALL
89 _hx509_collector_get_lock(struct hx509_collector *c)
91 return c->lock;
95 HX509_LIB_FUNCTION int HX509_LIB_CALL
96 _hx509_collector_certs_add(hx509_context context,
97 struct hx509_collector *c,
98 hx509_cert cert)
100 return hx509_certs_add(context, c->certs, cert);
103 static void
104 free_private_key(struct private_key *key)
106 free_AlgorithmIdentifier(&key->alg);
107 if (key->private_key)
108 hx509_private_key_free(&key->private_key);
109 der_free_octet_string(&key->localKeyId);
110 free(key);
113 HX509_LIB_FUNCTION int HX509_LIB_CALL
114 _hx509_collector_private_key_add(hx509_context context,
115 struct hx509_collector *c,
116 const AlgorithmIdentifier *alg,
117 hx509_private_key private_key,
118 const heim_octet_string *key_data,
119 const heim_octet_string *localKeyId)
121 struct private_key *key;
122 void *d;
123 int ret;
125 key = calloc(1, sizeof(*key));
126 if (key == NULL)
127 return ENOMEM;
129 d = realloc(c->val.data, (c->val.len + 1) * sizeof(c->val.data[0]));
130 if (d == NULL) {
131 free(key);
132 hx509_set_error_string(context, 0, ENOMEM, "Out of memory");
133 return ENOMEM;
135 c->val.data = d;
137 ret = copy_AlgorithmIdentifier(alg, &key->alg);
138 if (ret) {
139 hx509_set_error_string(context, 0, ret, "Failed to copy "
140 "AlgorithmIdentifier");
141 goto out;
143 if (private_key) {
144 key->private_key = private_key;
145 } else {
146 ret = hx509_parse_private_key(context, alg,
147 key_data->data, key_data->length,
148 HX509_KEY_FORMAT_DER,
149 &key->private_key);
150 if (ret)
151 goto out;
153 if (localKeyId) {
154 ret = der_copy_octet_string(localKeyId, &key->localKeyId);
155 if (ret) {
156 hx509_set_error_string(context, 0, ret,
157 "Failed to copy localKeyId");
158 goto out;
160 } else
161 memset(&key->localKeyId, 0, sizeof(key->localKeyId));
163 c->val.data[c->val.len] = key;
164 c->val.len++;
166 out:
167 if (ret)
168 free_private_key(key);
170 return ret;
173 static int
174 match_localkeyid(hx509_context context,
175 struct private_key *value,
176 hx509_certs certs)
178 hx509_cert cert;
179 hx509_query q;
180 int ret;
182 if (value->localKeyId.length == 0) {
183 hx509_set_error_string(context, 0, HX509_LOCAL_ATTRIBUTE_MISSING,
184 "No local key attribute on private key");
185 return HX509_LOCAL_ATTRIBUTE_MISSING;
188 _hx509_query_clear(&q);
189 q.match |= HX509_QUERY_MATCH_LOCAL_KEY_ID;
191 q.local_key_id = &value->localKeyId;
193 ret = hx509_certs_find(context, certs, &q, &cert);
194 if (ret == 0 && cert == NULL)
195 ret = HX509_CERT_NOT_FOUND;
196 if (ret == 0) {
197 if (value->private_key)
198 _hx509_cert_assign_key(cert, value->private_key);
199 hx509_cert_free(cert);
201 return ret;
204 static int
205 match_keys(hx509_context context, struct private_key *value, hx509_certs certs)
207 hx509_cursor cursor;
208 hx509_cert c;
209 int ret, found = HX509_CERT_NOT_FOUND;
211 if (value->private_key == NULL) {
212 hx509_set_error_string(context, 0, HX509_PRIVATE_KEY_MISSING,
213 "No private key to compare with");
214 return HX509_PRIVATE_KEY_MISSING;
217 ret = hx509_certs_start_seq(context, certs, &cursor);
218 if (ret)
219 return ret;
221 c = NULL;
222 while (1) {
223 ret = hx509_certs_next_cert(context, certs, cursor, &c);
224 if (ret)
225 break;
226 if (c == NULL)
227 break;
228 if (_hx509_cert_private_key(c)) {
229 hx509_cert_free(c);
230 continue;
233 ret = _hx509_match_keys(c, value->private_key);
234 if (ret) {
235 _hx509_cert_assign_key(c, value->private_key);
236 hx509_cert_free(c);
237 found = 0;
238 break;
240 hx509_cert_free(c);
243 hx509_certs_end_seq(context, certs, cursor);
245 if (found)
246 hx509_clear_error_string(context);
248 return found;
251 HX509_LIB_FUNCTION int HX509_LIB_CALL
252 _hx509_collector_collect_certs(hx509_context context,
253 struct hx509_collector *c,
254 hx509_certs *ret_certs)
256 hx509_certs certs;
257 int ret;
258 size_t i;
260 *ret_certs = NULL;
262 ret = hx509_certs_init(context, "MEMORY:collector-store", 0, NULL, &certs);
263 if (ret)
264 return ret;
266 ret = hx509_certs_merge(context, certs, c->certs);
267 if (ret) {
268 hx509_certs_free(&certs);
269 return ret;
272 for (i = 0; i < c->val.len; i++) {
273 ret = match_localkeyid(context, c->val.data[i], certs);
274 if (ret == 0)
275 continue;
276 ret = match_keys(context, c->val.data[i], certs);
277 if (ret == 0)
278 continue;
281 *ret_certs = certs;
283 return 0;
286 HX509_LIB_FUNCTION int HX509_LIB_CALL
287 _hx509_collector_collect_private_keys(hx509_context context,
288 struct hx509_collector *c,
289 hx509_private_key **keys)
291 size_t i, nkeys;
293 *keys = NULL;
295 for (i = 0, nkeys = 0; i < c->val.len; i++)
296 if (c->val.data[i]->private_key)
297 nkeys++;
299 *keys = calloc(nkeys + 1, sizeof(**keys));
300 if (*keys == NULL) {
301 hx509_set_error_string(context, 0, ENOMEM, "malloc - out of memory");
302 return ENOMEM;
305 for (i = 0, nkeys = 0; i < c->val.len; i++) {
306 if (c->val.data[i]->private_key) {
307 (*keys)[nkeys++] = c->val.data[i]->private_key;
308 c->val.data[i]->private_key = NULL;
311 (*keys)[nkeys] = NULL;
313 return 0;
317 HX509_LIB_FUNCTION void HX509_LIB_CALL
318 _hx509_collector_free(struct hx509_collector *c)
320 size_t i;
322 if (c->unenvelop_certs)
323 hx509_certs_free(&c->unenvelop_certs);
324 if (c->certs)
325 hx509_certs_free(&c->certs);
326 for (i = 0; i < c->val.len; i++)
327 free_private_key(c->val.data[i]);
328 if (c->val.data)
329 free(c->val.data);
330 free(c);