New structure type SESS_CERT used instead of CERT inside SSL_SESSION.
[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  * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
60  *
61  * Redistribution and use in source and binary forms, with or without
62  * modification, are permitted provided that the following conditions
63  * are met:
64  *
65  * 1. Redistributions of source code must retain the above copyright
66  *    notice, this list of conditions and the following disclaimer. 
67  *
68  * 2. Redistributions in binary form must reproduce the above copyright
69  *    notice, this list of conditions and the following disclaimer in
70  *    the documentation and/or other materials provided with the
71  *    distribution.
72  *
73  * 3. All advertising materials mentioning features or use of this
74  *    software must display the following acknowledgment:
75  *    "This product includes software developed by the OpenSSL Project
76  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
77  *
78  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79  *    endorse or promote products derived from this software without
80  *    prior written permission. For written permission, please contact
81  *    openssl-core@OpenSSL.org.
82  *
83  * 5. Products derived from this software may not be called "OpenSSL"
84  *    nor may "OpenSSL" appear in their names without prior written
85  *    permission of the OpenSSL Project.
86  *
87  * 6. Redistributions of any form whatsoever must retain the following
88  *    acknowledgment:
89  *    "This product includes software developed by the OpenSSL Project
90  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
91  *
92  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
96  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103  * OF THE POSSIBILITY OF SUCH DAMAGE.
104  * ====================================================================
105  */
106
107 #include <stdio.h>
108 #include <sys/types.h>
109 #ifndef WIN32
110 #ifndef VMS
111 #include <dirent.h>
112 #endif
113 #endif
114 #include <openssl/objects.h>
115 #include <openssl/bio.h>
116 #include <openssl/pem.h>
117 #include "ssl_locl.h"
118
119 int SSL_get_ex_data_X509_STORE_CTX_idx(void)
120         {
121         static int ssl_x509_store_ctx_idx= -1;
122
123         if (ssl_x509_store_ctx_idx < 0)
124                 {
125                 ssl_x509_store_ctx_idx=X509_STORE_CTX_get_ex_new_index(
126                         0,"SSL for verify callback",NULL,NULL,NULL);
127                 }
128         return(ssl_x509_store_ctx_idx);
129         }
130
131 CERT *ssl_cert_new(void)
132         {
133         CERT *ret;
134
135         ret=(CERT *)Malloc(sizeof(CERT));
136         if (ret == NULL)
137                 {
138                 SSLerr(SSL_F_SSL_CERT_NEW,ERR_R_MALLOC_FAILURE);
139                 return(NULL);
140                 }
141         memset(ret,0,sizeof(CERT));
142 /*
143         ret->valid=0;
144         ret->mask=0;
145         ret->export_mask=0;
146         ret->cert_type=0;
147         ret->key->x509=NULL;
148         ret->key->publickey=NULL;
149         ret->key->privatekey=NULL; */
150
151         ret->key= &(ret->pkeys[SSL_PKEY_RSA_ENC]);
152         ret->references=1;
153
154         return(ret);
155         }
156
157 CERT *ssl_cert_dup(CERT *cert)
158         {
159         CERT *ret;
160         int i;
161
162         ret = (CERT *)Malloc(sizeof(CERT));
163         if (ret == NULL)
164                 {
165                 SSLerr(SSL_F_SSL_CERT_DUP, ERR_R_MALLOC_FAILURE);
166                 return(NULL);
167                 }
168
169         memset(ret, 0, sizeof(CERT));
170
171         ret->cert_type = cert->cert_type;
172
173         ret->key = &ret->pkeys[cert->key - &cert->pkeys[0]];
174         /* or ret->key = ret->pkeys + (cert->key - cert->pkeys),
175          * if you find that more readable */
176
177         ret->valid = cert->valid;
178         ret->mask = cert->mask;
179         ret->export_mask = cert->export_mask;
180
181 #ifndef NO_RSA
182         if (cert->rsa_tmp != NULL)
183                 {
184                 ret->rsa_tmp = cert->rsa_tmp;
185                 CRYPTO_add(&ret->rsa_tmp->references, 1, CRYPTO_LOCK_RSA);
186                 }
187         ret->rsa_tmp_cb = cert->rsa_tmp_cb;
188 #endif
189
190 #ifndef NO_DH
191         if (cert->dh_tmp != NULL)
192                 {
193                 /* DH parameters don't have a reference count (and cannot
194                  * reasonably be shared anyway, as the secret exponent may
195                  * be created just when it is needed -- earlier library
196                  * versions did not pay attention to this) */
197                 ret->dh_tmp = DHparams_dup(cert->dh_tmp);
198                 if (ret->dh_tmp == NULL)
199                         {
200                         SSLerr(SSL_F_SSL_CERT_NEW, ERR_R_DH_LIB);
201                         goto err;
202                         }
203                 }
204         ret->dh_tmp_cb = cert->dh_tmp_cb;
205 #endif
206
207         for (i = 0; i < SSL_PKEY_NUM; i++)
208                 {
209                 if (cert->pkeys[i].x509 != NULL)
210                         {
211                         ret->pkeys[i].x509 = cert->pkeys[i].x509;
212                         CRYPTO_add(&ret->pkeys[i].x509->references, 1,
213                                 CRYPTO_LOCK_X509);
214                         }
215                 
216                 if (cert->pkeys[i].privatekey != NULL)
217                         {
218                         ret->pkeys[i].privatekey = cert->pkeys[i].privatekey;
219                         CRYPTO_add(&ret->pkeys[i].privatekey->references, 1,
220                                 CRYPTO_LOCK_EVP_PKEY);
221
222                         switch(i) 
223                                 {
224                                 /* If there was anything special to do for
225                                  * certain types of keys, we'd do it here.
226                                  * (Nothing at the moment, I think.) */
227
228                         case SSL_PKEY_RSA_ENC:
229                         case SSL_PKEY_RSA_SIGN:
230                                 /* We have an RSA key. */
231                                 break;
232                                 
233                         case SSL_PKEY_DSA_SIGN:
234                                 /* We have a DSA key. */
235                                 break;
236                                 
237                         case SSL_PKEY_DH_RSA:
238                         case SSL_PKEY_DH_DSA:
239                                 /* We have a DH key. */
240                                 break;
241                                 
242                         default:
243                                 /* Can't happen. */
244                                 SSLerr(SSL_F_SSL_CERT_DUP, SSL_R_LIBRARY_BUG);
245                                 }
246                         }
247                 }
248         
249
250         /* ret->cert_chain should not exist: that's pure per-connection data.
251          * Anyway, we never use this function when it is non-NULL,
252          * so we just don't look at it. */
253
254         /* ret->extra_certs *should* exist, but currently the own certificate
255          * chain is held inside SSL_CTX */
256
257         ret->references=1;
258
259         return(ret);
260         
261 err:
262 #ifndef NO_RSA
263         if (ret->rsa_tmp != NULL)
264                 RSA_free(ret->rsa_tmp);
265 #endif
266 #ifndef NO_DH
267         if (ret->dh_tmp != NULL)
268                 DH_free(ret->dh_tmp);
269 #endif
270
271         for (i = 0; i < SSL_PKEY_NUM; i++)
272                 {
273                 if (ret->pkeys[i].x509 != NULL)
274                         X509_free(ret->pkeys[i].x509);
275                 if (ret->pkeys[i].privatekey != NULL)
276                         EVP_PKEY_free(ret->pkeys[i].privatekey);
277                 }
278
279         return NULL;
280         }
281
282
283 void ssl_cert_free(CERT *c)
284         {
285         int i;
286
287         if(c == NULL)
288             return;
289
290         i=CRYPTO_add(&c->references,-1,CRYPTO_LOCK_SSL_CERT);
291 #ifdef REF_PRINT
292         REF_PRINT("CERT",c);
293 #endif
294         if (i > 0) return;
295 #ifdef REF_CHECK
296         if (i < 0)
297                 {
298                 fprintf(stderr,"ssl_cert_free, bad reference count\n");
299                 abort(); /* ok */
300                 }
301 #endif
302
303 #ifndef NO_RSA
304         if (c->rsa_tmp) RSA_free(c->rsa_tmp);
305 #endif
306 #ifndef NO_DH
307         if (c->dh_tmp) DH_free(c->dh_tmp);
308 #endif
309
310         for (i=0; i<SSL_PKEY_NUM; i++)
311                 {
312                 if (c->pkeys[i].x509 != NULL)
313                         X509_free(c->pkeys[i].x509);
314                 if (c->pkeys[i].privatekey != NULL)
315                         EVP_PKEY_free(c->pkeys[i].privatekey);
316 #if 0
317                 if (c->pkeys[i].publickey != NULL)
318                         EVP_PKEY_free(c->pkeys[i].publickey);
319 #endif
320                 }
321         Free(c);
322         }
323
324 int ssl_cert_inst(CERT **o)
325         {
326         /* Create a CERT if there isn't already one
327          * (which cannot really happen, as it is initially created in
328          * SSL_CTX_new; but the earlier code usually allows for that one
329          * being non-existant, so we follow that behaviour, as it might
330          * turn out that there actually is a reason for it -- but I'm
331          * not sure that *all* of the existing code could cope with
332          * s->cert being NULL, otherwise we could do without the
333          * initialization in SSL_CTX_new).
334          */
335         
336         if (o == NULL) 
337                 {
338                 SSLerr(SSL_F_SSL_CERT_INST, ERR_R_PASSED_NULL_PARAMETER);
339                 return(0);
340                 }
341         if (*o == NULL)
342                 {
343                 if ((*o = ssl_cert_new()) == NULL)
344                         {
345                         SSLerr(SSL_F_SSL_CERT_INST, ERR_R_MALLOC_FAILURE);
346                         return(0);
347                         }
348                 }
349         return(1);
350         }
351
352
353 SESS_CERT *ssl_sess_cert_new(void)
354         {
355         SESS_CERT *ret;
356
357         ret = Malloc(sizeof *ret);
358         if (ret == NULL)
359                 {
360                 SSLerr(SSL_F_SSL_SESS_CERT_NEW, ERR_R_MALLOC_FAILURE);
361                 return NULL;
362                 }
363
364         memset(ret, 0 ,sizeof *ret);
365         ret->peer_key = &(ret->peer_pkeys[SSL_PKEY_RSA_ENC]);
366         ret->references = 1;
367
368         return ret;
369         }
370
371 void ssl_sess_cert_free(SESS_CERT *sc)
372         {
373         int i;
374
375         if (sc == NULL)
376                 return;
377
378         i = CRYPTO_add(&sc->references, -1, CRYPTO_LOCK_SSL_SESS_CERT);
379 #ifdef REF_PRINT
380         REF_PRINT("SESS_CERT", sc);
381 #endif
382         if (i > 0)
383                 return;
384 #ifdef REF_CHECK
385         if (i < 0)
386                 {
387                 fprintf(stderr,"ssl_sess_cert_free, bad reference count\n");
388                 abort(); /* ok */
389                 }
390 #endif
391
392         /* i == 0 */
393         if (sc->cert_chain != NULL)
394                 sk_X509_pop_free(sc->cert_chain, X509_free);
395         for (i = 0; i < SSL_PKEY_NUM; i++)
396                 {
397                 if (sc->peer_pkeys[i].x509 != NULL)
398                         X509_free(sc->peer_pkeys[i].x509);
399 #if 0 /* We don't have the peer's private key.  These lines are just
400            * here as a reminder that we're still using a not-quite-appropriate
401            * data structure. */
402                 if (sc->peer_pkeys[i].privatekey != NULL)
403                         EVP_PKEY_free(sc->peer_pkeys[i].privatekey);
404 #endif
405                 }
406
407 #ifndef NO_RSA
408         if (sc->peer_rsa_tmp != NULL)
409                 RSA_free(sc->peer_rsa_tmp);
410 #endif
411 #ifndef NO_DH
412         if (sc->peer_dh_tmp != NULL)
413                 DH_free(sc->peer_dh_tmp);
414 #endif
415
416         Free(sc);
417         }
418
419 int ssl_set_peer_cert_type(SESS_CERT *sc,int type)
420         {
421         sc->peer_cert_type = type;
422         return(1);
423         }
424
425 int ssl_verify_cert_chain(SSL *s,STACK_OF(X509) *sk)
426         {
427         X509 *x;
428         int i;
429         X509_STORE_CTX ctx;
430
431         if ((sk == NULL) || (sk_X509_num(sk) == 0))
432                 return(0);
433
434         x=sk_X509_value(sk,0);
435         X509_STORE_CTX_init(&ctx,s->ctx->cert_store,x,sk);
436         if (SSL_get_verify_depth(s) >= 0)
437                 X509_STORE_CTX_set_depth(&ctx, SSL_get_verify_depth(s));
438         X509_STORE_CTX_set_ex_data(&ctx,SSL_get_ex_data_X509_STORE_CTX_idx(),
439                 (char *)s);
440
441         if (s->ctx->app_verify_callback != NULL)
442                 i=s->ctx->app_verify_callback(&ctx);
443         else
444                 {
445 #ifndef NO_X509_VERIFY
446                 i=X509_verify_cert(&ctx);
447 #else
448                 i=0;
449                 ctx.error=X509_V_ERR_APPLICATION_VERIFICATION;
450                 SSLerr(SSL_F_SSL_VERIFY_CERT_CHAIN,SSL_R_NO_VERIFY_CALLBACK);
451 #endif
452                 }
453
454         s->verify_result=ctx.error;
455         X509_STORE_CTX_cleanup(&ctx);
456
457         return(i);
458         }
459
460 static void set_client_CA_list(STACK_OF(X509_NAME) **ca_list,STACK_OF(X509_NAME) *list)
461         {
462         if (*ca_list != NULL)
463                 sk_X509_NAME_pop_free(*ca_list,X509_NAME_free);
464
465         *ca_list=list;
466         }
467
468 STACK *SSL_dup_CA_list(STACK *sk)
469         {
470         int i;
471         STACK *ret;
472         X509_NAME *name;
473
474         ret=sk_new_null();
475         for (i=0; i<sk_num(sk); i++)
476                 {
477                 name=X509_NAME_dup((X509_NAME *)sk_value(sk,i));
478                 if ((name == NULL) || !sk_push(ret,(char *)name))
479                         {
480                         sk_pop_free(ret,X509_NAME_free);
481                         return(NULL);
482                         }
483                 }
484         return(ret);
485         }
486
487 void SSL_set_client_CA_list(SSL *s,STACK_OF(X509_NAME) *list)
488         {
489         set_client_CA_list(&(s->client_CA),list);
490         }
491
492 void SSL_CTX_set_client_CA_list(SSL_CTX *ctx,STACK_OF(X509_NAME) *list)
493         {
494         set_client_CA_list(&(ctx->client_CA),list);
495         }
496
497 STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(SSL_CTX *ctx)
498         {
499         return(ctx->client_CA);
500         }
501
502 STACK_OF(X509_NAME) *SSL_get_client_CA_list(SSL *s)
503         {
504         if (s->type == SSL_ST_CONNECT)
505                 { /* we are in the client */
506                 if (((s->version>>8) == SSL3_VERSION_MAJOR) &&
507                         (s->s3 != NULL))
508                         return(s->s3->tmp.ca_names);
509                 else
510                         return(NULL);
511                 }
512         else
513                 {
514                 if (s->client_CA != NULL)
515                         return(s->client_CA);
516                 else
517                         return(s->ctx->client_CA);
518                 }
519         }
520
521 static int add_client_CA(STACK_OF(X509_NAME) **sk,X509 *x)
522         {
523         X509_NAME *name;
524
525         if (x == NULL) return(0);
526         if ((*sk == NULL) && ((*sk=sk_X509_NAME_new_null()) == NULL))
527                 return(0);
528                 
529         if ((name=X509_NAME_dup(X509_get_subject_name(x))) == NULL)
530                 return(0);
531
532         if (!sk_X509_NAME_push(*sk,name))
533                 {
534                 X509_NAME_free(name);
535                 return(0);
536                 }
537         return(1);
538         }
539
540 int SSL_add_client_CA(SSL *ssl,X509 *x)
541         {
542         return(add_client_CA(&(ssl->client_CA),x));
543         }
544
545 int SSL_CTX_add_client_CA(SSL_CTX *ctx,X509 *x)
546         {
547         return(add_client_CA(&(ctx->client_CA),x));
548         }
549
550 static int name_cmp(X509_NAME **a,X509_NAME **b)
551         {
552         return(X509_NAME_cmp(*a,*b));
553         }
554
555 #ifndef NO_STDIO
556 /*!
557  * Load CA certs from a file into a ::STACK. Note that it is somewhat misnamed;
558  * it doesn't really have anything to do with clients (except that a common use
559  * for a stack of CAs is to send it to the client). Actually, it doesn't have
560  * much to do with CAs, either, since it will load any old cert.
561  * \param file the file containing one or more certs.
562  * \return a ::STACK containing the certs.
563  */
564 STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file)
565         {
566         BIO *in;
567         X509 *x=NULL;
568         X509_NAME *xn=NULL;
569         STACK_OF(X509_NAME) *ret,*sk;
570
571         ret=sk_X509_NAME_new(NULL);
572         sk=sk_X509_NAME_new(name_cmp);
573
574         in=BIO_new(BIO_s_file_internal());
575
576         if ((ret == NULL) || (sk == NULL) || (in == NULL))
577                 {
578                 SSLerr(SSL_F_SSL_LOAD_CLIENT_CA_FILE,ERR_R_MALLOC_FAILURE);
579                 goto err;
580                 }
581         
582         if (!BIO_read_filename(in,file))
583                 goto err;
584
585         for (;;)
586                 {
587                 if (PEM_read_bio_X509(in,&x,NULL) == NULL)
588                         break;
589                 if ((xn=X509_get_subject_name(x)) == NULL) goto err;
590                 /* check for duplicates */
591                 xn=X509_NAME_dup(xn);
592                 if (xn == NULL) goto err;
593                 if (sk_X509_NAME_find(sk,xn) >= 0)
594                         X509_NAME_free(xn);
595                 else
596                         {
597                         sk_X509_NAME_push(sk,xn);
598                         sk_X509_NAME_push(ret,xn);
599                         }
600                 }
601
602         if (0)
603                 {
604 err:
605                 if (ret != NULL) sk_X509_NAME_pop_free(ret,X509_NAME_free);
606                 ret=NULL;
607                 }
608         if (sk != NULL) sk_X509_NAME_free(sk);
609         if (in != NULL) BIO_free(in);
610         if (x != NULL) X509_free(x);
611         return(ret);
612         }
613 #endif
614
615 /*!
616  * Add a file of certs to a stack.
617  * \param stack the stack to add to.
618  * \param file the file to add from. All certs in this file that are not
619  * already in the stack will be added.
620  * \return 1 for success, 0 for failure. Note that in the case of failure some
621  * certs may have been added to \c stack.
622  */
623
624 int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
625                                         const char *file)
626     {
627     BIO *in;
628     X509 *x=NULL;
629     X509_NAME *xn=NULL;
630     int ret=1;
631     int (*oldcmp)(X509_NAME **a, X509_NAME **b);
632
633     oldcmp=sk_X509_NAME_set_cmp_func(stack,name_cmp);
634
635     in=BIO_new(BIO_s_file_internal());
636
637     if (in == NULL)
638         {
639         SSLerr(SSL_F_SSL_ADD_FILE_CERT_SUBJECTS_TO_STACK,ERR_R_MALLOC_FAILURE);
640         goto err;
641         }
642         
643     if (!BIO_read_filename(in,file))
644         goto err;
645
646     for (;;)
647         {
648         if (PEM_read_bio_X509(in,&x,NULL) == NULL)
649             break;
650         if ((xn=X509_get_subject_name(x)) == NULL) goto err;
651         xn=X509_NAME_dup(xn);
652         if (xn == NULL) goto err;
653         if (sk_X509_NAME_find(stack,xn) >= 0)
654             X509_NAME_free(xn);
655         else
656             sk_X509_NAME_push(stack,xn);
657         }
658
659     if (0)
660         {
661 err:
662         ret=0;
663         }
664     if(in != NULL)
665         BIO_free(in);
666     if(x != NULL)
667         X509_free(x);
668
669     sk_X509_NAME_set_cmp_func(stack,oldcmp);
670
671     return ret;
672     }
673
674 /*!
675  * Add a directory of certs to a stack.
676  * \param stack the stack to append to.
677  * \param dir the directory to append from. All files in this directory will be
678  * examined as potential certs. Any that are acceptable to
679  * SSL_add_dir_cert_subjects_to_stack() that are not already in the stack will be
680  * included.
681  * \return 1 for success, 0 for failure. Note that in the case of failure some
682  * certs may have been added to \c stack.
683  */
684
685 #ifndef WIN32
686 #ifndef VMS                     /* XXXX This may be fixed in the future */
687
688 int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
689                                        const char *dir)
690     {
691     DIR *d=opendir(dir);
692     struct dirent *dstruct;
693
694     /* Note that a side effect is that the CAs will be sorted by name */
695     if(!d)
696         {
697         SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK,ERR_R_MALLOC_FAILURE);
698         return 0;
699         }
700
701     while((dstruct=readdir(d)))
702         {
703         char buf[1024];
704
705         if(strlen(dir)+strlen(dstruct->d_name)+2 > sizeof buf)
706             {
707             SSLerr(SSL_F_SSL_ADD_DIR_CERT_SUBJECTS_TO_STACK,SSL_R_PATH_TOO_LONG);
708             return 0;
709             }
710         
711         sprintf(buf,"%s/%s",dir,dstruct->d_name);
712         if(!SSL_add_file_cert_subjects_to_stack(stack,buf))
713             return 0;
714         }
715
716     return 1;
717     }
718
719 #endif
720 #endif