9f06b6966d55b5064653c8f672a595dec62155ca
[openssl.git] / ssl / ssl_cert.c
1 /* ssl/ssl_cert.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 "objects.h"
61 #include "bio.h"
62 #include "pem.h"
63 #include "ssl_locl.h"
64
65 int SSL_get_ex_data_X509_STORE_CTX_idx()
66         {
67         static int ssl_x509_store_ctx_idx= -1;
68
69         if (ssl_x509_store_ctx_idx < 0)
70                 {
71                 ssl_x509_store_ctx_idx=X509_STORE_CTX_get_ex_new_index(
72                         0,"SSL for verify callback",NULL,NULL,NULL);
73                 }
74         return(ssl_x509_store_ctx_idx);
75         }
76
77 CERT *ssl_cert_new()
78         {
79         CERT *ret;
80
81         ret=(CERT *)Malloc(sizeof(CERT));
82         if (ret == NULL)
83                 {
84                 SSLerr(SSL_F_SSL_CERT_NEW,ERR_R_MALLOC_FAILURE);
85                 return(NULL);
86                 }
87         memset(ret,0,sizeof(CERT));
88 /*
89         ret->valid=0;
90         ret->mask=0;
91         ret->export_mask=0;
92         ret->cert_type=0;
93         ret->key->x509=NULL;
94         ret->key->publickey=NULL;
95         ret->key->privatekey=NULL; */
96
97         ret->key= &(ret->pkeys[SSL_PKEY_RSA_ENC]);
98         ret->references=1;
99
100         return(ret);
101         }
102
103 void ssl_cert_free(c)
104 CERT *c;
105         {
106         int i;
107
108         if(c == NULL)
109             return;
110
111         i=CRYPTO_add(&c->references,-1,CRYPTO_LOCK_SSL_CERT);
112 #ifdef REF_PRINT
113         REF_PRINT("CERT",c);
114 #endif
115         if (i > 0) return;
116 #ifdef REF_CHECK
117         if (i < 0)
118                 {
119                 fprintf(stderr,"ssl_cert_free, bad reference count\n");
120                 abort(); /* ok */
121                 }
122 #endif
123
124 #ifndef NO_RSA
125         if (c->rsa_tmp) RSA_free(c->rsa_tmp);
126 #endif
127 #ifndef NO_DH
128         if (c->dh_tmp) DH_free(c->dh_tmp);
129 #endif
130
131         for (i=0; i<SSL_PKEY_NUM; i++)
132                 {
133                 if (c->pkeys[i].x509 != NULL)
134                         X509_free(c->pkeys[i].x509);
135                 if (c->pkeys[i].privatekey != NULL)
136                         EVP_PKEY_free(c->pkeys[i].privatekey);
137 #if 0
138                 if (c->pkeys[i].publickey != NULL)
139                         EVP_PKEY_free(c->pkeys[i].publickey);
140 #endif
141                 }
142         if (c->cert_chain != NULL)
143                 sk_pop_free(c->cert_chain,X509_free);
144         Free(c);
145         }
146
147 int ssl_cert_instantiate(CERT **o, CERT *d)
148         {
149         CERT *n;
150         if (o == NULL) 
151                 {
152                 SSLerr(SSL_F_SSL_CERT_INSTANTIATE, ERR_R_PASSED_NULL_PARAMETER);
153                 return(0);
154                 }
155         if (*o != NULL && (d == NULL || *o != d))
156             return(1);
157         if ((n = ssl_cert_new()) == NULL) 
158                 {
159                 SSLerr(SSL_F_SSL_CERT_INSTANTIATE, ERR_R_MALLOC_FAILURE);
160                 return(0);
161                 }
162         if (*o != NULL) 
163                 ssl_cert_free(*o);
164         *o = n;
165         return(1);
166         }
167
168 int ssl_set_cert_type(c, type)
169 CERT *c;
170 int type;
171         {
172         c->cert_type=type;
173         return(1);
174         }
175
176 int ssl_verify_cert_chain(s,sk)
177 SSL *s;
178 STACK *sk;
179         {
180         X509 *x;
181         int i;
182         X509_STORE_CTX ctx;
183
184         if ((sk == NULL) || (sk_num(sk) == 0))
185                 return(0);
186
187         x=(X509 *)sk_value(sk,0);
188         X509_STORE_CTX_init(&ctx,s->ctx->cert_store,x,sk);
189         X509_STORE_CTX_set_ex_data(&ctx,SSL_get_ex_data_X509_STORE_CTX_idx(),
190                 (char *)s);
191
192         if (s->ctx->app_verify_callback != NULL)
193                 i=s->ctx->app_verify_callback(&ctx);
194         else
195                 {
196 #ifndef NO_X509_VERIFY
197                 i=X509_verify_cert(&ctx);
198 #else
199                 i=0;
200                 ctx.error=X509_V_ERR_APPLICATION_VERIFICATION;
201                 SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN,SSL_R_NO_VERIFY_CALLBACK);
202 #endif
203                 }
204
205         s->verify_result=ctx.error;
206         X509_STORE_CTX_cleanup(&ctx);
207
208         return(i);
209         }
210
211 static void set_client_CA_list(ca_list,list)
212 STACK **ca_list;
213 STACK *list;
214         {
215         if (*ca_list != NULL)
216                 sk_pop_free(*ca_list,X509_NAME_free);
217
218         *ca_list=list;
219         }
220
221 STACK *SSL_dup_CA_list(sk)
222 STACK *sk;
223         {
224         int i;
225         STACK *ret;
226         X509_NAME *name;
227
228         ret=sk_new_null();
229         for (i=0; i<sk_num(sk); i++)
230                 {
231                 name=X509_NAME_dup((X509_NAME *)sk_value(sk,i));
232                 if ((name == NULL) || !sk_push(ret,(char *)name))
233                         {
234                         sk_pop_free(ret,X509_NAME_free);
235                         return(NULL);
236                         }
237                 }
238         return(ret);
239         }
240
241 void SSL_set_client_CA_list(s,list)
242 SSL *s;
243 STACK *list;
244         {
245         set_client_CA_list(&(s->client_CA),list);
246         }
247
248 void SSL_CTX_set_client_CA_list(ctx,list)
249 SSL_CTX *ctx;
250 STACK *list;
251         {
252         set_client_CA_list(&(ctx->client_CA),list);
253         }
254
255 STACK *SSL_CTX_get_client_CA_list(ctx)
256 SSL_CTX *ctx;
257         {
258         return(ctx->client_CA);
259         }
260
261 STACK *SSL_get_client_CA_list(s)
262 SSL *s;
263         {
264         if (s->type == SSL_ST_CONNECT)
265                 { /* we are in the client */
266                 if (((s->version>>8) == SSL3_VERSION_MAJOR) &&
267                         (s->s3 != NULL))
268                         return(s->s3->tmp.ca_names);
269                 else
270                         return(NULL);
271                 }
272         else
273                 {
274                 if (s->client_CA != NULL)
275                         return(s->client_CA);
276                 else
277                         return(s->ctx->client_CA);
278                 }
279         }
280
281 static int add_client_CA(sk,x)
282 STACK **sk;
283 X509 *x;
284         {
285         X509_NAME *name;
286
287         if (x == NULL) return(0);
288         if ((*sk == NULL) && ((*sk=sk_new_null()) == NULL))
289                 return(0);
290                 
291         if ((name=X509_NAME_dup(X509_get_subject_name(x))) == NULL)
292                 return(0);
293
294         if (!sk_push(*sk,(char *)name))
295                 {
296                 X509_NAME_free(name);
297                 return(0);
298                 }
299         return(1);
300         }
301
302 int SSL_add_client_CA(ssl,x)
303 SSL *ssl;
304 X509 *x;
305         {
306         return(add_client_CA(&(ssl->client_CA),x));
307         }
308
309 int SSL_CTX_add_client_CA(ctx,x)
310 SSL_CTX *ctx;
311 X509 *x;
312         {
313         return(add_client_CA(&(ctx->client_CA),x));
314         }
315
316 static int name_cmp(a,b)
317 X509_NAME **a,**b;
318         {
319         return(X509_NAME_cmp(*a,*b));
320         }
321
322 #ifndef NO_STDIO
323 STACK *SSL_load_client_CA_file(file)
324 char *file;
325         {
326         BIO *in;
327         X509 *x=NULL;
328         X509_NAME *xn=NULL;
329         STACK *ret,*sk;
330
331         ret=sk_new(NULL);
332         sk=sk_new(name_cmp);
333
334         in=BIO_new(BIO_s_file_internal());
335
336         if ((ret == NULL) || (sk == NULL) || (in == NULL))
337                 {
338                 SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE,ERR_R_MALLOC_FAILURE);
339                 goto err;
340                 }
341         
342         if (!BIO_read_filename(in,file))
343                 goto err;
344
345         for (;;)
346                 {
347                 if (PEM_read_bio_X509(in,&x,NULL) == NULL)
348                         break;
349                 if ((xn=X509_get_subject_name(x)) == NULL) goto err;
350                 /* check for duplicates */
351                 xn=X509_NAME_dup(xn);
352                 if (xn == NULL) goto err;
353                 if (sk_find(sk,(char *)xn) >= 0)
354                         X509_NAME_free(xn);
355                 else
356                         {
357                         sk_push(sk,(char *)xn);
358                         sk_push(ret,(char *)xn);
359                         }
360                 }
361
362         if (0)
363                 {
364 err:
365                 if (ret != NULL) sk_pop_free(ret,X509_NAME_free);
366                 ret=NULL;
367                 }
368         if (sk != NULL) sk_free(sk);
369         if (in != NULL) BIO_free(in);
370         if (x != NULL) X509_free(x);
371         return(ret);
372         }
373 #endif
374