This commit was generated by cvs2svn to track changes on a CVS vendor
[openssl.git] / crypto / asn1 / x_crl.c
1 /* crypto/asn1/x_crl.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 #include <stdio.h>
60 #include "cryptlib.h"
61 #include "asn1_mac.h"
62 #include "x509.h"
63
64 /*
65  * ASN1err(ASN1_F_D2I_X509_CRL,ASN1_R_LENGTH_MISMATCH);
66  * ASN1err(ASN1_F_D2I_X509_CRL_INFO,ASN1_R_EXPECTING_A_SEQUENCE);
67  * ASN1err(ASN1_F_D2I_X509_REVOKED,ASN1_R_LENGTH_MISMATCH);
68  * ASN1err(ASN1_F_X509_CRL_NEW,ASN1_R_LENGTH_MISMATCH);
69  * ASN1err(ASN1_F_X509_CRL_INFO_NEW,ASN1_R_EXPECTING_A_SEQUENCE);
70  * ASN1err(ASN1_F_X509_REVOKED_NEW,ASN1_R_LENGTH_MISMATCH);
71  */
72
73 #ifndef NOPROTO
74 static int X509_REVOKED_cmp(X509_REVOKED **a,X509_REVOKED **b);
75 static int X509_REVOKED_seq_cmp(X509_REVOKED **a,X509_REVOKED **b);
76 #else
77 static int X509_REVOKED_cmp();
78 static int X509_REVOKED_seq_cmp();
79 #endif
80
81 int i2d_X509_REVOKED(a,pp)
82 X509_REVOKED *a;
83 unsigned char **pp;
84         {
85         M_ASN1_I2D_vars(a);
86
87         M_ASN1_I2D_len(a->serialNumber,i2d_ASN1_INTEGER);
88         M_ASN1_I2D_len(a->revocationDate,i2d_ASN1_UTCTIME);
89         M_ASN1_I2D_len_SEQ_opt(a->extensions,i2d_X509_EXTENSION);
90
91         M_ASN1_I2D_seq_total();
92
93         M_ASN1_I2D_put(a->serialNumber,i2d_ASN1_INTEGER);
94         M_ASN1_I2D_put(a->revocationDate,i2d_ASN1_UTCTIME);
95         M_ASN1_I2D_put_SEQ_opt(a->extensions,i2d_X509_EXTENSION);
96
97         M_ASN1_I2D_finish();
98         }
99
100 X509_REVOKED *d2i_X509_REVOKED(a,pp,length)
101 X509_REVOKED **a;
102 unsigned char **pp;
103 long length;
104         {
105         M_ASN1_D2I_vars(a,X509_REVOKED *,X509_REVOKED_new);
106
107         M_ASN1_D2I_Init();
108         M_ASN1_D2I_start_sequence();
109         M_ASN1_D2I_get(ret->serialNumber,d2i_ASN1_INTEGER);
110         M_ASN1_D2I_get(ret->revocationDate,d2i_ASN1_UTCTIME);
111         M_ASN1_D2I_get_seq_opt(ret->extensions,d2i_X509_EXTENSION);
112         M_ASN1_D2I_Finish(a,X509_REVOKED_free,ASN1_F_D2I_X509_REVOKED);
113         }
114
115 int i2d_X509_CRL_INFO(a,pp)
116 X509_CRL_INFO *a;
117 unsigned char **pp;
118         {
119         int v1=0;
120         long l=0;
121         M_ASN1_I2D_vars(a);
122
123         if (sk_num(a->revoked) != 0)
124                 qsort((char *)a->revoked->data,sk_num(a->revoked),
125                         sizeof(X509_REVOKED *),(int (*)(P_CC_CC))X509_REVOKED_seq_cmp);
126         if ((a->version != NULL) && ((l=ASN1_INTEGER_get(a->version)) != 0))
127                 {
128                 M_ASN1_I2D_len(a->version,i2d_ASN1_INTEGER);
129                 }
130         M_ASN1_I2D_len(a->sig_alg,i2d_X509_ALGOR);
131         M_ASN1_I2D_len(a->issuer,i2d_X509_NAME);
132         M_ASN1_I2D_len(a->lastUpdate,i2d_ASN1_UTCTIME);
133         M_ASN1_I2D_len(a->nextUpdate,i2d_ASN1_UTCTIME);
134         M_ASN1_I2D_len_SEQ_opt(a->revoked,i2d_X509_REVOKED);
135         M_ASN1_I2D_len_EXP_set_opt(a->extensions,i2d_X509_EXTENSION,0,
136                 V_ASN1_SEQUENCE,v1);
137
138         M_ASN1_I2D_seq_total();
139
140         if ((a->version != NULL) && (l != 0))
141                 {
142                 M_ASN1_I2D_put(a->version,i2d_ASN1_INTEGER);
143                 }
144         M_ASN1_I2D_put(a->sig_alg,i2d_X509_ALGOR);
145         M_ASN1_I2D_put(a->issuer,i2d_X509_NAME);
146         M_ASN1_I2D_put(a->lastUpdate,i2d_ASN1_UTCTIME);
147         M_ASN1_I2D_put(a->nextUpdate,i2d_ASN1_UTCTIME);
148         M_ASN1_I2D_put_SEQ_opt(a->revoked,i2d_X509_REVOKED);
149         M_ASN1_I2D_put_EXP_set_opt(a->extensions,i2d_X509_EXTENSION,0,
150                 V_ASN1_SEQUENCE,v1);
151
152         M_ASN1_I2D_finish();
153         }
154
155 X509_CRL_INFO *d2i_X509_CRL_INFO(a,pp,length)
156 X509_CRL_INFO **a;
157 unsigned char **pp;
158 long length;
159         {
160         int i,ver=0;
161         M_ASN1_D2I_vars(a,X509_CRL_INFO *,X509_CRL_INFO_new);
162
163
164         M_ASN1_D2I_Init();
165         M_ASN1_D2I_start_sequence();
166         M_ASN1_D2I_get_opt(ret->version,d2i_ASN1_INTEGER,V_ASN1_INTEGER);
167         if (ret->version != NULL)
168                 ver=ret->version->data[0];
169         
170         if ((ver == 0) && (ret->version != NULL))
171                 {
172                 ASN1_INTEGER_free(ret->version);
173                 ret->version=NULL;
174                 }
175         M_ASN1_D2I_get(ret->sig_alg,d2i_X509_ALGOR);
176         M_ASN1_D2I_get(ret->issuer,d2i_X509_NAME);
177         M_ASN1_D2I_get(ret->lastUpdate,d2i_ASN1_UTCTIME);
178         M_ASN1_D2I_get(ret->nextUpdate,d2i_ASN1_UTCTIME);
179         if (ret->revoked != NULL)
180                 {
181                 while (sk_num(ret->revoked))
182                         X509_REVOKED_free((X509_REVOKED *)sk_pop(ret->revoked));
183                 }
184         M_ASN1_D2I_get_seq_opt(ret->revoked,d2i_X509_REVOKED);
185
186         if (ret->revoked != NULL)
187                 {
188                 for (i=0; i<sk_num(ret->revoked); i++)
189                         {
190                         ((X509_REVOKED *)sk_value(ret->revoked,i))->sequence=i;
191                         }
192                 }
193
194         if (ver >= 1)
195                 {
196                 if (ret->extensions != NULL)
197                         {
198                         while (sk_num(ret->extensions))
199                                 X509_EXTENSION_free((X509_EXTENSION *)
200                                 sk_pop(ret->extensions));
201                         }
202                         
203                 M_ASN1_D2I_get_EXP_set_opt(ret->extensions,d2i_X509_EXTENSION,
204                         0,V_ASN1_SEQUENCE);
205                 }
206
207         M_ASN1_D2I_Finish(a,X509_CRL_INFO_free,ASN1_F_D2I_X509_CRL_INFO);
208         }
209
210 int i2d_X509_CRL(a,pp)
211 X509_CRL *a;
212 unsigned char **pp;
213         {
214         M_ASN1_I2D_vars(a);
215
216         M_ASN1_I2D_len(a->crl,i2d_X509_CRL_INFO);
217         M_ASN1_I2D_len(a->sig_alg,i2d_X509_ALGOR);
218         M_ASN1_I2D_len(a->signature,i2d_ASN1_BIT_STRING);
219
220         M_ASN1_I2D_seq_total();
221
222         M_ASN1_I2D_put(a->crl,i2d_X509_CRL_INFO);
223         M_ASN1_I2D_put(a->sig_alg,i2d_X509_ALGOR);
224         M_ASN1_I2D_put(a->signature,i2d_ASN1_BIT_STRING);
225
226         M_ASN1_I2D_finish();
227         }
228
229 X509_CRL *d2i_X509_CRL(a,pp,length)
230 X509_CRL **a;
231 unsigned char **pp;
232 long length;
233         {
234         M_ASN1_D2I_vars(a,X509_CRL *,X509_CRL_new);
235
236         M_ASN1_D2I_Init();
237         M_ASN1_D2I_start_sequence();
238         M_ASN1_D2I_get(ret->crl,d2i_X509_CRL_INFO);
239         M_ASN1_D2I_get(ret->sig_alg,d2i_X509_ALGOR);
240         M_ASN1_D2I_get(ret->signature,d2i_ASN1_BIT_STRING);
241
242         M_ASN1_D2I_Finish(a,X509_CRL_free,ASN1_F_D2I_X509_CRL);
243         }
244
245
246 X509_REVOKED *X509_REVOKED_new()
247         {
248         X509_REVOKED *ret=NULL;
249
250         M_ASN1_New_Malloc(ret,X509_REVOKED);
251         M_ASN1_New(ret->serialNumber,ASN1_INTEGER_new);
252         M_ASN1_New(ret->revocationDate,ASN1_UTCTIME_new);
253         ret->extensions=NULL;
254         return(ret);
255         M_ASN1_New_Error(ASN1_F_X509_REVOKED_NEW);
256         }
257
258 X509_CRL_INFO *X509_CRL_INFO_new()
259         {
260         X509_CRL_INFO *ret=NULL;
261
262         M_ASN1_New_Malloc(ret,X509_CRL_INFO);
263         ret->version=NULL;
264         M_ASN1_New(ret->sig_alg,X509_ALGOR_new);
265         M_ASN1_New(ret->issuer,X509_NAME_new);
266         M_ASN1_New(ret->lastUpdate,ASN1_UTCTIME_new);
267         M_ASN1_New(ret->nextUpdate,ASN1_UTCTIME_new);
268         M_ASN1_New(ret->revoked,sk_new_null);
269         M_ASN1_New(ret->extensions,sk_new_null);
270         ret->revoked->comp=(int (*)())X509_REVOKED_cmp;
271         return(ret);
272         M_ASN1_New_Error(ASN1_F_X509_CRL_INFO_NEW);
273         }
274
275 X509_CRL *X509_CRL_new()
276         {
277         X509_CRL *ret=NULL;
278
279         M_ASN1_New_Malloc(ret,X509_CRL);
280         ret->references=1;
281         M_ASN1_New(ret->crl,X509_CRL_INFO_new);
282         M_ASN1_New(ret->sig_alg,X509_ALGOR_new);
283         M_ASN1_New(ret->signature,ASN1_BIT_STRING_new);
284         return(ret);
285         M_ASN1_New_Error(ASN1_F_X509_CRL_NEW);
286         }
287
288 void X509_REVOKED_free(a)
289 X509_REVOKED *a;
290         {
291         if (a == NULL) return;
292         ASN1_INTEGER_free(a->serialNumber);
293         ASN1_UTCTIME_free(a->revocationDate);
294         sk_pop_free(a->extensions,X509_EXTENSION_free);
295         Free((char *)a);
296         }
297
298 void X509_CRL_INFO_free(a)
299 X509_CRL_INFO *a;
300         {
301         if (a == NULL) return;
302         ASN1_INTEGER_free(a->version);
303         X509_ALGOR_free(a->sig_alg);
304         X509_NAME_free(a->issuer);
305         ASN1_UTCTIME_free(a->lastUpdate);
306         ASN1_UTCTIME_free(a->nextUpdate);
307         sk_pop_free(a->revoked,X509_REVOKED_free);
308         sk_pop_free(a->extensions,X509_EXTENSION_free);
309         Free((char *)a);
310         }
311
312 void X509_CRL_free(a)
313 X509_CRL *a;
314         {
315         int i;
316
317         if (a == NULL) return;
318
319         i=CRYPTO_add(&a->references,-1,CRYPTO_LOCK_X509_CRL);
320         if (i > 0) return;
321 #ifdef REF_CHECK
322         if (i < 0)
323                 {
324                 fprintf(stderr,"X509_CRL_free, bad reference count\n");
325                 abort();
326                 }
327 #endif
328
329         X509_CRL_INFO_free(a->crl);
330         X509_ALGOR_free(a->sig_alg);
331         ASN1_BIT_STRING_free(a->signature);
332         Free((char *)a);
333         }
334
335 static int X509_REVOKED_cmp(a,b)
336 X509_REVOKED **a,**b;
337         {
338         return(ASN1_STRING_cmp(
339                 (ASN1_STRING *)(*a)->serialNumber,
340                 (ASN1_STRING *)(*b)->serialNumber));
341         }
342
343 static int X509_REVOKED_seq_cmp(a,b)
344 X509_REVOKED **a,**b;
345         {
346         return((*a)->sequence-(*b)->sequence);
347         }