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 #include <openssl/err.h>
63 /* The memory store is currently highly experimental. It's meant to become
64 a base store used by other stores for internal caching (for full caching
65 support, aging needs to be added).
67 The database use is meant to support as much attribute association as
68 possible, while providing for as small search ranges as possible.
69 This is currently provided for by sorting the entries by numbers that
70 are composed of bits set at the positions indicated by attribute type
71 codes. This provides for ranges determined by the highest attribute
72 type code value. A better idea might be to sort by values computed
73 from the range of attributes associated with the object (basically,
74 the difference between the highest and lowest attribute type code)
75 and it's distance from a base (basically, the lowest associated
79 typedef struct mem_object_data_st
82 STORE_ATTR_INFO
*attr_info
;
86 DECLARE_STACK_OF(MEM_OBJECT_DATA
)
89 STACK_OF(MEM_OBJECT_DATA
) *data
; /* sorted with
90 * STORE_ATTR_INFO_compare(). */
91 unsigned int compute_components
: 1; /* Currently unused, but can
92 be used to add attributes
93 from parts of the data. */
96 DECLARE_STACK_OF(STORE_ATTR_INFO
)
99 int type
; /* The type we're searching for */
100 STACK_OF(STORE_ATTR_INFO
) *search_attributes
; /* Sets of
101 attributes to search for. Each
102 element is a STORE_ATTR_INFO. */
103 int search_index
; /* which of the search attributes we
104 found a match for, -1 when we still
106 int index
; /* -1 as long as we're searching for
110 static int mem_init(STORE
*s
);
111 static void mem_clean(STORE
*s
);
112 static STORE_OBJECT
*mem_generate(STORE
*s
, STORE_OBJECT_TYPES type
,
113 OPENSSL_ITEM attributes
[], OPENSSL_ITEM parameters
[]);
114 static STORE_OBJECT
*mem_get(STORE
*s
, STORE_OBJECT_TYPES type
,
115 OPENSSL_ITEM attributes
[], OPENSSL_ITEM parameters
[]);
116 static int mem_store(STORE
*s
, STORE_OBJECT_TYPES type
,
117 STORE_OBJECT
*data
, OPENSSL_ITEM attributes
[],
118 OPENSSL_ITEM parameters
[]);
119 static int mem_modify(STORE
*s
, STORE_OBJECT_TYPES type
,
120 OPENSSL_ITEM search_attributes
[], OPENSSL_ITEM add_attributes
[],
121 OPENSSL_ITEM modify_attributes
[], OPENSSL_ITEM delete_attributes
[],
122 OPENSSL_ITEM parameters
[]);
123 static int mem_delete(STORE
*s
, STORE_OBJECT_TYPES type
,
124 OPENSSL_ITEM attributes
[], OPENSSL_ITEM parameters
[]);
125 static void *mem_list_start(STORE
*s
, STORE_OBJECT_TYPES type
,
126 OPENSSL_ITEM attributes
[], OPENSSL_ITEM parameters
[]);
127 static STORE_OBJECT
*mem_list_next(STORE
*s
, void *handle
);
128 static int mem_list_end(STORE
*s
, void *handle
);
129 static int mem_list_endp(STORE
*s
, void *handle
);
130 static int mem_lock(STORE
*s
, OPENSSL_ITEM attributes
[],
131 OPENSSL_ITEM parameters
[]);
132 static int mem_unlock(STORE
*s
, OPENSSL_ITEM attributes
[],
133 OPENSSL_ITEM parameters
[]);
134 static int mem_ctrl(STORE
*s
, int cmd
, long l
, void *p
, void (*f
)(void));
136 static STORE_METHOD store_memory
=
138 "OpenSSL memory store interface",
157 const STORE_METHOD
*STORE_Memory(void)
159 return &store_memory
;
162 static int mem_init(STORE
*s
)
167 static void mem_clean(STORE
*s
)
172 static STORE_OBJECT
*mem_generate(STORE
*s
, STORE_OBJECT_TYPES type
,
173 OPENSSL_ITEM attributes
[], OPENSSL_ITEM parameters
[])
175 STOREerr(STORE_F_MEM_GENERATE
, STORE_R_NOT_IMPLEMENTED
);
178 static STORE_OBJECT
*mem_get(STORE
*s
, STORE_OBJECT_TYPES type
,
179 OPENSSL_ITEM attributes
[], OPENSSL_ITEM parameters
[])
181 void *context
= mem_list_start(s
, type
, attributes
, parameters
);
185 STORE_OBJECT
*object
= mem_list_next(s
, context
);
187 if (mem_list_end(s
, context
))
192 static int mem_store(STORE
*s
, STORE_OBJECT_TYPES type
,
193 STORE_OBJECT
*data
, OPENSSL_ITEM attributes
[],
194 OPENSSL_ITEM parameters
[])
196 STOREerr(STORE_F_MEM_STORE
, STORE_R_NOT_IMPLEMENTED
);
199 static int mem_modify(STORE
*s
, STORE_OBJECT_TYPES type
,
200 OPENSSL_ITEM search_attributes
[], OPENSSL_ITEM add_attributes
[],
201 OPENSSL_ITEM modify_attributes
[], OPENSSL_ITEM delete_attributes
[],
202 OPENSSL_ITEM parameters
[])
204 STOREerr(STORE_F_MEM_MODIFY
, STORE_R_NOT_IMPLEMENTED
);
207 static int mem_delete(STORE
*s
, STORE_OBJECT_TYPES type
,
208 OPENSSL_ITEM attributes
[], OPENSSL_ITEM parameters
[])
210 STOREerr(STORE_F_MEM_DELETE
, STORE_R_NOT_IMPLEMENTED
);
214 /* The list functions may be the hardest to understand. Basically,
215 mem_list_start compiles a stack of attribute info elements, and
216 puts that stack into the context to be returned. mem_list_next
217 will then find the first matching element in the store, and then
218 walk all the way to the end of the store (since any combination
219 of attribute bits above the starting point may match the searched
220 for bit pattern...). */
221 static void *mem_list_start(STORE
*s
, STORE_OBJECT_TYPES type
,
222 OPENSSL_ITEM attributes
[], OPENSSL_ITEM parameters
[])
224 struct mem_ctx_st
*context
=
225 (struct mem_ctx_st
*)OPENSSL_malloc(sizeof(struct mem_ctx_st
));
226 void *attribute_context
= NULL
;
227 STORE_ATTR_INFO
*attrs
= NULL
;
231 STOREerr(STORE_F_MEM_LIST_START
, ERR_R_MALLOC_FAILURE
);
234 memset(context
, 0, sizeof(struct mem_ctx_st
));
236 attribute_context
= STORE_parse_attrs_start(attributes
);
237 if (!attribute_context
)
239 STOREerr(STORE_F_MEM_LIST_START
, ERR_R_STORE_LIB
);
243 while((attrs
= STORE_parse_attrs_next(attribute_context
)))
245 if (context
->search_attributes
== NULL
)
247 context
->search_attributes
=
248 sk_STORE_ATTR_INFO_new(STORE_ATTR_INFO_compare
);
249 if (!context
->search_attributes
)
251 STOREerr(STORE_F_MEM_LIST_START
,
252 ERR_R_MALLOC_FAILURE
);
256 sk_STORE_ATTR_INFO_push(context
->search_attributes
,attrs
);
258 if (!STORE_parse_attrs_endp(attribute_context
))
260 STORE_parse_attrs_end(attribute_context
);
261 context
->search_index
= -1;
265 if (attribute_context
) STORE_parse_attrs_end(attribute_context
);
266 mem_list_end(s
, context
);
269 static STORE_OBJECT
*mem_list_next(STORE
*s
, void *handle
)
272 struct mem_ctx_st
*context
= (struct mem_ctx_st
*)handle
;
273 struct mem_object_data_st key
= { 0, 0, 1 };
274 struct mem_data_st
*store
=
275 (struct mem_data_st
*)STORE_get_ex_data(s
, 1);
281 STOREerr(STORE_F_MEM_LIST_NEXT
, ERR_R_PASSED_NULL_PARAMETER
);
286 STOREerr(STORE_F_MEM_LIST_NEXT
, STORE_R_NO_STORE
);
290 if (context
->search_index
== -1)
293 i
< sk_STORE_ATTR_INFO_num(context
->search_attributes
);
297 = sk_STORE_ATTR_INFO_value(context
->search_attributes
,
299 srch
= sk_MEM_OBJECT_DATA_find_ex(store
->data
, &key
);
303 context
->search_index
= srch
;
308 if (context
->search_index
< 0)
312 sk_STORE_ATTR_INFO_value(context
->search_attributes
,
313 context
->search_index
);
314 for(srch
= context
->search_index
;
315 srch
< sk_MEM_OBJECT_DATA_num(store
->data
)
316 && STORE_ATTR_INFO_in_range(key
.attr_info
,
317 sk_MEM_OBJECT_DATA_value(store
->data
, srch
)->attr_info
)
318 && !(cres
= STORE_ATTR_INFO_in_ex(key
.attr_info
,
319 sk_MEM_OBJECT_DATA_value(store
->data
, srch
)->attr_info
));
323 context
->search_index
= srch
;
325 return (sk_MEM_OBJECT_DATA_value(store
->data
, srch
))->object
;
328 static int mem_list_end(STORE
*s
, void *handle
)
330 struct mem_ctx_st
*context
= (struct mem_ctx_st
*)handle
;
334 STOREerr(STORE_F_MEM_LIST_END
, ERR_R_PASSED_NULL_PARAMETER
);
337 if (context
&& context
->search_attributes
)
338 sk_STORE_ATTR_INFO_free(context
->search_attributes
);
339 if (context
) OPENSSL_free(context
);
342 static int mem_list_endp(STORE
*s
, void *handle
)
344 struct mem_ctx_st
*context
= (struct mem_ctx_st
*)handle
;
347 || context
->search_index
348 == sk_STORE_ATTR_INFO_num(context
->search_attributes
))
352 static int mem_lock(STORE
*s
, OPENSSL_ITEM attributes
[],
353 OPENSSL_ITEM parameters
[])
357 static int mem_unlock(STORE
*s
, OPENSSL_ITEM attributes
[],
358 OPENSSL_ITEM parameters
[])
362 static int mem_ctrl(STORE
*s
, int cmd
, long l
, void *p
, void (*f
)(void))