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