Always build library object files with shared library cflags
[openssl.git] / crypto / pem / pem_lib.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 #include <stdio.h>
59 #include <ctype.h>
60 #include "internal/cryptlib.h"
61 #include <openssl/buffer.h>
62 #include <openssl/objects.h>
63 #include <openssl/evp.h>
64 #include <openssl/rand.h>
65 #include <openssl/x509.h>
66 #include <openssl/pem.h>
67 #include <openssl/pkcs12.h>
68 #include "internal/asn1_int.h"
69 #ifndef OPENSSL_NO_DES
70 # include <openssl/des.h>
71 #endif
72 #ifndef OPENSSL_NO_ENGINE
73 # include <openssl/engine.h>
74 #endif
75
76 #define MIN_LENGTH      4
77
78 static int load_iv(char **fromp, unsigned char *to, int num);
79 static int check_pem(const char *nm, const char *name);
80 int pem_check_suffix(const char *pem_str, const char *suffix);
81
82 int PEM_def_callback(char *buf, int num, int w, void *key)
83 {
84 #ifdef OPENSSL_NO_STDIO
85     /*
86      * We should not ever call the default callback routine from windows.
87      */
88     PEMerr(PEM_F_PEM_DEF_CALLBACK, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
89     return (-1);
90 #else
91     int i, j;
92     const char *prompt;
93     if (key) {
94         i = strlen(key);
95         i = (i > num) ? num : i;
96         memcpy(buf, key, i);
97         return (i);
98     }
99
100     prompt = EVP_get_pw_prompt();
101     if (prompt == NULL)
102         prompt = "Enter PEM pass phrase:";
103
104     for (;;) {
105         i = EVP_read_pw_string_min(buf, MIN_LENGTH, num, prompt, w);
106         if (i != 0) {
107             PEMerr(PEM_F_PEM_DEF_CALLBACK, PEM_R_PROBLEMS_GETTING_PASSWORD);
108             memset(buf, 0, (unsigned int)num);
109             return (-1);
110         }
111         j = strlen(buf);
112         if (j < MIN_LENGTH) {
113             fprintf(stderr,
114                     "phrase is too short, needs to be at least %d chars\n",
115                     MIN_LENGTH);
116         } else
117             break;
118     }
119     return (j);
120 #endif
121 }
122
123 void PEM_proc_type(char *buf, int type)
124 {
125     const char *str;
126
127     if (type == PEM_TYPE_ENCRYPTED)
128         str = "ENCRYPTED";
129     else if (type == PEM_TYPE_MIC_CLEAR)
130         str = "MIC-CLEAR";
131     else if (type == PEM_TYPE_MIC_ONLY)
132         str = "MIC-ONLY";
133     else
134         str = "BAD-TYPE";
135
136     OPENSSL_strlcat(buf, "Proc-Type: 4,", PEM_BUFSIZE);
137     OPENSSL_strlcat(buf, str, PEM_BUFSIZE);
138     OPENSSL_strlcat(buf, "\n", PEM_BUFSIZE);
139 }
140
141 void PEM_dek_info(char *buf, const char *type, int len, char *str)
142 {
143     static const unsigned char map[17] = "0123456789ABCDEF";
144     long i;
145     int j;
146
147     OPENSSL_strlcat(buf, "DEK-Info: ", PEM_BUFSIZE);
148     OPENSSL_strlcat(buf, type, PEM_BUFSIZE);
149     OPENSSL_strlcat(buf, ",", PEM_BUFSIZE);
150     j = strlen(buf);
151     if (j + (len * 2) + 1 > PEM_BUFSIZE)
152         return;
153     for (i = 0; i < len; i++) {
154         buf[j + i * 2] = map[(str[i] >> 4) & 0x0f];
155         buf[j + i * 2 + 1] = map[(str[i]) & 0x0f];
156     }
157     buf[j + i * 2] = '\n';
158     buf[j + i * 2 + 1] = '\0';
159 }
160
161 #ifndef OPENSSL_NO_STDIO
162 void *PEM_ASN1_read(d2i_of_void *d2i, const char *name, FILE *fp, void **x,
163                     pem_password_cb *cb, void *u)
164 {
165     BIO *b;
166     void *ret;
167
168     if ((b = BIO_new(BIO_s_file())) == NULL) {
169         PEMerr(PEM_F_PEM_ASN1_READ, ERR_R_BUF_LIB);
170         return (0);
171     }
172     BIO_set_fp(b, fp, BIO_NOCLOSE);
173     ret = PEM_ASN1_read_bio(d2i, name, b, x, cb, u);
174     BIO_free(b);
175     return (ret);
176 }
177 #endif
178
179 static int check_pem(const char *nm, const char *name)
180 {
181     /* Normal matching nm and name */
182     if (strcmp(nm, name) == 0)
183         return 1;
184
185     /* Make PEM_STRING_EVP_PKEY match any private key */
186
187     if (strcmp(name, PEM_STRING_EVP_PKEY) == 0) {
188         int slen;
189         const EVP_PKEY_ASN1_METHOD *ameth;
190         if (strcmp(nm, PEM_STRING_PKCS8) == 0)
191             return 1;
192         if (strcmp(nm, PEM_STRING_PKCS8INF) == 0)
193             return 1;
194         slen = pem_check_suffix(nm, "PRIVATE KEY");
195         if (slen > 0) {
196             /*
197              * NB: ENGINE implementations wont contain a deprecated old
198              * private key decode function so don't look for them.
199              */
200             ameth = EVP_PKEY_asn1_find_str(NULL, nm, slen);
201             if (ameth && ameth->old_priv_decode)
202                 return 1;
203         }
204         return 0;
205     }
206
207     if (strcmp(name, PEM_STRING_PARAMETERS) == 0) {
208         int slen;
209         const EVP_PKEY_ASN1_METHOD *ameth;
210         slen = pem_check_suffix(nm, "PARAMETERS");
211         if (slen > 0) {
212             ENGINE *e;
213             ameth = EVP_PKEY_asn1_find_str(&e, nm, slen);
214             if (ameth) {
215                 int r;
216                 if (ameth->param_decode)
217                     r = 1;
218                 else
219                     r = 0;
220 #ifndef OPENSSL_NO_ENGINE
221                 if (e)
222                     ENGINE_finish(e);
223 #endif
224                 return r;
225             }
226         }
227         return 0;
228     }
229     /* If reading DH parameters handle X9.42 DH format too */
230     if (strcmp(nm, PEM_STRING_DHXPARAMS) == 0
231         && strcmp(name, PEM_STRING_DHPARAMS) == 0)
232         return 1;
233
234     /* Permit older strings */
235
236     if (strcmp(nm, PEM_STRING_X509_OLD) == 0
237         && strcmp(name, PEM_STRING_X509) == 0)
238         return 1;
239
240     if (strcmp(nm, PEM_STRING_X509_REQ_OLD) == 0
241         && strcmp(name, PEM_STRING_X509_REQ) == 0)
242         return 1;
243
244     /* Allow normal certs to be read as trusted certs */
245     if (strcmp(nm, PEM_STRING_X509) == 0
246         && strcmp(name, PEM_STRING_X509_TRUSTED) == 0)
247         return 1;
248
249     if (strcmp(nm, PEM_STRING_X509_OLD) == 0
250         && strcmp(name, PEM_STRING_X509_TRUSTED) == 0)
251         return 1;
252
253     /* Some CAs use PKCS#7 with CERTIFICATE headers */
254     if (strcmp(nm, PEM_STRING_X509) == 0
255         && strcmp(name, PEM_STRING_PKCS7) == 0)
256         return 1;
257
258     if (strcmp(nm, PEM_STRING_PKCS7_SIGNED) == 0
259         && strcmp(name, PEM_STRING_PKCS7) == 0)
260         return 1;
261
262 #ifndef OPENSSL_NO_CMS
263     if (strcmp(nm, PEM_STRING_X509) == 0
264         && strcmp(name, PEM_STRING_CMS) == 0)
265         return 1;
266     /* Allow CMS to be read from PKCS#7 headers */
267     if (strcmp(nm, PEM_STRING_PKCS7) == 0
268         && strcmp(name, PEM_STRING_CMS) == 0)
269         return 1;
270 #endif
271
272     return 0;
273 }
274
275 int PEM_bytes_read_bio(unsigned char **pdata, long *plen, char **pnm,
276                        const char *name, BIO *bp, pem_password_cb *cb,
277                        void *u)
278 {
279     EVP_CIPHER_INFO cipher;
280     char *nm = NULL, *header = NULL;
281     unsigned char *data = NULL;
282     long len;
283     int ret = 0;
284
285     for (;;) {
286         if (!PEM_read_bio(bp, &nm, &header, &data, &len)) {
287             if (ERR_GET_REASON(ERR_peek_error()) == PEM_R_NO_START_LINE)
288                 ERR_add_error_data(2, "Expecting: ", name);
289             return 0;
290         }
291         if (check_pem(nm, name))
292             break;
293         OPENSSL_free(nm);
294         OPENSSL_free(header);
295         OPENSSL_free(data);
296     }
297     if (!PEM_get_EVP_CIPHER_INFO(header, &cipher))
298         goto err;
299     if (!PEM_do_header(&cipher, data, &len, cb, u))
300         goto err;
301
302     *pdata = data;
303     *plen = len;
304
305     if (pnm)
306         *pnm = nm;
307
308     ret = 1;
309
310  err:
311     if (!ret || !pnm)
312         OPENSSL_free(nm);
313     OPENSSL_free(header);
314     if (!ret)
315         OPENSSL_free(data);
316     return ret;
317 }
318
319 #ifndef OPENSSL_NO_STDIO
320 int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp,
321                    void *x, const EVP_CIPHER *enc, unsigned char *kstr,
322                    int klen, pem_password_cb *callback, void *u)
323 {
324     BIO *b;
325     int ret;
326
327     if ((b = BIO_new(BIO_s_file())) == NULL) {
328         PEMerr(PEM_F_PEM_ASN1_WRITE, ERR_R_BUF_LIB);
329         return (0);
330     }
331     BIO_set_fp(b, fp, BIO_NOCLOSE);
332     ret = PEM_ASN1_write_bio(i2d, name, b, x, enc, kstr, klen, callback, u);
333     BIO_free(b);
334     return (ret);
335 }
336 #endif
337
338 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp,
339                        void *x, const EVP_CIPHER *enc, unsigned char *kstr,
340                        int klen, pem_password_cb *callback, void *u)
341 {
342     EVP_CIPHER_CTX *ctx = NULL;
343     int dsize = 0, i = 0, j = 0, ret = 0;
344     unsigned char *p, *data = NULL;
345     const char *objstr = NULL;
346     char buf[PEM_BUFSIZE];
347     unsigned char key[EVP_MAX_KEY_LENGTH];
348     unsigned char iv[EVP_MAX_IV_LENGTH];
349
350     if (enc != NULL) {
351         objstr = OBJ_nid2sn(EVP_CIPHER_nid(enc));
352         if (objstr == NULL) {
353             PEMerr(PEM_F_PEM_ASN1_WRITE_BIO, PEM_R_UNSUPPORTED_CIPHER);
354             goto err;
355         }
356     }
357
358     if ((dsize = i2d(x, NULL)) < 0) {
359         PEMerr(PEM_F_PEM_ASN1_WRITE_BIO, ERR_R_ASN1_LIB);
360         dsize = 0;
361         goto err;
362     }
363     /* dzise + 8 bytes are needed */
364     /* actually it needs the cipher block size extra... */
365     data = OPENSSL_malloc((unsigned int)dsize + 20);
366     if (data == NULL) {
367         PEMerr(PEM_F_PEM_ASN1_WRITE_BIO, ERR_R_MALLOC_FAILURE);
368         goto err;
369     }
370     p = data;
371     i = i2d(x, &p);
372
373     if (enc != NULL) {
374         if (kstr == NULL) {
375             if (callback == NULL)
376                 klen = PEM_def_callback(buf, PEM_BUFSIZE, 1, u);
377             else
378                 klen = (*callback) (buf, PEM_BUFSIZE, 1, u);
379             if (klen <= 0) {
380                 PEMerr(PEM_F_PEM_ASN1_WRITE_BIO, PEM_R_READ_KEY);
381                 goto err;
382             }
383 #ifdef CHARSET_EBCDIC
384             /* Convert the pass phrase from EBCDIC */
385             ebcdic2ascii(buf, buf, klen);
386 #endif
387             kstr = (unsigned char *)buf;
388         }
389         RAND_add(data, i, 0);   /* put in the RSA key. */
390         OPENSSL_assert(EVP_CIPHER_iv_length(enc) <= (int)sizeof(iv));
391         if (RAND_bytes(iv, EVP_CIPHER_iv_length(enc)) <= 0) /* Generate a salt */
392             goto err;
393         /*
394          * The 'iv' is used as the iv and as a salt.  It is NOT taken from
395          * the BytesToKey function
396          */
397         if (!EVP_BytesToKey(enc, EVP_md5(), iv, kstr, klen, 1, key, NULL))
398             goto err;
399
400         if (kstr == (unsigned char *)buf)
401             OPENSSL_cleanse(buf, PEM_BUFSIZE);
402
403         OPENSSL_assert(strlen(objstr) + 23 + 2 * EVP_CIPHER_iv_length(enc) + 13
404                        <= sizeof buf);
405
406         buf[0] = '\0';
407         PEM_proc_type(buf, PEM_TYPE_ENCRYPTED);
408         PEM_dek_info(buf, objstr, EVP_CIPHER_iv_length(enc), (char *)iv);
409         /* k=strlen(buf); */
410
411         ret = 1;
412         if ((ctx = EVP_CIPHER_CTX_new()) == NULL
413             || !EVP_EncryptInit_ex(ctx, enc, NULL, key, iv)
414             || !EVP_EncryptUpdate(ctx, data, &j, data, i)
415             || !EVP_EncryptFinal_ex(ctx, &(data[j]), &i))
416             ret = 0;
417         if (ret == 0)
418             goto err;
419         i += j;
420     } else {
421         ret = 1;
422         buf[0] = '\0';
423     }
424     i = PEM_write_bio(bp, name, buf, data, i);
425     if (i <= 0)
426         ret = 0;
427  err:
428     OPENSSL_cleanse(key, sizeof(key));
429     OPENSSL_cleanse(iv, sizeof(iv));
430     EVP_CIPHER_CTX_free(ctx);
431     OPENSSL_cleanse(buf, PEM_BUFSIZE);
432     OPENSSL_clear_free(data, (unsigned int)dsize);
433     return (ret);
434 }
435
436 int PEM_do_header(EVP_CIPHER_INFO *cipher, unsigned char *data, long *plen,
437                   pem_password_cb *callback, void *u)
438 {
439     int i = 0, j, o, klen;
440     long len;
441     EVP_CIPHER_CTX *ctx;
442     unsigned char key[EVP_MAX_KEY_LENGTH];
443     char buf[PEM_BUFSIZE];
444
445     len = *plen;
446
447     if (cipher->cipher == NULL)
448         return (1);
449     if (callback == NULL)
450         klen = PEM_def_callback(buf, PEM_BUFSIZE, 0, u);
451     else
452         klen = callback(buf, PEM_BUFSIZE, 0, u);
453     if (klen <= 0) {
454         PEMerr(PEM_F_PEM_DO_HEADER, PEM_R_BAD_PASSWORD_READ);
455         return (0);
456     }
457 #ifdef CHARSET_EBCDIC
458     /* Convert the pass phrase from EBCDIC */
459     ebcdic2ascii(buf, buf, klen);
460 #endif
461
462     if (!EVP_BytesToKey(cipher->cipher, EVP_md5(), &(cipher->iv[0]),
463                         (unsigned char *)buf, klen, 1, key, NULL))
464         return 0;
465
466     j = (int)len;
467     ctx = EVP_CIPHER_CTX_new();
468     if (ctx == NULL)
469         return 0;
470     o = EVP_DecryptInit_ex(ctx, cipher->cipher, NULL, key, &(cipher->iv[0]));
471     if (o)
472         o = EVP_DecryptUpdate(ctx, data, &i, data, j);
473     if (o)
474         o = EVP_DecryptFinal_ex(ctx, &(data[i]), &j);
475     EVP_CIPHER_CTX_free(ctx);
476     OPENSSL_cleanse((char *)buf, sizeof(buf));
477     OPENSSL_cleanse((char *)key, sizeof(key));
478     if (o)
479         j += i;
480     else {
481         PEMerr(PEM_F_PEM_DO_HEADER, PEM_R_BAD_DECRYPT);
482         return (0);
483     }
484     *plen = j;
485     return (1);
486 }
487
488 int PEM_get_EVP_CIPHER_INFO(char *header, EVP_CIPHER_INFO *cipher)
489 {
490     const EVP_CIPHER *enc = NULL;
491     char *dekinfostart, c;
492     char **header_pp = &header;
493
494     cipher->cipher = NULL;
495     if ((header == NULL) || (*header == '\0') || (*header == '\n'))
496         return (1);
497     if (strncmp(header, "Proc-Type: ", 11) != 0) {
498         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_NOT_PROC_TYPE);
499         return (0);
500     }
501     header += 11;
502     if (*header != '4')
503         return (0);
504     header++;
505     if (*header != ',')
506         return (0);
507     header++;
508     if (strncmp(header, "ENCRYPTED", 9) != 0) {
509         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_NOT_ENCRYPTED);
510         return (0);
511     }
512     for (; (*header != '\n') && (*header != '\0'); header++) ;
513     if (*header == '\0') {
514         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_SHORT_HEADER);
515         return (0);
516     }
517     header++;
518     if (strncmp(header, "DEK-Info: ", 10) != 0) {
519         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_NOT_DEK_INFO);
520         return (0);
521     }
522     header += 10;
523
524     dekinfostart = header;
525     for (;;) {
526         c = *header;
527 #ifndef CHARSET_EBCDIC
528         if (!(((c >= 'A') && (c <= 'Z')) || (c == '-') ||
529               ((c >= '0') && (c <= '9'))))
530             break;
531 #else
532         if (!(isupper(c) || (c == '-') || isdigit(c)))
533             break;
534 #endif
535         header++;
536     }
537     *header = '\0';
538     cipher->cipher = enc = EVP_get_cipherbyname(dekinfostart);
539     *header = c;
540
541     if (enc == NULL) {
542         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_UNSUPPORTED_ENCRYPTION);
543         return (0);
544     }
545     if (!load_iv(header_pp, &(cipher->iv[0]), EVP_CIPHER_iv_length(enc)))
546         return (0);
547
548     return (1);
549 }
550
551 static int load_iv(char **fromp, unsigned char *to, int num)
552 {
553     int v, i;
554     char *from;
555
556     from = *fromp;
557     for (i = 0; i < num; i++)
558         to[i] = 0;
559     num *= 2;
560     for (i = 0; i < num; i++) {
561         if ((*from >= '0') && (*from <= '9'))
562             v = *from - '0';
563         else if ((*from >= 'A') && (*from <= 'F'))
564             v = *from - 'A' + 10;
565         else if ((*from >= 'a') && (*from <= 'f'))
566             v = *from - 'a' + 10;
567         else {
568             PEMerr(PEM_F_LOAD_IV, PEM_R_BAD_IV_CHARS);
569             return (0);
570         }
571         from++;
572         to[i / 2] |= v << (long)((!(i & 1)) * 4);
573     }
574
575     *fromp = from;
576     return (1);
577 }
578
579 #ifndef OPENSSL_NO_STDIO
580 int PEM_write(FILE *fp, const char *name, const char *header,
581               const unsigned char *data, long len)
582 {
583     BIO *b;
584     int ret;
585
586     if ((b = BIO_new(BIO_s_file())) == NULL) {
587         PEMerr(PEM_F_PEM_WRITE, ERR_R_BUF_LIB);
588         return (0);
589     }
590     BIO_set_fp(b, fp, BIO_NOCLOSE);
591     ret = PEM_write_bio(b, name, header, data, len);
592     BIO_free(b);
593     return (ret);
594 }
595 #endif
596
597 int PEM_write_bio(BIO *bp, const char *name, const char *header,
598                   const unsigned char *data, long len)
599 {
600     int nlen, n, i, j, outl;
601     unsigned char *buf = NULL;
602     EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new();
603     int reason = ERR_R_BUF_LIB;
604
605     if (ctx == NULL) {
606         reason = ERR_R_MALLOC_FAILURE;
607         goto err;
608     }
609
610     EVP_EncodeInit(ctx);
611     nlen = strlen(name);
612
613     if ((BIO_write(bp, "-----BEGIN ", 11) != 11) ||
614         (BIO_write(bp, name, nlen) != nlen) ||
615         (BIO_write(bp, "-----\n", 6) != 6))
616         goto err;
617
618     i = strlen(header);
619     if (i > 0) {
620         if ((BIO_write(bp, header, i) != i) || (BIO_write(bp, "\n", 1) != 1))
621             goto err;
622     }
623
624     buf = OPENSSL_malloc(PEM_BUFSIZE * 8);
625     if (buf == NULL) {
626         reason = ERR_R_MALLOC_FAILURE;
627         goto err;
628     }
629
630     i = j = 0;
631     while (len > 0) {
632         n = (int)((len > (PEM_BUFSIZE * 5)) ? (PEM_BUFSIZE * 5) : len);
633         EVP_EncodeUpdate(ctx, buf, &outl, &(data[j]), n);
634         if ((outl) && (BIO_write(bp, (char *)buf, outl) != outl))
635             goto err;
636         i += outl;
637         len -= n;
638         j += n;
639     }
640     EVP_EncodeFinal(ctx, buf, &outl);
641     if ((outl > 0) && (BIO_write(bp, (char *)buf, outl) != outl))
642         goto err;
643     if ((BIO_write(bp, "-----END ", 9) != 9) ||
644         (BIO_write(bp, name, nlen) != nlen) ||
645         (BIO_write(bp, "-----\n", 6) != 6))
646         goto err;
647     OPENSSL_clear_free(buf, PEM_BUFSIZE * 8);
648     EVP_ENCODE_CTX_free(ctx);
649     return (i + outl);
650  err:
651     OPENSSL_clear_free(buf, PEM_BUFSIZE * 8);
652     EVP_ENCODE_CTX_free(ctx);
653     PEMerr(PEM_F_PEM_WRITE_BIO, reason);
654     return (0);
655 }
656
657 #ifndef OPENSSL_NO_STDIO
658 int PEM_read(FILE *fp, char **name, char **header, unsigned char **data,
659              long *len)
660 {
661     BIO *b;
662     int ret;
663
664     if ((b = BIO_new(BIO_s_file())) == NULL) {
665         PEMerr(PEM_F_PEM_READ, ERR_R_BUF_LIB);
666         return (0);
667     }
668     BIO_set_fp(b, fp, BIO_NOCLOSE);
669     ret = PEM_read_bio(b, name, header, data, len);
670     BIO_free(b);
671     return (ret);
672 }
673 #endif
674
675 int PEM_read_bio(BIO *bp, char **name, char **header, unsigned char **data,
676                  long *len)
677 {
678     EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new();
679     int end = 0, i, k, bl = 0, hl = 0, nohead = 0;
680     char buf[256];
681     BUF_MEM *nameB;
682     BUF_MEM *headerB;
683     BUF_MEM *dataB, *tmpB;
684
685     if (ctx == NULL) {
686         PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
687         return (0);
688     }
689
690     nameB = BUF_MEM_new();
691     headerB = BUF_MEM_new();
692     dataB = BUF_MEM_new();
693     if ((nameB == NULL) || (headerB == NULL) || (dataB == NULL)) {
694         goto err;
695     }
696
697     buf[254] = '\0';
698     for (;;) {
699         i = BIO_gets(bp, buf, 254);
700
701         if (i <= 0) {
702             PEMerr(PEM_F_PEM_READ_BIO, PEM_R_NO_START_LINE);
703             goto err;
704         }
705
706         while ((i >= 0) && (buf[i] <= ' '))
707             i--;
708         buf[++i] = '\n';
709         buf[++i] = '\0';
710
711         if (strncmp(buf, "-----BEGIN ", 11) == 0) {
712             i = strlen(&(buf[11]));
713
714             if (strncmp(&(buf[11 + i - 6]), "-----\n", 6) != 0)
715                 continue;
716             if (!BUF_MEM_grow(nameB, i + 9)) {
717                 PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
718                 goto err;
719             }
720             memcpy(nameB->data, &(buf[11]), i - 6);
721             nameB->data[i - 6] = '\0';
722             break;
723         }
724     }
725     hl = 0;
726     if (!BUF_MEM_grow(headerB, 256)) {
727         PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
728         goto err;
729     }
730     headerB->data[0] = '\0';
731     for (;;) {
732         i = BIO_gets(bp, buf, 254);
733         if (i <= 0)
734             break;
735
736         while ((i >= 0) && (buf[i] <= ' '))
737             i--;
738         buf[++i] = '\n';
739         buf[++i] = '\0';
740
741         if (buf[0] == '\n')
742             break;
743         if (!BUF_MEM_grow(headerB, hl + i + 9)) {
744             PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
745             goto err;
746         }
747         if (strncmp(buf, "-----END ", 9) == 0) {
748             nohead = 1;
749             break;
750         }
751         memcpy(&(headerB->data[hl]), buf, i);
752         headerB->data[hl + i] = '\0';
753         hl += i;
754     }
755
756     bl = 0;
757     if (!BUF_MEM_grow(dataB, 1024)) {
758         PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
759         goto err;
760     }
761     dataB->data[0] = '\0';
762     if (!nohead) {
763         for (;;) {
764             i = BIO_gets(bp, buf, 254);
765             if (i <= 0)
766                 break;
767
768             while ((i >= 0) && (buf[i] <= ' '))
769                 i--;
770             buf[++i] = '\n';
771             buf[++i] = '\0';
772
773             if (i != 65)
774                 end = 1;
775             if (strncmp(buf, "-----END ", 9) == 0)
776                 break;
777             if (i > 65)
778                 break;
779             if (!BUF_MEM_grow_clean(dataB, i + bl + 9)) {
780                 PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
781                 goto err;
782             }
783             memcpy(&(dataB->data[bl]), buf, i);
784             dataB->data[bl + i] = '\0';
785             bl += i;
786             if (end) {
787                 buf[0] = '\0';
788                 i = BIO_gets(bp, buf, 254);
789                 if (i <= 0)
790                     break;
791
792                 while ((i >= 0) && (buf[i] <= ' '))
793                     i--;
794                 buf[++i] = '\n';
795                 buf[++i] = '\0';
796
797                 break;
798             }
799         }
800     } else {
801         tmpB = headerB;
802         headerB = dataB;
803         dataB = tmpB;
804         bl = hl;
805     }
806     i = strlen(nameB->data);
807     if ((strncmp(buf, "-----END ", 9) != 0) ||
808         (strncmp(nameB->data, &(buf[9]), i) != 0) ||
809         (strncmp(&(buf[9 + i]), "-----\n", 6) != 0)) {
810         PEMerr(PEM_F_PEM_READ_BIO, PEM_R_BAD_END_LINE);
811         goto err;
812     }
813
814     EVP_DecodeInit(ctx);
815     i = EVP_DecodeUpdate(ctx,
816                          (unsigned char *)dataB->data, &bl,
817                          (unsigned char *)dataB->data, bl);
818     if (i < 0) {
819         PEMerr(PEM_F_PEM_READ_BIO, PEM_R_BAD_BASE64_DECODE);
820         goto err;
821     }
822     i = EVP_DecodeFinal(ctx, (unsigned char *)&(dataB->data[bl]), &k);
823     if (i < 0) {
824         PEMerr(PEM_F_PEM_READ_BIO, PEM_R_BAD_BASE64_DECODE);
825         goto err;
826     }
827     bl += k;
828
829     if (bl == 0)
830         goto err;
831     *name = nameB->data;
832     *header = headerB->data;
833     *data = (unsigned char *)dataB->data;
834     *len = bl;
835     OPENSSL_free(nameB);
836     OPENSSL_free(headerB);
837     OPENSSL_free(dataB);
838     EVP_ENCODE_CTX_free(ctx);
839     return (1);
840  err:
841     BUF_MEM_free(nameB);
842     BUF_MEM_free(headerB);
843     BUF_MEM_free(dataB);
844     EVP_ENCODE_CTX_free(ctx);
845     return (0);
846 }
847
848 /*
849  * Check pem string and return prefix length. If for example the pem_str ==
850  * "RSA PRIVATE KEY" and suffix = "PRIVATE KEY" the return value is 3 for the
851  * string "RSA".
852  */
853
854 int pem_check_suffix(const char *pem_str, const char *suffix)
855 {
856     int pem_len = strlen(pem_str);
857     int suffix_len = strlen(suffix);
858     const char *p;
859     if (suffix_len + 1 >= pem_len)
860         return 0;
861     p = pem_str + pem_len - suffix_len;
862     if (strcmp(p, suffix))
863         return 0;
864     p--;
865     if (*p != ' ')
866         return 0;
867     return p - pem_str;
868 }