5509389aa2ea22b70b2bb54a615d1758194c5ce0
[openssl.git] / ssl / ssl_rsa.c
1 /*
2  * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <stdio.h>
11 #include "ssl_local.h"
12 #include "internal/packet.h"
13 #include <openssl/bio.h>
14 #include <openssl/objects.h>
15 #include <openssl/evp.h>
16 #include <openssl/x509.h>
17 #include <openssl/x509v3.h>
18 #include <openssl/pem.h>
19
20 static int ssl_set_cert(CERT *c, X509 *x509);
21 static int ssl_set_pkey(CERT *c, EVP_PKEY *pkey);
22
23 #define  SYNTHV1CONTEXT     (SSL_EXT_TLS1_2_AND_BELOW_ONLY \
24                              | SSL_EXT_CLIENT_HELLO \
25                              | SSL_EXT_TLS1_2_SERVER_HELLO \
26                              | SSL_EXT_IGNORE_ON_RESUMPTION)
27
28 #define NAME_PREFIX1 "SERVERINFO FOR "
29 #define NAME_PREFIX2 "SERVERINFOV2 FOR "
30
31 int SSL_use_certificate(SSL *ssl, X509 *x)
32 {
33     int rv;
34     if (x == NULL) {
35         ERR_raise(ERR_LIB_SSL, ERR_R_PASSED_NULL_PARAMETER);
36         return 0;
37     }
38
39     rv = ssl_security_cert(ssl, NULL, x, 0, 1);
40     if (rv != 1) {
41         ERR_raise(ERR_LIB_SSL, rv);
42         return 0;
43     }
44
45     return ssl_set_cert(ssl->cert, x);
46 }
47
48 int SSL_use_certificate_file(SSL *ssl, const char *file, int type)
49 {
50     int j;
51     BIO *in;
52     int ret = 0;
53     X509 *cert = NULL, *x = NULL;
54
55     in = BIO_new(BIO_s_file());
56     if (in == NULL) {
57         ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
58         goto end;
59     }
60
61     if (BIO_read_filename(in, file) <= 0) {
62         ERR_raise(ERR_LIB_SSL, ERR_R_SYS_LIB);
63         goto end;
64     }
65
66     if (type != SSL_FILETYPE_ASN1 && type != SSL_FILETYPE_PEM) {
67         ERR_raise(ERR_LIB_SSL, SSL_R_BAD_SSL_FILETYPE);
68         goto end;
69     }
70     x = X509_new_ex(ssl->ctx->libctx, ssl->ctx->propq);
71     if (x == NULL) {
72         ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
73         goto end;
74     }
75     if (type == SSL_FILETYPE_ASN1) {
76         j = ERR_R_ASN1_LIB;
77         cert = d2i_X509_bio(in, &x);
78     } else if (type == SSL_FILETYPE_PEM) {
79         j = ERR_R_PEM_LIB;
80         cert = PEM_read_bio_X509(in, &x, ssl->default_passwd_callback,
81                                  ssl->default_passwd_callback_userdata);
82     } else {
83         ERR_raise(ERR_LIB_SSL, SSL_R_BAD_SSL_FILETYPE);
84         goto end;
85     }
86
87     if (cert == NULL) {
88         ERR_raise(ERR_LIB_SSL, j);
89         goto end;
90     }
91
92     ret = SSL_use_certificate(ssl, x);
93  end:
94     X509_free(x);
95     BIO_free(in);
96     return ret;
97 }
98
99 int SSL_use_certificate_ASN1(SSL *ssl, const unsigned char *d, int len)
100 {
101     X509 *x;
102     int ret;
103
104     x = X509_new_ex(ssl->ctx->libctx, ssl->ctx->propq);
105     if (x == NULL) {
106         ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
107         return 0;
108     }
109
110     if (d2i_X509(&x, &d, (long)len)== NULL) {
111         X509_free(x);
112         ERR_raise(ERR_LIB_SSL, ERR_R_ASN1_LIB);
113         return 0;
114     }
115
116     ret = SSL_use_certificate(ssl, x);
117     X509_free(x);
118     return ret;
119 }
120
121 static int ssl_set_pkey(CERT *c, EVP_PKEY *pkey)
122 {
123     size_t i;
124
125     if (ssl_cert_lookup_by_pkey(pkey, &i) == NULL) {
126         ERR_raise(ERR_LIB_SSL, SSL_R_UNKNOWN_CERTIFICATE_TYPE);
127         return 0;
128     }
129
130     if (c->pkeys[i].x509 != NULL
131             && !X509_check_private_key(c->pkeys[i].x509, pkey))
132         return 0;
133
134     EVP_PKEY_free(c->pkeys[i].privatekey);
135     EVP_PKEY_up_ref(pkey);
136     c->pkeys[i].privatekey = pkey;
137     c->key = &c->pkeys[i];
138     return 1;
139 }
140
141 int SSL_use_PrivateKey(SSL *ssl, EVP_PKEY *pkey)
142 {
143     int ret;
144
145     if (pkey == NULL) {
146         ERR_raise(ERR_LIB_SSL, ERR_R_PASSED_NULL_PARAMETER);
147         return 0;
148     }
149     ret = ssl_set_pkey(ssl->cert, pkey);
150     return ret;
151 }
152
153 int SSL_use_PrivateKey_file(SSL *ssl, const char *file, int type)
154 {
155     int j, ret = 0;
156     BIO *in;
157     EVP_PKEY *pkey = NULL;
158
159     in = BIO_new(BIO_s_file());
160     if (in == NULL) {
161         ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
162         goto end;
163     }
164
165     if (BIO_read_filename(in, file) <= 0) {
166         ERR_raise(ERR_LIB_SSL, ERR_R_SYS_LIB);
167         goto end;
168     }
169     if (type == SSL_FILETYPE_PEM) {
170         j = ERR_R_PEM_LIB;
171         pkey = PEM_read_bio_PrivateKey_ex(in, NULL,
172                                           ssl->default_passwd_callback,
173                                           ssl->default_passwd_callback_userdata,
174                                           ssl->ctx->libctx,
175                                           ssl->ctx->propq);
176     } else if (type == SSL_FILETYPE_ASN1) {
177         j = ERR_R_ASN1_LIB;
178         pkey = d2i_PrivateKey_ex_bio(in, NULL, ssl->ctx->libctx,
179                                      ssl->ctx->propq);
180     } else {
181         ERR_raise(ERR_LIB_SSL, SSL_R_BAD_SSL_FILETYPE);
182         goto end;
183     }
184     if (pkey == NULL) {
185         ERR_raise(ERR_LIB_SSL, j);
186         goto end;
187     }
188     ret = SSL_use_PrivateKey(ssl, pkey);
189     EVP_PKEY_free(pkey);
190  end:
191     BIO_free(in);
192     return ret;
193 }
194
195 int SSL_use_PrivateKey_ASN1(int type, SSL *ssl, const unsigned char *d,
196                             long len)
197 {
198     int ret;
199     const unsigned char *p;
200     EVP_PKEY *pkey;
201
202     p = d;
203     if ((pkey = d2i_PrivateKey_ex(type, NULL, &p, (long)len, ssl->ctx->libctx,
204                                   ssl->ctx->propq)) == NULL) {
205         ERR_raise(ERR_LIB_SSL, ERR_R_ASN1_LIB);
206         return 0;
207     }
208
209     ret = SSL_use_PrivateKey(ssl, pkey);
210     EVP_PKEY_free(pkey);
211     return ret;
212 }
213
214 int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x)
215 {
216     int rv;
217     if (x == NULL) {
218         ERR_raise(ERR_LIB_SSL, ERR_R_PASSED_NULL_PARAMETER);
219         return 0;
220     }
221
222     rv = ssl_security_cert(NULL, ctx, x, 0, 1);
223     if (rv != 1) {
224         ERR_raise(ERR_LIB_SSL, rv);
225         return 0;
226     }
227     return ssl_set_cert(ctx->cert, x);
228 }
229
230 static int ssl_set_cert(CERT *c, X509 *x)
231 {
232     EVP_PKEY *pkey;
233     size_t i;
234
235     pkey = X509_get0_pubkey(x);
236     if (pkey == NULL) {
237         ERR_raise(ERR_LIB_SSL, SSL_R_X509_LIB);
238         return 0;
239     }
240
241     if (ssl_cert_lookup_by_pkey(pkey, &i) == NULL) {
242         ERR_raise(ERR_LIB_SSL, SSL_R_UNKNOWN_CERTIFICATE_TYPE);
243         return 0;
244     }
245
246     if (i == SSL_PKEY_ECC && !EVP_PKEY_can_sign(pkey)) {
247         ERR_raise(ERR_LIB_SSL, SSL_R_ECC_CERT_NOT_FOR_SIGNING);
248         return 0;
249     }
250
251     if (c->pkeys[i].privatekey != NULL) {
252         /*
253          * The return code from EVP_PKEY_copy_parameters is deliberately
254          * ignored. Some EVP_PKEY types cannot do this.
255          */
256         EVP_PKEY_copy_parameters(pkey, c->pkeys[i].privatekey);
257         ERR_clear_error();
258
259         if (!X509_check_private_key(x, c->pkeys[i].privatekey)) {
260             /*
261              * don't fail for a cert/key mismatch, just free current private
262              * key (when switching to a different cert & key, first this
263              * function should be used, then ssl_set_pkey
264              */
265             EVP_PKEY_free(c->pkeys[i].privatekey);
266             c->pkeys[i].privatekey = NULL;
267             /* clear error queue */
268             ERR_clear_error();
269         }
270     }
271
272     X509_free(c->pkeys[i].x509);
273     X509_up_ref(x);
274     c->pkeys[i].x509 = x;
275     c->key = &(c->pkeys[i]);
276
277     return 1;
278 }
279
280 int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, int type)
281 {
282     int j = SSL_R_BAD_VALUE;
283     BIO *in;
284     int ret = 0;
285     X509 *x = NULL, *cert = NULL;
286
287     in = BIO_new(BIO_s_file());
288     if (in == NULL) {
289         ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
290         goto end;
291     }
292
293     if (BIO_read_filename(in, file) <= 0) {
294         ERR_raise(ERR_LIB_SSL, ERR_R_SYS_LIB);
295         goto end;
296     }
297     if (type != SSL_FILETYPE_ASN1 && type != SSL_FILETYPE_PEM) {
298         ERR_raise(ERR_LIB_SSL, SSL_R_BAD_SSL_FILETYPE);
299         goto end;
300     }
301     x = X509_new_ex(ctx->libctx, ctx->propq);
302     if (x == NULL) {
303         ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
304         goto end;
305     }
306     if (type == SSL_FILETYPE_ASN1) {
307         j = ERR_R_ASN1_LIB;
308         cert = d2i_X509_bio(in, &x);
309     } else if (type == SSL_FILETYPE_PEM) {
310         j = ERR_R_PEM_LIB;
311         cert = PEM_read_bio_X509(in, &x, ctx->default_passwd_callback,
312                                  ctx->default_passwd_callback_userdata);
313     }
314     if (cert == NULL) {
315         ERR_raise(ERR_LIB_SSL, j);
316         goto end;
317     }
318
319     ret = SSL_CTX_use_certificate(ctx, x);
320  end:
321     X509_free(x);
322     BIO_free(in);
323     return ret;
324 }
325
326 int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, int len, const unsigned char *d)
327 {
328     X509 *x;
329     int ret;
330
331     x = X509_new_ex(ctx->libctx, ctx->propq);
332     if (x == NULL) {
333         ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
334         return 0;
335     }
336
337     if (d2i_X509(&x, &d, (long)len) == NULL) {
338         X509_free(x);
339         ERR_raise(ERR_LIB_SSL, ERR_R_ASN1_LIB);
340         return 0;
341     }
342
343     ret = SSL_CTX_use_certificate(ctx, x);
344     X509_free(x);
345     return ret;
346 }
347
348 int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey)
349 {
350     if (pkey == NULL) {
351         ERR_raise(ERR_LIB_SSL, ERR_R_PASSED_NULL_PARAMETER);
352         return 0;
353     }
354     return ssl_set_pkey(ctx->cert, pkey);
355 }
356
357 int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, int type)
358 {
359     int j, ret = 0;
360     BIO *in;
361     EVP_PKEY *pkey = NULL;
362
363     in = BIO_new(BIO_s_file());
364     if (in == NULL) {
365         ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
366         goto end;
367     }
368
369     if (BIO_read_filename(in, file) <= 0) {
370         ERR_raise(ERR_LIB_SSL, ERR_R_SYS_LIB);
371         goto end;
372     }
373     if (type == SSL_FILETYPE_PEM) {
374         j = ERR_R_PEM_LIB;
375         pkey = PEM_read_bio_PrivateKey_ex(in, NULL,
376                                        ctx->default_passwd_callback,
377                                        ctx->default_passwd_callback_userdata,
378                                        ctx->libctx, ctx->propq);
379     } else if (type == SSL_FILETYPE_ASN1) {
380         j = ERR_R_ASN1_LIB;
381         pkey = d2i_PrivateKey_ex_bio(in, NULL, ctx->libctx, ctx->propq);
382     } else {
383         ERR_raise(ERR_LIB_SSL, SSL_R_BAD_SSL_FILETYPE);
384         goto end;
385     }
386     if (pkey == NULL) {
387         ERR_raise(ERR_LIB_SSL, j);
388         goto end;
389     }
390     ret = SSL_CTX_use_PrivateKey(ctx, pkey);
391     EVP_PKEY_free(pkey);
392  end:
393     BIO_free(in);
394     return ret;
395 }
396
397 int SSL_CTX_use_PrivateKey_ASN1(int type, SSL_CTX *ctx,
398                                 const unsigned char *d, long len)
399 {
400     int ret;
401     const unsigned char *p;
402     EVP_PKEY *pkey;
403
404     p = d;
405     if ((pkey = d2i_PrivateKey_ex(type, NULL, &p, (long)len, ctx->libctx,
406                                   ctx->propq)) == NULL) {
407         ERR_raise(ERR_LIB_SSL, ERR_R_ASN1_LIB);
408         return 0;
409     }
410
411     ret = SSL_CTX_use_PrivateKey(ctx, pkey);
412     EVP_PKEY_free(pkey);
413     return ret;
414 }
415
416 /*
417  * Read a file that contains our certificate in "PEM" format, possibly
418  * followed by a sequence of CA certificates that should be sent to the peer
419  * in the Certificate message.
420  */
421 static int use_certificate_chain_file(SSL_CTX *ctx, SSL *ssl, const char *file)
422 {
423     BIO *in;
424     int ret = 0;
425     X509 *x = NULL;
426     pem_password_cb *passwd_callback;
427     void *passwd_callback_userdata;
428     SSL_CTX *real_ctx = (ssl == NULL) ? ctx : ssl->ctx;
429
430     if (ctx == NULL && ssl == NULL)
431         return 0;
432
433     ERR_clear_error();          /* clear error stack for
434                                  * SSL_CTX_use_certificate() */
435
436     if (ctx != NULL) {
437         passwd_callback = ctx->default_passwd_callback;
438         passwd_callback_userdata = ctx->default_passwd_callback_userdata;
439     } else {
440         passwd_callback = ssl->default_passwd_callback;
441         passwd_callback_userdata = ssl->default_passwd_callback_userdata;
442     }
443
444     in = BIO_new(BIO_s_file());
445     if (in == NULL) {
446         ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
447         goto end;
448     }
449
450     if (BIO_read_filename(in, file) <= 0) {
451         ERR_raise(ERR_LIB_SSL, ERR_R_SYS_LIB);
452         goto end;
453     }
454
455     x = X509_new_ex(real_ctx->libctx, real_ctx->propq);
456     if (x == NULL) {
457         ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
458         goto end;
459     }
460     if (PEM_read_bio_X509_AUX(in, &x, passwd_callback,
461                               passwd_callback_userdata) == NULL) {
462         ERR_raise(ERR_LIB_SSL, ERR_R_PEM_LIB);
463         goto end;
464     }
465
466     if (ctx)
467         ret = SSL_CTX_use_certificate(ctx, x);
468     else
469         ret = SSL_use_certificate(ssl, x);
470
471     if (ERR_peek_error() != 0)
472         ret = 0;                /* Key/certificate mismatch doesn't imply
473                                  * ret==0 ... */
474     if (ret) {
475         /*
476          * If we could set up our certificate, now proceed to the CA
477          * certificates.
478          */
479         X509 *ca;
480         int r;
481         unsigned long err;
482
483         if (ctx)
484             r = SSL_CTX_clear_chain_certs(ctx);
485         else
486             r = SSL_clear_chain_certs(ssl);
487
488         if (r == 0) {
489             ret = 0;
490             goto end;
491         }
492
493         while (1) {
494             ca = X509_new_ex(real_ctx->libctx, real_ctx->propq);
495             if (ca == NULL) {
496                 ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
497                 goto end;
498             }
499             if (PEM_read_bio_X509(in, &ca, passwd_callback,
500                                   passwd_callback_userdata) != NULL) {
501                 if (ctx)
502                     r = SSL_CTX_add0_chain_cert(ctx, ca);
503                 else
504                     r = SSL_add0_chain_cert(ssl, ca);
505                 /*
506                  * Note that we must not free ca if it was successfully added to
507                  * the chain (while we must free the main certificate, since its
508                  * reference count is increased by SSL_CTX_use_certificate).
509                  */
510                 if (!r) {
511                     X509_free(ca);
512                     ret = 0;
513                     goto end;
514                 }
515             } else {
516                 X509_free(ca);
517                 break;
518             }
519         }
520         /* When the while loop ends, it's usually just EOF. */
521         err = ERR_peek_last_error();
522         if (ERR_GET_LIB(err) == ERR_LIB_PEM
523             && ERR_GET_REASON(err) == PEM_R_NO_START_LINE)
524             ERR_clear_error();
525         else
526             ret = 0;            /* some real error */
527     }
528
529  end:
530     X509_free(x);
531     BIO_free(in);
532     return ret;
533 }
534
535 int SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file)
536 {
537     return use_certificate_chain_file(ctx, NULL, file);
538 }
539
540 int SSL_use_certificate_chain_file(SSL *ssl, const char *file)
541 {
542     return use_certificate_chain_file(NULL, ssl, file);
543 }
544
545 static int serverinfo_find_extension(const unsigned char *serverinfo,
546                                      size_t serverinfo_length,
547                                      unsigned int extension_type,
548                                      const unsigned char **extension_data,
549                                      size_t *extension_length)
550 {
551     PACKET pkt, data;
552
553     *extension_data = NULL;
554     *extension_length = 0;
555     if (serverinfo == NULL || serverinfo_length == 0)
556         return -1;
557
558     if (!PACKET_buf_init(&pkt, serverinfo, serverinfo_length))
559         return -1;
560
561     for (;;) {
562         unsigned int type = 0;
563         unsigned long context = 0;
564
565         /* end of serverinfo */
566         if (PACKET_remaining(&pkt) == 0)
567             return 0;           /* Extension not found */
568
569         if (!PACKET_get_net_4(&pkt, &context)
570                 || !PACKET_get_net_2(&pkt, &type)
571                 || !PACKET_get_length_prefixed_2(&pkt, &data))
572             return -1;
573
574         if (type == extension_type) {
575             *extension_data = PACKET_data(&data);
576             *extension_length = PACKET_remaining(&data);;
577             return 1;           /* Success */
578         }
579     }
580     /* Unreachable */
581 }
582
583 static int serverinfoex_srv_parse_cb(SSL *s, unsigned int ext_type,
584                                      unsigned int context,
585                                      const unsigned char *in,
586                                      size_t inlen, X509 *x, size_t chainidx,
587                                      int *al, void *arg)
588 {
589
590     if (inlen != 0) {
591         *al = SSL_AD_DECODE_ERROR;
592         return 0;
593     }
594
595     return 1;
596 }
597
598 static int serverinfo_srv_parse_cb(SSL *s, unsigned int ext_type,
599                                    const unsigned char *in,
600                                    size_t inlen, int *al, void *arg)
601 {
602     return serverinfoex_srv_parse_cb(s, ext_type, 0, in, inlen, NULL, 0, al,
603                                      arg);
604 }
605
606 static int serverinfoex_srv_add_cb(SSL *s, unsigned int ext_type,
607                                    unsigned int context,
608                                    const unsigned char **out,
609                                    size_t *outlen, X509 *x, size_t chainidx,
610                                    int *al, void *arg)
611 {
612     const unsigned char *serverinfo = NULL;
613     size_t serverinfo_length = 0;
614
615     /* We only support extensions for the first Certificate */
616     if ((context & SSL_EXT_TLS1_3_CERTIFICATE) != 0 && chainidx > 0)
617         return 0;
618
619     /* Is there serverinfo data for the chosen server cert? */
620     if ((ssl_get_server_cert_serverinfo(s, &serverinfo,
621                                         &serverinfo_length)) != 0) {
622         /* Find the relevant extension from the serverinfo */
623         int retval = serverinfo_find_extension(serverinfo, serverinfo_length,
624                                                ext_type, out, outlen);
625         if (retval == -1) {
626             *al = SSL_AD_INTERNAL_ERROR;
627             return -1;          /* Error */
628         }
629         if (retval == 0)
630             return 0;           /* No extension found, don't send extension */
631         return 1;               /* Send extension */
632     }
633     return 0;                   /* No serverinfo data found, don't send
634                                  * extension */
635 }
636
637 static int serverinfo_srv_add_cb(SSL *s, unsigned int ext_type,
638                                  const unsigned char **out, size_t *outlen,
639                                  int *al, void *arg)
640 {
641     return serverinfoex_srv_add_cb(s, ext_type, 0, out, outlen, NULL, 0, al,
642                                    arg);
643 }
644
645 /*
646  * With a NULL context, this function just checks that the serverinfo data
647  * parses correctly.  With a non-NULL context, it registers callbacks for
648  * the included extensions.
649  */
650 static int serverinfo_process_buffer(unsigned int version,
651                                      const unsigned char *serverinfo,
652                                      size_t serverinfo_length, SSL_CTX *ctx)
653 {
654     PACKET pkt;
655
656     if (serverinfo == NULL || serverinfo_length == 0)
657         return 0;
658
659     if (version != SSL_SERVERINFOV1 && version != SSL_SERVERINFOV2)
660         return 0;
661
662     if (!PACKET_buf_init(&pkt, serverinfo, serverinfo_length))
663         return 0;
664
665     while (PACKET_remaining(&pkt)) {
666         unsigned long context = 0;
667         unsigned int ext_type = 0;
668         PACKET data;
669
670         if ((version == SSL_SERVERINFOV2 && !PACKET_get_net_4(&pkt, &context))
671                 || !PACKET_get_net_2(&pkt, &ext_type)
672                 || !PACKET_get_length_prefixed_2(&pkt, &data))
673             return 0;
674
675         if (ctx == NULL)
676             continue;
677
678         /*
679          * The old style custom extensions API could be set separately for
680          * server/client, i.e. you could set one custom extension for a client,
681          * and *for the same extension in the same SSL_CTX* you could set a
682          * custom extension for the server as well. It seems quite weird to be
683          * setting a custom extension for both client and server in a single
684          * SSL_CTX - but theoretically possible. This isn't possible in the
685          * new API. Therefore, if we have V1 serverinfo we use the old API. We
686          * also use the old API even if we have V2 serverinfo but the context
687          * looks like an old style <= TLSv1.2 extension.
688          */
689         if (version == SSL_SERVERINFOV1 || context == SYNTHV1CONTEXT) {
690             if (!SSL_CTX_add_server_custom_ext(ctx, ext_type,
691                                                serverinfo_srv_add_cb,
692                                                NULL, NULL,
693                                                serverinfo_srv_parse_cb,
694                                                NULL))
695                 return 0;
696         } else {
697             if (!SSL_CTX_add_custom_ext(ctx, ext_type, context,
698                                         serverinfoex_srv_add_cb,
699                                         NULL, NULL,
700                                         serverinfoex_srv_parse_cb,
701                                         NULL))
702                 return 0;
703         }
704     }
705
706     return 1;
707 }
708
709 int SSL_CTX_use_serverinfo_ex(SSL_CTX *ctx, unsigned int version,
710                               const unsigned char *serverinfo,
711                               size_t serverinfo_length)
712 {
713     unsigned char *new_serverinfo;
714
715     if (ctx == NULL || serverinfo == NULL || serverinfo_length == 0) {
716         ERR_raise(ERR_LIB_SSL, ERR_R_PASSED_NULL_PARAMETER);
717         return 0;
718     }
719     if (!serverinfo_process_buffer(version, serverinfo, serverinfo_length,
720                                    NULL)) {
721         ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_SERVERINFO_DATA);
722         return 0;
723     }
724     if (ctx->cert->key == NULL) {
725         ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
726         return 0;
727     }
728     new_serverinfo = OPENSSL_realloc(ctx->cert->key->serverinfo,
729                                      serverinfo_length);
730     if (new_serverinfo == NULL) {
731         ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
732         return 0;
733     }
734     ctx->cert->key->serverinfo = new_serverinfo;
735     memcpy(ctx->cert->key->serverinfo, serverinfo, serverinfo_length);
736     ctx->cert->key->serverinfo_length = serverinfo_length;
737
738     /*
739      * Now that the serverinfo is validated and stored, go ahead and
740      * register callbacks.
741      */
742     if (!serverinfo_process_buffer(version, serverinfo, serverinfo_length,
743                                    ctx)) {
744         ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_SERVERINFO_DATA);
745         return 0;
746     }
747     return 1;
748 }
749
750 int SSL_CTX_use_serverinfo(SSL_CTX *ctx, const unsigned char *serverinfo,
751                            size_t serverinfo_length)
752 {
753     return SSL_CTX_use_serverinfo_ex(ctx, SSL_SERVERINFOV1, serverinfo,
754                                      serverinfo_length);
755 }
756
757 int SSL_CTX_use_serverinfo_file(SSL_CTX *ctx, const char *file)
758 {
759     unsigned char *serverinfo = NULL;
760     unsigned char *tmp;
761     size_t serverinfo_length = 0;
762     unsigned char *extension = 0;
763     long extension_length = 0;
764     char *name = NULL;
765     char *header = NULL;
766     unsigned int name_len;
767     int ret = 0;
768     BIO *bin = NULL;
769     size_t num_extensions = 0, contextoff = 0;
770
771     if (ctx == NULL || file == NULL) {
772         ERR_raise(ERR_LIB_SSL, ERR_R_PASSED_NULL_PARAMETER);
773         goto end;
774     }
775
776     bin = BIO_new(BIO_s_file());
777     if (bin == NULL) {
778         ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
779         goto end;
780     }
781     if (BIO_read_filename(bin, file) <= 0) {
782         ERR_raise(ERR_LIB_SSL, ERR_R_SYS_LIB);
783         goto end;
784     }
785
786     for (num_extensions = 0;; num_extensions++) {
787         unsigned int version;
788
789         if (PEM_read_bio(bin, &name, &header, &extension, &extension_length)
790             == 0) {
791             /*
792              * There must be at least one extension in this file
793              */
794             if (num_extensions == 0) {
795                 ERR_raise(ERR_LIB_SSL, SSL_R_NO_PEM_EXTENSIONS);
796                 goto end;
797             } else              /* End of file, we're done */
798                 break;
799         }
800         /* Check that PEM name starts with "BEGIN SERVERINFO FOR " */
801         name_len = strlen(name);
802         if (name_len < sizeof(NAME_PREFIX1) - 1) {
803             ERR_raise(ERR_LIB_SSL, SSL_R_PEM_NAME_TOO_SHORT);
804             goto end;
805         }
806         if (HAS_PREFIX(name, NAME_PREFIX1)) {
807             version = SSL_SERVERINFOV1;
808         } else {
809             if (name_len < sizeof(NAME_PREFIX2) - 1) {
810                 ERR_raise(ERR_LIB_SSL, SSL_R_PEM_NAME_TOO_SHORT);
811                 goto end;
812             }
813             if (!HAS_PREFIX(name, NAME_PREFIX2)) {
814                 ERR_raise(ERR_LIB_SSL, SSL_R_PEM_NAME_BAD_PREFIX);
815                 goto end;
816             }
817             version = SSL_SERVERINFOV2;
818         }
819         /*
820          * Check that the decoded PEM data is plausible (valid length field)
821          */
822         if (version == SSL_SERVERINFOV1) {
823             /* 4 byte header: 2 bytes type, 2 bytes len */
824             if (extension_length < 4
825                     || (extension[2] << 8) + extension[3]
826                        != extension_length - 4) {
827                 ERR_raise(ERR_LIB_SSL, SSL_R_BAD_DATA);
828                 goto end;
829             }
830             /*
831              * File does not have a context value so we must take account of
832              * this later.
833              */
834             contextoff = 4;
835         } else {
836             /* 8 byte header: 4 bytes context, 2 bytes type, 2 bytes len */
837             if (extension_length < 8
838                     || (extension[6] << 8) + extension[7]
839                        != extension_length - 8) {
840                 ERR_raise(ERR_LIB_SSL, SSL_R_BAD_DATA);
841                 goto end;
842             }
843         }
844         /* Append the decoded extension to the serverinfo buffer */
845         tmp = OPENSSL_realloc(serverinfo, serverinfo_length + extension_length
846                                           + contextoff);
847         if (tmp == NULL) {
848             ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
849             goto end;
850         }
851         serverinfo = tmp;
852         if (contextoff > 0) {
853             unsigned char *sinfo = serverinfo + serverinfo_length;
854
855             /* We know this only uses the last 2 bytes */
856             sinfo[0] = 0;
857             sinfo[1] = 0;
858             sinfo[2] = (SYNTHV1CONTEXT >> 8) & 0xff;
859             sinfo[3] = SYNTHV1CONTEXT & 0xff;
860         }
861         memcpy(serverinfo + serverinfo_length + contextoff,
862                extension, extension_length);
863         serverinfo_length += extension_length + contextoff;
864
865         OPENSSL_free(name);
866         name = NULL;
867         OPENSSL_free(header);
868         header = NULL;
869         OPENSSL_free(extension);
870         extension = NULL;
871     }
872
873     ret = SSL_CTX_use_serverinfo_ex(ctx, SSL_SERVERINFOV2, serverinfo,
874                                     serverinfo_length);
875  end:
876     /* SSL_CTX_use_serverinfo makes a local copy of the serverinfo. */
877     OPENSSL_free(name);
878     OPENSSL_free(header);
879     OPENSSL_free(extension);
880     OPENSSL_free(serverinfo);
881     BIO_free(bin);
882     return ret;
883 }
884
885 static int ssl_set_cert_and_key(SSL *ssl, SSL_CTX *ctx, X509 *x509, EVP_PKEY *privatekey,
886                                 STACK_OF(X509) *chain, int override)
887 {
888     int ret = 0;
889     size_t i;
890     int j;
891     int rv;
892     CERT *c = ssl != NULL ? ssl->cert : ctx->cert;
893     STACK_OF(X509) *dup_chain = NULL;
894     EVP_PKEY *pubkey = NULL;
895
896     /* Do all security checks before anything else */
897     rv = ssl_security_cert(ssl, ctx, x509, 0, 1);
898     if (rv != 1) {
899         ERR_raise(ERR_LIB_SSL, rv);
900         goto out;
901     }
902     for (j = 0; j < sk_X509_num(chain); j++) {
903         rv = ssl_security_cert(ssl, ctx, sk_X509_value(chain, j), 0, 0);
904         if (rv != 1) {
905             ERR_raise(ERR_LIB_SSL, rv);
906             goto out;
907         }
908     }
909
910     pubkey = X509_get_pubkey(x509); /* bumps reference */
911     if (pubkey == NULL)
912         goto out;
913     if (privatekey == NULL) {
914         privatekey = pubkey;
915     } else {
916         /* For RSA, which has no parameters, missing returns 0 */
917         if (EVP_PKEY_missing_parameters(privatekey)) {
918             if (EVP_PKEY_missing_parameters(pubkey)) {
919                 /* nobody has parameters? - error */
920                 ERR_raise(ERR_LIB_SSL, SSL_R_MISSING_PARAMETERS);
921                 goto out;
922             } else {
923                 /* copy to privatekey from pubkey */
924                 EVP_PKEY_copy_parameters(privatekey, pubkey);
925             }
926         } else if (EVP_PKEY_missing_parameters(pubkey)) {
927             /* copy to pubkey from privatekey */
928             EVP_PKEY_copy_parameters(pubkey, privatekey);
929         } /* else both have parameters */
930
931         /* check that key <-> cert match */
932         if (EVP_PKEY_eq(pubkey, privatekey) != 1) {
933             ERR_raise(ERR_LIB_SSL, SSL_R_PRIVATE_KEY_MISMATCH);
934             goto out;
935         }
936     }
937     if (ssl_cert_lookup_by_pkey(pubkey, &i) == NULL) {
938         ERR_raise(ERR_LIB_SSL, SSL_R_UNKNOWN_CERTIFICATE_TYPE);
939         goto out;
940     }
941
942     if (!override && (c->pkeys[i].x509 != NULL
943                       || c->pkeys[i].privatekey != NULL
944                       || c->pkeys[i].chain != NULL)) {
945         /* No override, and something already there */
946         ERR_raise(ERR_LIB_SSL, SSL_R_NOT_REPLACING_CERTIFICATE);
947         goto out;
948     }
949
950     if (chain != NULL) {
951         dup_chain = X509_chain_up_ref(chain);
952         if  (dup_chain == NULL) {
953             ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
954             goto out;
955         }
956     }
957
958     sk_X509_pop_free(c->pkeys[i].chain, X509_free);
959     c->pkeys[i].chain = dup_chain;
960
961     X509_free(c->pkeys[i].x509);
962     X509_up_ref(x509);
963     c->pkeys[i].x509 = x509;
964
965     EVP_PKEY_free(c->pkeys[i].privatekey);
966     EVP_PKEY_up_ref(privatekey);
967     c->pkeys[i].privatekey = privatekey;
968
969     c->key = &(c->pkeys[i]);
970
971     ret = 1;
972  out:
973     EVP_PKEY_free(pubkey);
974     return ret;
975 }
976
977 int SSL_use_cert_and_key(SSL *ssl, X509 *x509, EVP_PKEY *privatekey,
978                          STACK_OF(X509) *chain, int override)
979 {
980     return ssl_set_cert_and_key(ssl, NULL, x509, privatekey, chain, override);
981 }
982
983 int SSL_CTX_use_cert_and_key(SSL_CTX *ctx, X509 *x509, EVP_PKEY *privatekey,
984                              STACK_OF(X509) *chain, int override)
985 {
986     return ssl_set_cert_and_key(NULL, ctx, x509, privatekey, chain, override);
987 }