Remove deleted PKCS#12 functions from pkcs12.h, get rid of object creation
[openssl.git] / crypto / ex_data.c
1 /* crypto/ex_data.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
59 #include <stdio.h>
60 #include <stdlib.h>
61 #include "buffer.h"
62 #include "bio.h"
63 #include "lhash.h"
64 #include "cryptlib.h"
65
66 int CRYPTO_get_ex_new_index(idx,skp,argl,argp,new_func,dup_func,free_func)
67 int idx;
68 STACK **skp;
69 long argl;
70 char *argp;
71 int (*new_func)();
72 int (*dup_func)();
73 void (*free_func)();
74         {
75         int ret= -1;
76         CRYPTO_EX_DATA_FUNCS *a;
77
78         MemCheck_off();
79         if (*skp == NULL)
80                 *skp=sk_new_null();
81         if (*skp == NULL)
82                 {
83                 CRYPTOerr(CRYPTO_F_CRYPTO_GET_EX_NEW_INDEX,ERR_R_MALLOC_FAILURE);
84                 goto err;
85                 }
86         a=(CRYPTO_EX_DATA_FUNCS *)Malloc(sizeof(CRYPTO_EX_DATA_FUNCS));
87         if (a == NULL)
88                 {
89                 CRYPTOerr(CRYPTO_F_CRYPTO_GET_EX_NEW_INDEX,ERR_R_MALLOC_FAILURE);
90                 goto err;
91                 }
92         a->argl=argl;
93         a->argp=argp;
94         a->new_func=new_func;
95         a->dup_func=dup_func;
96         a->free_func=free_func;
97         while (sk_num(*skp) <= idx)
98                 {
99                 if (!sk_push(*skp,NULL))
100                         {
101                         CRYPTOerr(CRYPTO_F_CRYPTO_GET_EX_NEW_INDEX,ERR_R_MALLOC_FAILURE);
102                         Free(a);
103                         goto err;
104                         }
105                 }
106         sk_value(*skp,idx)=(char *)a;
107         ret=idx;
108 err:
109         MemCheck_on();
110         return(idx);
111         }
112
113 int CRYPTO_set_ex_data(ad,idx,val)
114 CRYPTO_EX_DATA *ad;
115 int idx;
116 char *val;
117         {
118         int i;
119
120         if (ad->sk == NULL)
121                 {
122                 if ((ad->sk=sk_new_null()) == NULL)
123                         {
124                         CRYPTOerr(CRYPTO_F_CRYPTO_SET_EX_DATA,ERR_R_MALLOC_FAILURE);
125                         return(0);
126                         }
127                 }
128         i=sk_num(ad->sk);
129
130         while (i <= idx)
131                 {
132                 if (!sk_push(ad->sk,NULL))
133                         {
134                         CRYPTOerr(CRYPTO_F_CRYPTO_SET_EX_DATA,ERR_R_MALLOC_FAILURE);
135                         return(0);
136                         }
137                 i++;
138                 }
139         sk_value(ad->sk,idx)=val;
140         return(1);
141         }
142
143 char *CRYPTO_get_ex_data(ad,idx)
144 CRYPTO_EX_DATA *ad;
145 int idx;
146         {
147         if (ad->sk == NULL)
148                 return(0);
149         else if (idx >= sk_num(ad->sk))
150                 return(0);
151         else
152                 return(sk_value(ad->sk,idx));
153         }
154
155 /* The callback is called with the 'object', which is the origional data object
156  * being duplicated, a pointer to the
157  * 'new' object to be inserted, the index, and the argi/argp
158  */
159 int CRYPTO_dup_ex_data(meth,to,from)
160 STACK *meth;
161 CRYPTO_EX_DATA *to,*from;
162         {
163         int i,j,m,r;
164         CRYPTO_EX_DATA_FUNCS *mm;
165         char *from_d;
166
167         if (meth == NULL) return(1);
168         if (from->sk == NULL) return(1);
169         m=sk_num(meth);
170         j=sk_num(from->sk);
171         for (i=0; i<j; i++)
172                 {
173                 from_d=CRYPTO_get_ex_data(from,i);
174                 if (i < m)
175                         {
176                         mm=(CRYPTO_EX_DATA_FUNCS *)sk_value(meth,i);
177                         if (mm->dup_func != NULL)
178                                 r=mm->dup_func(to,from,(char **)&from_d,i,
179                                         mm->argl,mm->argp);
180                         }
181                 CRYPTO_set_ex_data(to,i,from_d);
182                 }
183         return(1);
184         }
185
186 /* Call each free callback */
187 void CRYPTO_free_ex_data(meth,obj,ad)
188 STACK *meth;
189 char *obj;
190 CRYPTO_EX_DATA *ad;
191         {
192         CRYPTO_EX_DATA_FUNCS *m;
193         char *ptr;
194         int i,max;
195
196         if (meth != NULL)
197                 {
198                 max=sk_num(meth);
199                 for (i=0; i<max; i++)
200                         {
201                         m=(CRYPTO_EX_DATA_FUNCS *)sk_value(meth,i);
202                         if ((m != NULL) && (m->free_func != NULL))
203                                 {
204                                 ptr=CRYPTO_get_ex_data(ad,i);
205                                 m->free_func(obj,ptr,ad,i,m->argl,m->argp);
206                                 }
207                         }
208                 }
209         if (ad->sk != NULL)
210                 {
211                 sk_free(ad->sk);
212                 ad->sk=NULL;
213                 }
214         }
215
216 void CRYPTO_new_ex_data(meth,obj,ad)
217 STACK *meth;
218 char *obj;
219 CRYPTO_EX_DATA *ad;
220         {
221         CRYPTO_EX_DATA_FUNCS *m;
222         char *ptr;
223         int i,max;
224
225         ad->sk=NULL;
226         if (meth != NULL)
227                 {
228                 max=sk_num(meth);
229                 for (i=0; i<max; i++)
230                         {
231                         m=(CRYPTO_EX_DATA_FUNCS *)sk_value(meth,i);
232                         if ((m != NULL) && (m->new_func != NULL))
233                                 {
234                                 ptr=CRYPTO_get_ex_data(ad,i);
235                                 m->new_func(obj,ptr,ad,i,m->argl,m->argp);
236                                 }
237                         }
238                 }
239         }
240
241