Import of old SSLeay release: SSLeay 0.8.1b
[openssl.git] / crypto / stack / stack.c
1 /* crypto/stack/stack.c */
2 /* Copyright (C) 1995-1997 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
59 /* Code for stacks
60  * Author - Eric Young v 1.0
61  * 1.2 eay 12-Mar-97 -  Modified sk_find so that it _DOES_ return the
62  *                      lowest index for the seached item.
63  *
64  * 1.1 eay - Take from netdb and added to SSLeay
65  *
66  * 1.0 eay - First version 29/07/92
67  */
68 #include <stdio.h>
69 #include "cryptlib.h"
70 #include "stack.h"
71
72 #undef MIN_NODES
73 #define MIN_NODES       4
74
75 char *STACK_version="STACK part of SSLeay 0.8.1b 29-Jun-1998";
76
77 #ifndef NOPROTO
78 #define FP_ICC  (int (*)(const void *,const void *))
79 #else
80 #define FP_ICC
81 #endif
82
83 #include <errno.h>
84
85 void sk_set_cmp_func(sk,c)
86 STACK *sk;
87 int (*c)();
88         {
89         if (sk->comp != c)
90                 sk->sorted=0;
91         sk->comp=c;
92         }
93
94 STACK *sk_dup(sk)
95 STACK *sk;
96         {
97         STACK *ret;
98         char **s;
99
100         if ((ret=sk_new(sk->comp)) == NULL) goto err;
101         s=(char **)Realloc((char *)ret->data,
102                 (unsigned int)sizeof(char *)*sk->num_alloc);
103         if (s == NULL) goto err;
104         ret->data=s;
105
106         ret->num=sk->num;
107         memcpy(ret->data,sk->data,sizeof(char *)*sk->num);
108         ret->sorted=sk->sorted;
109         ret->num_alloc=sk->num_alloc;
110         ret->comp=sk->comp;
111         return(ret);
112 err:
113         return(NULL);
114         }
115
116 STACK *sk_new(c)
117 int (*c)();
118         {
119         STACK *ret;
120         int i;
121
122         if ((ret=(STACK *)Malloc(sizeof(STACK))) == NULL)
123                 goto err0;
124         if ((ret->data=(char **)Malloc(sizeof(char *)*MIN_NODES)) == NULL)
125                 goto err1;
126         for (i=0; i<MIN_NODES; i++)
127                 ret->data[i]=NULL;
128         ret->comp=c;
129         ret->num_alloc=MIN_NODES;
130         ret->num=0;
131         ret->sorted=0;
132         return(ret);
133 err1:
134         Free((char *)ret);
135 err0:
136         return(NULL);
137         }
138
139 int sk_insert(st,data,loc)
140 STACK *st;
141 char *data;
142 int loc;
143         {
144         char **s;
145
146         if (st->num_alloc <= st->num+1)
147                 {
148                 s=(char **)Realloc((char *)st->data,
149                         (unsigned int)sizeof(char *)*st->num_alloc*2);
150                 if (s == NULL)
151                         return(0);
152                 st->data=s;
153                 st->num_alloc*=2;
154                 }
155         if ((loc >= (int)st->num) || (loc < 0))
156                 st->data[st->num]=data;
157         else
158                 {
159                 int i;
160                 char **f,**t;
161
162                 f=(char **)st->data;
163                 t=(char **)&(st->data[1]);
164                 for (i=st->num; i>loc; i--)
165                         t[i]=f[i];
166                         
167 #ifdef undef /* no memmove on sunos :-( */
168                 memmove( (char *)&(st->data[loc+1]),
169                         (char *)&(st->data[loc]),
170                         sizeof(char *)*(st->num-loc));
171 #endif
172                 st->data[loc]=data;
173                 }
174         st->num++;
175         st->sorted=0;
176         return(st->num);
177         }
178
179 char *sk_delete_ptr(st,p)
180 STACK *st;
181 char *p;
182         {
183         int i;
184
185         for (i=0; i<st->num; i++)
186                 if (st->data[i] == p)
187                         return(sk_delete(st,i));
188         return(NULL);
189         }
190
191 char *sk_delete(st,loc)
192 STACK *st;
193 int loc;
194         {
195         char *ret;
196
197         if ((st->num == 0) || (loc < 0) || (loc >= st->num)) return(NULL);
198
199         ret=st->data[loc];
200         if (loc != st->num-1)
201                 memcpy( &(st->data[loc]),
202                         &(st->data[loc+1]),
203                         sizeof(char *)*(st->num-loc-1));
204         st->num--;
205         return(ret);
206         }
207
208 int sk_find(st,data)
209 STACK *st;
210 char *data;
211         {
212         char **r;
213         int i;
214         int (*comp_func)();
215
216         if (st->comp == NULL)
217                 {
218                 for (i=0; i<st->num; i++)
219                         if (st->data[i] == data)
220                                 return(i);
221                 return(-1);
222                 }
223         comp_func=(int (*)())st->comp;
224         if (!st->sorted)
225                 {
226                 qsort((char *)st->data,st->num,sizeof(char *),FP_ICC comp_func);
227                 st->sorted=1;
228                 }
229         if (data == NULL) return(-1);
230         r=(char **)bsearch(&data,(char *)st->data,
231                 st->num,sizeof(char *),FP_ICC comp_func);
232         if (r == NULL) return(-1);
233         i=(int)(r-st->data);
234         for ( ; i>0; i--)
235                 if ((*st->comp)(&(st->data[i-1]),&data) < 0)
236                         break;
237         return(i);
238         }
239
240 int sk_push(st,data)
241 STACK *st;
242 char *data;
243         {
244         return(sk_insert(st,data,st->num));
245         }
246
247 int sk_unshift(st,data)
248 STACK *st;
249 char *data;
250         {
251         return(sk_insert(st,data,0));
252         }
253
254 char *sk_shift(st)
255 STACK *st;
256         {
257         if (st == NULL) return(NULL);
258         if (st->num <= 0) return(NULL);
259         return(sk_delete(st,0));
260         }
261
262 char *sk_pop(st)
263 STACK *st;
264         {
265         if (st == NULL) return(NULL);
266         if (st->num <= 0) return(NULL);
267         return(sk_delete(st,st->num-1));
268         }
269
270 void sk_zero(st)
271 STACK *st;
272         {
273         if (st == NULL) return;
274         if (st->num <= 0) return;
275         memset((char *)st->data,0,sizeof(st->data)*st->num);
276         st->num=0;
277         }
278
279 void sk_pop_free(st,func)
280 STACK *st;
281 void (*func)();
282         {
283         int i;
284
285         if (st == NULL) return;
286         for (i=0; i<st->num; i++)
287                 if (st->data[i] != NULL)
288                         func(st->data[i]);
289         sk_free(st);
290         }
291
292 void sk_free(st)
293 STACK *st;
294         {
295         if (st == NULL) return;
296         if (st->data != NULL) Free((char *)st->data);
297         Free((char *)st);
298         }
299