Update contrib.
1 /* crypto/store/str_mem.c -*- mode:C; c-file-style: "eay" -*- */
2 /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 2003 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
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
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/)"
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 * openssl-core@openssl.org.
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.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
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 * ====================================================================
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).
60 © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
64 #include <openssl/err.h>
66 #if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
67 #include "libcrypto_wsd_macros.h"
68 #include "libcrypto_wsd.h"
71 /* The memory store is currently highly experimental. It's meant to become
72 a base store used by other stores for internal caching (for full caching
73 support, aging needs to be added).
75 The database use is meant to support as much attribute association as
76 possible, while providing for as small search ranges as possible.
77 This is currently provided for by sorting the entries by numbers that
78 are composed of bits set at the positions indicated by attribute type
79 codes. This provides for ranges determined by the highest attribute
80 type code value. A better idea might be to sort by values computed
81 from the range of attributes associated with the object (basically,
82 the difference between the highest and lowest attribute type code)
83 and it's distance from a base (basically, the lowest associated
87 struct mem_object_data_st
90 STORE_ATTR_INFO *attr_info;
96 STACK *data; /* A stack of mem_object_data_st,
97 sorted with STORE_ATTR_INFO_compare(). */
98 unsigned int compute_components : 1; /* Currently unused, but can
99 be used to add attributes
100 from parts of the data. */
105 int type; /* The type we're searching for */
106 STACK *search_attributes; /* Sets of attributes to search for.
107 Each element is a STORE_ATTR_INFO. */
108 int search_index; /* which of the search attributes we found a match
109 for, -1 when we still haven't found any */
110 int index; /* -1 as long as we're searching for the first */
113 static int mem_init(STORE *s);
114 static void mem_clean(STORE *s);
115 static STORE_OBJECT *mem_generate(STORE *s, STORE_OBJECT_TYPES type,
116 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
117 static STORE_OBJECT *mem_get(STORE *s, STORE_OBJECT_TYPES type,
118 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
119 static int mem_store(STORE *s, STORE_OBJECT_TYPES type,
120 STORE_OBJECT *data, OPENSSL_ITEM attributes[],
121 OPENSSL_ITEM parameters[]);
122 static int mem_modify(STORE *s, STORE_OBJECT_TYPES type,
123 OPENSSL_ITEM search_attributes[], OPENSSL_ITEM add_attributes[],
124 OPENSSL_ITEM modify_attributes[], OPENSSL_ITEM delete_attributes[],
125 OPENSSL_ITEM parameters[]);
126 static int mem_delete(STORE *s, STORE_OBJECT_TYPES type,
127 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
128 static void *mem_list_start(STORE *s, STORE_OBJECT_TYPES type,
129 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
130 static STORE_OBJECT *mem_list_next(STORE *s, void *handle);
131 static int mem_list_end(STORE *s, void *handle);
132 static int mem_list_endp(STORE *s, void *handle);
133 static int mem_lock(STORE *s, OPENSSL_ITEM attributes[],
134 OPENSSL_ITEM parameters[]);
135 static int mem_unlock(STORE *s, OPENSSL_ITEM attributes[],
136 OPENSSL_ITEM parameters[]);
137 static int mem_ctrl(STORE *s, int cmd, long l, void *p, void (*f)(void));
141 static STORE_METHOD store_memory =
143 "OpenSSL memory store interface",
162 GET_STATIC_VAR_FROM_TLS(store_memory,str_mem,STORE_METHOD)
163 #define store_memory (*GET_WSD_VAR_NAME(store_memory,str_mem, s)())
164 const STORE_METHOD temp_s_store_memory =
166 "OpenSSL memory store interface",
185 EXPORT_C const STORE_METHOD *STORE_Memory(void)
187 return &store_memory;
190 static int mem_init(STORE *s)
195 static void mem_clean(STORE *s)
200 static STORE_OBJECT *mem_generate(STORE *s, STORE_OBJECT_TYPES type,
201 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[])
203 STOREerr(STORE_F_MEM_GENERATE, STORE_R_NOT_IMPLEMENTED);
206 static STORE_OBJECT *mem_get(STORE *s, STORE_OBJECT_TYPES type,
207 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[])
209 void *context = mem_list_start(s, type, attributes, parameters);
213 STORE_OBJECT *object = mem_list_next(s, context);
215 if (mem_list_end(s, context))
220 static int mem_store(STORE *s, STORE_OBJECT_TYPES type,
221 STORE_OBJECT *data, OPENSSL_ITEM attributes[],
222 OPENSSL_ITEM parameters[])
224 STOREerr(STORE_F_MEM_STORE, STORE_R_NOT_IMPLEMENTED);
227 static int mem_modify(STORE *s, STORE_OBJECT_TYPES type,
228 OPENSSL_ITEM search_attributes[], OPENSSL_ITEM add_attributes[],
229 OPENSSL_ITEM modify_attributes[], OPENSSL_ITEM delete_attributes[],
230 OPENSSL_ITEM parameters[])
232 STOREerr(STORE_F_MEM_MODIFY, STORE_R_NOT_IMPLEMENTED);
235 static int mem_delete(STORE *s, STORE_OBJECT_TYPES type,
236 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[])
238 STOREerr(STORE_F_MEM_DELETE, STORE_R_NOT_IMPLEMENTED);
242 /* The list functions may be the hardest to understand. Basically,
243 mem_list_start compiles a stack of attribute info elements, and
244 puts that stack into the context to be returned. mem_list_next
245 will then find the first matching element in the store, and then
246 walk all the way to the end of the store (since any combination
247 of attribute bits above the starting point may match the searched
248 for bit pattern...). */
249 static void *mem_list_start(STORE *s, STORE_OBJECT_TYPES type,
250 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[])
252 struct mem_ctx_st *context =
253 (struct mem_ctx_st *)OPENSSL_malloc(sizeof(struct mem_ctx_st));
254 void *attribute_context = NULL;
255 STORE_ATTR_INFO *attrs = NULL;
259 STOREerr(STORE_F_MEM_LIST_START, ERR_R_MALLOC_FAILURE);
262 memset(context, 0, sizeof(struct mem_ctx_st));
264 attribute_context = STORE_parse_attrs_start(attributes);
265 if (!attribute_context)
267 STOREerr(STORE_F_MEM_LIST_START, ERR_R_STORE_LIB);
271 while((attrs = STORE_parse_attrs_next(attribute_context)))
273 if (context->search_attributes == NULL)
275 context->search_attributes =
276 sk_new((int (*)(const char * const *, const char * const *))STORE_ATTR_INFO_compare);
277 if (!context->search_attributes)
279 STOREerr(STORE_F_MEM_LIST_START,
280 ERR_R_MALLOC_FAILURE);
284 sk_push(context->search_attributes,(char *)attrs);
286 if (!STORE_parse_attrs_endp(attribute_context))
288 STORE_parse_attrs_end(attribute_context);
289 context->search_index = -1;
293 if (attribute_context) STORE_parse_attrs_end(attribute_context);
294 mem_list_end(s, context);
297 static STORE_OBJECT *mem_list_next(STORE *s, void *handle)
300 struct mem_ctx_st *context = (struct mem_ctx_st *)handle;
301 struct mem_object_data_st key = { 0, 0, 1 };
302 struct mem_data_st *store =
303 (struct mem_data_st *)STORE_get_ex_data(s, 1);
309 STOREerr(STORE_F_MEM_LIST_NEXT, ERR_R_PASSED_NULL_PARAMETER);
314 STOREerr(STORE_F_MEM_LIST_NEXT, STORE_R_NO_STORE);
318 if (context->search_index == -1)
320 for (i = 0; i < sk_num(context->search_attributes); i++)
323 (STORE_ATTR_INFO *)sk_value(context->search_attributes, i);
324 srch = sk_find_ex(store->data, (char *)&key);
328 context->search_index = srch;
333 if (context->search_index < 0)
337 (STORE_ATTR_INFO *)sk_value(context->search_attributes,
338 context->search_index);
339 for(srch = context->search_index;
340 srch < sk_num(store->data)
341 && STORE_ATTR_INFO_in_range(key.attr_info,
342 (STORE_ATTR_INFO *)sk_value(store->data, srch))
343 && !(cres = STORE_ATTR_INFO_in_ex(key.attr_info,
344 (STORE_ATTR_INFO *)sk_value(store->data, srch)));
348 context->search_index = srch;
350 return ((struct mem_object_data_st *)sk_value(store->data,
354 static int mem_list_end(STORE *s, void *handle)
356 struct mem_ctx_st *context = (struct mem_ctx_st *)handle;
360 STOREerr(STORE_F_MEM_LIST_END, ERR_R_PASSED_NULL_PARAMETER);
363 if (context && context->search_attributes)
364 sk_free(context->search_attributes);
365 if (context) OPENSSL_free(context);
368 static int mem_list_endp(STORE *s, void *handle)
370 struct mem_ctx_st *context = (struct mem_ctx_st *)handle;
373 || context->search_index == sk_num(context->search_attributes))
377 static int mem_lock(STORE *s, OPENSSL_ITEM attributes[],
378 OPENSSL_ITEM parameters[])
382 static int mem_unlock(STORE *s, OPENSSL_ITEM attributes[],
383 OPENSSL_ITEM parameters[])
387 static int mem_ctrl(STORE *s, int cmd, long l, void *p, void (*f)(void))