909af7c9848c58d785c35cb6b49dd708797180c1
[openssl.git] / ssl / ssl_cert.c
1 /*! \file 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 <sys/types.h>
61 #include <dirent.h>
62 #include "objects.h"
63 #include "bio.h"
64 #include "pem.h"
65 #include "ssl_locl.h"
66
67 int SSL_get_ex_data_X509_STORE_CTX_idx()
68         {
69         static int ssl_x509_store_ctx_idx= -1;
70
71         if (ssl_x509_store_ctx_idx < 0)
72                 {
73                 ssl_x509_store_ctx_idx=X509_STORE_CTX_get_ex_new_index(
74                         0,"SSL for verify callback",NULL,NULL,NULL);
75                 }
76         return(ssl_x509_store_ctx_idx);
77         }
78
79 CERT *ssl_cert_new()
80         {
81         CERT *ret;
82
83         ret=(CERT *)Malloc(sizeof(CERT));
84         if (ret == NULL)
85                 {
86                 SSLerr(SSL_F_SSL_CERT_NEW,ERR_R_MALLOC_FAILURE);
87                 return(NULL);
88                 }
89         memset(ret,0,sizeof(CERT));
90 /*
91         ret->valid=0;
92         ret->mask=0;
93         ret->export_mask=0;
94         ret->cert_type=0;
95         ret->key->x509=NULL;
96         ret->key->publickey=NULL;
97         ret->key->privatekey=NULL; */
98
99         ret->key= &(ret->pkeys[SSL_PKEY_RSA_ENC]);
100         ret->references=1;
101
102         return(ret);
103         }
104
105 void ssl_cert_free(CERT *c)
106         {
107         int i;
108
109         if(c == NULL)
110             return;
111
112         i=CRYPTO_add(&c->references,-1,CRYPTO_LOCK_SSL_CERT);
113 #ifdef REF_PRINT
114         REF_PRINT("CERT",c);
115 #endif
116         if (i > 0) return;
117 #ifdef REF_CHECK
118         if (i < 0)
119                 {
120                 fprintf(stderr,"ssl_cert_free, bad reference count\n");
121                 abort(); /* ok */
122                 }
123 #endif
124
125 #ifndef NO_RSA
126         if (c->rsa_tmp) RSA_free(c->rsa_tmp);
127 #endif
128 #ifndef NO_DH
129         if (c->dh_tmp) DH_free(c->dh_tmp);
130 #endif
131
132         for (i=0; i<SSL_PKEY_NUM; i++)
133                 {
134                 if (c->pkeys[i].x509 != NULL)
135                         X509_free(c->pkeys[i].x509);
136                 if (c->pkeys[i].privatekey != NULL)
137                         EVP_PKEY_free(c->pkeys[i].privatekey);
138 #if 0
139                 if (c->pkeys[i].publickey != NULL)
140                         EVP_PKEY_free(c->pkeys[i].publickey);
141 #endif
142                 }
143         if (c->cert_chain != NULL)
144                 sk_pop_free(c->cert_chain,X509_free);
145         Free(c);
146         }
147
148 int ssl_cert_instantiate(CERT **o, CERT *d)
149         {
150         CERT *n;
151         if (o == NULL) 
152                 {
153                 SSLerr(SSL_F_SSL_CERT_INSTANTIATE, ERR_R_PASSED_NULL_PARAMETER);
154                 return(0);
155                 }
156         if (*o != NULL && (d == NULL || *o != d))
157             return(1);
158         if ((n = ssl_cert_new()) == NULL) 
159                 {
160                 SSLerr(SSL_F_SSL_CERT_INSTANTIATE, ERR_R_MALLOC_FAILURE);
161                 return(0);
162                 }
163         if (*o != NULL) 
164                 ssl_cert_free(*o);
165         *o = n;
166         return(1);
167         }
168
169 int ssl_set_cert_type(CERT *c,int type)
170         {
171         c->cert_type=type;
172         return(1);
173         }
174
175 int ssl_verify_cert_chain(SSL *s,STACK *sk)
176         {
177         X509 *x;
178         int i;
179         X509_STORE_CTX ctx;
180
181         if ((sk == NULL) || (sk_num(sk) == 0))
182                 return(0);
183
184         x=(X509 *)sk_value(sk,0);
185         X509_STORE_CTX_init(&ctx,s->ctx->cert_store,x,sk);
186         X509_STORE_CTX_set_ex_data(&ctx,SSL_get_ex_data_X509_STORE_CTX_idx(),
187                 (char *)s);
188
189         if (s->ctx->app_verify_callback != NULL)
190                 i=s->ctx->app_verify_callback(&ctx);
191         else
192                 {
193 #ifndef NO_X509_VERIFY
194                 i=X509_verify_cert(&ctx);
195 #else
196                 i=0;
197                 ctx.error=X509_V_ERR_APPLICATION_VERIFICATION;
198                 SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN,SSL_R_NO_VERIFY_CALLBACK);
199 #endif
200                 }
201
202         s->verify_result=ctx.error;
203         X509_STORE_CTX_cleanup(&ctx);
204
205         return(i);
206         }
207
208 static void set_client_CA_list(STACK **ca_list,STACK *list)
209         {
210         if (*ca_list != NULL)
211                 sk_pop_free(*ca_list,X509_NAME_free);
212
213         *ca_list=list;
214         }
215
216 STACK *SSL_dup_CA_list(STACK *sk)
217         {
218         int i;
219         STACK *ret;
220         X509_NAME *name;
221
222         ret=sk_new_null();
223         for (i=0; i<sk_num(sk); i++)
224                 {
225                 name=X509_NAME_dup((X509_NAME *)sk_value(sk,i));
226                 if ((name == NULL) || !sk_push(ret,(char *)name))
227                         {
228                         sk_pop_free(ret,X509_NAME_free);
229                         return(NULL);
230                         }
231                 }
232         return(ret);
233         }
234
235 void SSL_set_client_CA_list(SSL *s,STACK *list)
236         {
237         set_client_CA_list(&(s->client_CA),list);
238         }
239
240 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx,STACK *list)
241         {
242         set_client_CA_list(&(ctx->client_CA),list);
243         }
244
245 STACK *SSL_CTX_get_client_CA_list(SSL_CTX *ctx)
246         {
247         return(ctx->client_CA);
248         }
249
250 STACK *SSL_get_client_CA_list(SSL *s)
251         {
252         if (s->type == SSL_ST_CONNECT)
253                 { /* we are in the client */
254                 if (((s->version>>8) == SSL3_VERSION_MAJOR) &&
255                         (s->s3 != NULL))
256                         return(s->s3->tmp.ca_names);
257                 else
258                         return(NULL);
259                 }
260         else
261                 {
262                 if (s->client_CA != NULL)
263                         return(s->client_CA);
264                 else
265                         return(s->ctx->client_CA);
266                 }
267         }
268
269 static int add_client_CA(STACK **sk,X509 *x)
270         {
271         X509_NAME *name;
272
273         if (x == NULL) return(0);
274         if ((*sk == NULL) && ((*sk=sk_new_null()) == NULL))
275                 return(0);
276                 
277         if ((name=X509_NAME_dup(X509_get_subject_name(x))) == NULL)
278                 return(0);
279
280         if (!sk_push(*sk,(char *)name))
281                 {
282                 X509_NAME_free(name);
283                 return(0);
284                 }
285         return(1);
286         }
287
288 int SSL_add_client_CA(SSL *ssl,X509 *x)
289         {
290         return(add_client_CA(&(ssl->client_CA),x));
291         }
292
293 int SSL_CTX_add_client_CA(SSL_CTX *ctx,X509 *x)
294         {
295         return(add_client_CA(&(ctx->client_CA),x));
296         }
297
298 static int name_cmp(X509_NAME **a,X509_NAME **b)
299         {
300         return(X509_NAME_cmp(*a,*b));
301         }
302
303 #ifndef NO_STDIO
304 /*!
305  * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed;
306  * it doesn't really have anything to do with clients (except that a common use
307  * for a stack of CAs is to send it to the client). Actually, it doesn't have
308  * much to do with CAs, either, since it will load any old cert.
309  * \param file the file containing one or more certs.
310  * \return a ::STACK containing the certs.
311  */
312 STACK *SSL_load_client_CA_file(char *file)
313         {
314         BIO *in;
315         X509 *x=NULL;
316         X509_NAME *xn=NULL;
317         STACK *ret,*sk;
318
319         ret=sk_new(NULL);
320         sk=sk_new(name_cmp);
321
322         in=BIO_new(BIO_s_file_internal());
323
324         if ((ret == NULL) || (sk == NULL) || (in == NULL))
325                 {
326                 SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE,ERR_R_MALLOC_FAILURE);
327                 goto err;
328                 }
329         
330         if (!BIO_read_filename(in,file))
331                 goto err;
332
333         for (;;)
334                 {
335                 if (PEM_read_bio_X509(in,&x,NULL) == NULL)
336                         break;
337                 if ((xn=X509_get_subject_name(x)) == NULL) goto err;
338                 /* check for duplicates */
339                 xn=X509_NAME_dup(xn);
340                 if (xn == NULL) goto err;
341                 if (sk_find(sk,(char *)xn) >= 0)
342                         X509_NAME_free(xn);
343                 else
344                         {
345                         sk_push(sk,(char *)xn);
346                         sk_push(ret,(char *)xn);
347                         }
348                 }
349
350         if (0)
351                 {
352 err:
353                 if (ret != NULL) sk_pop_free(ret,X509_NAME_free);
354                 ret=NULL;
355                 }
356         if (sk != NULL) sk_free(sk);
357         if (in != NULL) BIO_free(in);
358         if (x != NULL) X509_free(x);
359         return(ret);
360         }
361 #endif
362
363 /*!
364  * Add a file of certs to a stack.
365  * \param stack the stack to add to.
366  * \param file the file to add from. All certs in this file that are not
367  * already in the stack will be added.
368  * \return 1 for success, 0 for failure. Note that in the case of failure some
369  * certs may have been added to \c stack.
370  */
371
372 int SSL_add_cert_file_to_stack(STACK *stack,const char *file)
373     {
374     BIO *in;
375     X509 *x=NULL;
376     X509_NAME *xn=NULL;
377     int ret=1;
378     int (*oldcmp)();
379
380     oldcmp=sk_set_cmp_func(stack,name_cmp);
381
382     in=BIO_new(BIO_s_file_internal());
383
384     if (ret == NULL || in == NULL)
385         {
386         SSLerr(SSL_F_SSL_ADD_CERT_FILE_TO_STACK,ERR_R_MALLOC_FAILURE);
387         goto err;
388         }
389         
390     if (!BIO_read_filename(in,file))
391         goto err;
392
393     for (;;)
394         {
395         if (PEM_read_bio_X509(in,&x,NULL) == NULL)
396             break;
397         if ((xn=X509_get_subject_name(x)) == NULL) goto err;
398         xn=X509_NAME_dup(xn);
399         if (xn == NULL) goto err;
400         if (sk_find(stack,(char *)xn) >= 0)
401             X509_NAME_free(xn);
402         else
403             sk_push(stack,(char *)xn);
404         }
405
406     if (0)
407         {
408 err:
409         ret=0;
410         }
411     if(in != NULL)
412         BIO_free(in);
413     if(x != NULL)
414         X509_free(x);
415
416     sk_set_cmp_func(stack,oldcmp);
417
418     return ret;
419     }
420
421 /*!
422  * Add a directory of certs to a stack.
423  * \param stack the stack to append to.
424  * \param dir the directory to append from. All files in this directory will be
425  * examined as potential certs. Any that are acceptable to
426  * SSL_add_cert_file_to_stack() that are not already in the stack will be
427  * included.
428  * \return 1 for success, 0 for failure. Note that in the case of failure some
429  * certs may have been added to \c stack.
430  */
431
432 int SSL_add_cert_dir_to_stack(STACK *stack,const char *dir)
433     {
434     DIR *d=opendir(dir);
435     struct dirent *dstruct;
436
437     /* Note that a side effect is that the CAs will be sorted by name */
438     if(!d)
439         {
440         SSLerr(SSL_F_SSL_ADD_CERT_DIR_TO_STACK,ERR_R_MALLOC_FAILURE);
441         return 0;
442         }
443
444     while((dstruct=readdir(d)))
445         {
446         char buf[1024];
447
448         if(strlen(dir)+strlen(dstruct->d_name)+2 > sizeof buf)
449             {
450             SSLerr(SSL_F_SSL_ADD_CERT_DIR_TO_STACK,SSL_R_PATH_TOO_LONG);
451             return 0;
452             }
453         
454         sprintf(buf,"%s/%s",dir,dstruct->d_name);
455         if(!SSL_add_cert_file_to_stack(stack,buf))
456             return 0;
457         }
458
459     return 1;
460     }