make update
[openssl.git] / crypto / stack / stack.c
1 /* crypto/stack/stack.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  *
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  *
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  *
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58 #include <stdio.h>
59 #include "internal/cryptlib.h"
60 #include <openssl/stack.h>
61 #include <openssl/objects.h>
62
63 struct stack_st {
64     int num;
65     char **data;
66     int sorted;
67     int num_alloc;
68     int (*comp) (const void *, const void *);
69 };
70
71 #undef MIN_NODES
72 #define MIN_NODES       4
73
74 #include <errno.h>
75
76 int (*sk_set_cmp_func(_STACK *sk, int (*c) (const void *, const void *)))
77  (const void *, const void *) {
78     int (*old) (const void *, const void *) = sk->comp;
79
80     if (sk->comp != c)
81         sk->sorted = 0;
82     sk->comp = c;
83
84     return old;
85 }
86
87 _STACK *sk_dup(_STACK *sk)
88 {
89     _STACK *ret;
90     char **s;
91
92     if ((ret = sk_new(sk->comp)) == NULL)
93         goto err;
94     s = OPENSSL_realloc((char *)ret->data,
95                         (unsigned int)sizeof(char *) * sk->num_alloc);
96     if (s == NULL)
97         goto err;
98     ret->data = s;
99
100     ret->num = sk->num;
101     memcpy(ret->data, sk->data, sizeof(char *) * sk->num);
102     ret->sorted = sk->sorted;
103     ret->num_alloc = sk->num_alloc;
104     ret->comp = sk->comp;
105     return (ret);
106  err:
107     sk_free(ret);
108     return (NULL);
109 }
110
111 _STACK *sk_deep_copy(_STACK *sk, void *(*copy_func) (void *),
112                      void (*free_func) (void *))
113 {
114     _STACK *ret;
115     int i;
116
117     if ((ret = OPENSSL_malloc(sizeof(_STACK))) == NULL)
118         return ret;
119     ret->comp = sk->comp;
120     ret->sorted = sk->sorted;
121     ret->num = sk->num;
122     ret->num_alloc = sk->num > MIN_NODES ? sk->num : MIN_NODES;
123     ret->data = OPENSSL_malloc(sizeof(*ret->data) * ret->num_alloc);
124     if (ret->data == NULL) {
125         OPENSSL_free(ret);
126         return NULL;
127     }
128     for (i = 0; i < ret->num_alloc; i++)
129         ret->data[i] = NULL;
130
131     for (i = 0; i < ret->num; ++i) {
132         if (sk->data[i] == NULL)
133             continue;
134         if ((ret->data[i] = copy_func(sk->data[i])) == NULL) {
135             while (--i >= 0)
136                 if (ret->data[i] != NULL)
137                     free_func(ret->data[i]);
138             sk_free(ret);
139             return NULL;
140         }
141     }
142     return ret;
143 }
144
145 _STACK *sk_new_null(void)
146 {
147     return sk_new((int (*)(const void *, const void *))0);
148 }
149
150 _STACK *sk_new(int (*c) (const void *, const void *))
151 {
152     _STACK *ret;
153     int i;
154
155     if ((ret = OPENSSL_malloc(sizeof(_STACK))) == NULL)
156         goto err;
157     if ((ret->data = OPENSSL_malloc(sizeof(*ret->data) * MIN_NODES)) == NULL)
158         goto err;
159     for (i = 0; i < MIN_NODES; i++)
160         ret->data[i] = NULL;
161     ret->comp = c;
162     ret->num_alloc = MIN_NODES;
163     ret->num = 0;
164     ret->sorted = 0;
165     return (ret);
166  err:
167     OPENSSL_free(ret);
168     return (NULL);
169 }
170
171 int sk_insert(_STACK *st, void *data, int loc)
172 {
173     char **s;
174
175     if (st == NULL)
176         return 0;
177     if (st->num_alloc <= st->num + 1) {
178         s = OPENSSL_realloc((char *)st->data,
179                             (unsigned int)sizeof(char *) * st->num_alloc * 2);
180         if (s == NULL)
181             return (0);
182         st->data = s;
183         st->num_alloc *= 2;
184     }
185     if ((loc >= (int)st->num) || (loc < 0))
186         st->data[st->num] = data;
187     else {
188         memmove(&(st->data[loc + 1]),
189                 &(st->data[loc]), sizeof(char *) * (st->num - loc));
190         st->data[loc] = data;
191     }
192     st->num++;
193     st->sorted = 0;
194     return (st->num);
195 }
196
197 void *sk_delete_ptr(_STACK *st, void *p)
198 {
199     int i;
200
201     for (i = 0; i < st->num; i++)
202         if (st->data[i] == p)
203             return (sk_delete(st, i));
204     return (NULL);
205 }
206
207 void *sk_delete(_STACK *st, int loc)
208 {
209     char *ret;
210     int i, j;
211
212     if (!st || (loc < 0) || (loc >= st->num))
213         return NULL;
214
215     ret = st->data[loc];
216     if (loc != st->num - 1) {
217         j = st->num - 1;
218         for (i = loc; i < j; i++)
219             st->data[i] = st->data[i + 1];
220         /*
221          * In theory memcpy is not safe for this memcpy( &(st->data[loc]),
222          * &(st->data[loc+1]), sizeof(char *)*(st->num-loc-1));
223          */
224     }
225     st->num--;
226     return (ret);
227 }
228
229 static int internal_find(_STACK *st, void *data, int ret_val_options)
230 {
231     const void *const *r;
232     int i;
233
234     if (st == NULL)
235         return -1;
236
237     if (st->comp == NULL) {
238         for (i = 0; i < st->num; i++)
239             if (st->data[i] == data)
240                 return (i);
241         return (-1);
242     }
243     sk_sort(st);
244     if (data == NULL)
245         return (-1);
246     r = OBJ_bsearch_ex_(&data, st->data, st->num, sizeof(void *), st->comp,
247                         ret_val_options);
248     if (r == NULL)
249         return (-1);
250     return (int)((char **)r - st->data);
251 }
252
253 int sk_find(_STACK *st, void *data)
254 {
255     return internal_find(st, data, OBJ_BSEARCH_FIRST_VALUE_ON_MATCH);
256 }
257
258 int sk_find_ex(_STACK *st, void *data)
259 {
260     return internal_find(st, data, OBJ_BSEARCH_VALUE_ON_NOMATCH);
261 }
262
263 int sk_push(_STACK *st, void *data)
264 {
265     return (sk_insert(st, data, st->num));
266 }
267
268 int sk_unshift(_STACK *st, void *data)
269 {
270     return (sk_insert(st, data, 0));
271 }
272
273 void *sk_shift(_STACK *st)
274 {
275     if (st == NULL)
276         return (NULL);
277     if (st->num <= 0)
278         return (NULL);
279     return (sk_delete(st, 0));
280 }
281
282 void *sk_pop(_STACK *st)
283 {
284     if (st == NULL)
285         return (NULL);
286     if (st->num <= 0)
287         return (NULL);
288     return (sk_delete(st, st->num - 1));
289 }
290
291 void sk_zero(_STACK *st)
292 {
293     if (st == NULL)
294         return;
295     if (st->num <= 0)
296         return;
297     memset(st->data, 0, sizeof(*st->data) * st->num);
298     st->num = 0;
299 }
300
301 void sk_pop_free(_STACK *st, void (*func) (void *))
302 {
303     int i;
304
305     if (st == NULL)
306         return;
307     for (i = 0; i < st->num; i++)
308         if (st->data[i] != NULL)
309             func(st->data[i]);
310     sk_free(st);
311 }
312
313 void sk_free(_STACK *st)
314 {
315     if (st == NULL)
316         return;
317     OPENSSL_free(st->data);
318     OPENSSL_free(st);
319 }
320
321 int sk_num(const _STACK *st)
322 {
323     if (st == NULL)
324         return -1;
325     return st->num;
326 }
327
328 void *sk_value(const _STACK *st, int i)
329 {
330     if (!st || (i < 0) || (i >= st->num))
331         return NULL;
332     return st->data[i];
333 }
334
335 void *sk_set(_STACK *st, int i, void *value)
336 {
337     if (!st || (i < 0) || (i >= st->num))
338         return NULL;
339     return (st->data[i] = value);
340 }
341
342 void sk_sort(_STACK *st)
343 {
344     if (st && !st->sorted) {
345         int (*comp_func) (const void *, const void *);
346
347         /*
348          * same comment as in sk_find ... previously st->comp was declared as
349          * a (void*,void*) callback type, but this made the population of the
350          * callback pointer illogical - our callbacks compare type** with
351          * type**, so we leave the casting until absolutely necessary (ie.
352          * "now").
353          */
354         comp_func = (int (*)(const void *, const void *))(st->comp);
355         qsort(st->data, st->num, sizeof(char *), comp_func);
356         st->sorted = 1;
357     }
358 }
359
360 int sk_is_sorted(const _STACK *st)
361 {
362     if (!st)
363         return 1;
364     return st->sorted;
365 }