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