RT4320/GH705: Fix PEM parsing bug.
[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
493     cipher->cipher = NULL;
494     if ((header == NULL) || (*header == '\0') || (*header == '\n'))
495         return (1);
496     if (strncmp(header, "Proc-Type: ", 11) != 0) {
497         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_NOT_PROC_TYPE);
498         return (0);
499     }
500     header += 11;
501     if (*header != '4')
502         return (0);
503     header++;
504     if (*header != ',')
505         return (0);
506     header++;
507     if (strncmp(header, "ENCRYPTED", 9) != 0) {
508         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_NOT_ENCRYPTED);
509         return (0);
510     }
511     for (; (*header != '\n') && (*header != '\0'); header++) ;
512     if (*header == '\0') {
513         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_SHORT_HEADER);
514         return (0);
515     }
516     header++;
517     if (strncmp(header, "DEK-Info: ", 10) != 0) {
518         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_NOT_DEK_INFO);
519         return (0);
520     }
521     header += 10;
522
523     dekinfostart = header;
524     for (;;) {
525         c = *header;
526 #ifndef CHARSET_EBCDIC
527         if (!(((c >= 'A') && (c <= 'Z')) || (c == '-') ||
528               ((c >= '0') && (c <= '9'))))
529             break;
530 #else
531         if (!(isupper(c) || (c == '-') || isdigit(c)))
532             break;
533 #endif
534         header++;
535     }
536     *header = '\0';
537     cipher->cipher = enc = EVP_get_cipherbyname(dekinfostart);
538     *header++ = c;
539
540     if (enc == NULL) {
541         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_UNSUPPORTED_ENCRYPTION);
542         return (0);
543     }
544     if (!load_iv(&header, cipher->iv, EVP_CIPHER_iv_length(enc)))
545         return (0);
546
547     return (1);
548 }
549
550 static int load_iv(char **fromp, unsigned char *to, int num)
551 {
552     int v, i;
553     char *from;
554
555     from = *fromp;
556     for (i = 0; i < num; i++)
557         to[i] = 0;
558     num *= 2;
559     for (i = 0; i < num; i++) {
560         if ((*from >= '0') && (*from <= '9'))
561             v = *from - '0';
562         else if ((*from >= 'A') && (*from <= 'F'))
563             v = *from - 'A' + 10;
564         else if ((*from >= 'a') && (*from <= 'f'))
565             v = *from - 'a' + 10;
566         else {
567             PEMerr(PEM_F_LOAD_IV, PEM_R_BAD_IV_CHARS);
568             return (0);
569         }
570         from++;
571         to[i / 2] |= v << (long)((!(i & 1)) * 4);
572     }
573
574     *fromp = from;
575     return (1);
576 }
577
578 #ifndef OPENSSL_NO_STDIO
579 int PEM_write(FILE *fp, const char *name, const char *header,
580               const unsigned char *data, long len)
581 {
582     BIO *b;
583     int ret;
584
585     if ((b = BIO_new(BIO_s_file())) == NULL) {
586         PEMerr(PEM_F_PEM_WRITE, ERR_R_BUF_LIB);
587         return (0);
588     }
589     BIO_set_fp(b, fp, BIO_NOCLOSE);
590     ret = PEM_write_bio(b, name, header, data, len);
591     BIO_free(b);
592     return (ret);
593 }
594 #endif
595
596 int PEM_write_bio(BIO *bp, const char *name, const char *header,
597                   const unsigned char *data, long len)
598 {
599     int nlen, n, i, j, outl;
600     unsigned char *buf = NULL;
601     EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new();
602     int reason = ERR_R_BUF_LIB;
603
604     if (ctx == NULL) {
605         reason = ERR_R_MALLOC_FAILURE;
606         goto err;
607     }
608
609     EVP_EncodeInit(ctx);
610     nlen = strlen(name);
611
612     if ((BIO_write(bp, "-----BEGIN ", 11) != 11) ||
613         (BIO_write(bp, name, nlen) != nlen) ||
614         (BIO_write(bp, "-----\n", 6) != 6))
615         goto err;
616
617     i = strlen(header);
618     if (i > 0) {
619         if ((BIO_write(bp, header, i) != i) || (BIO_write(bp, "\n", 1) != 1))
620             goto err;
621     }
622
623     buf = OPENSSL_malloc(PEM_BUFSIZE * 8);
624     if (buf == NULL) {
625         reason = ERR_R_MALLOC_FAILURE;
626         goto err;
627     }
628
629     i = j = 0;
630     while (len > 0) {
631         n = (int)((len > (PEM_BUFSIZE * 5)) ? (PEM_BUFSIZE * 5) : len);
632         EVP_EncodeUpdate(ctx, buf, &outl, &(data[j]), n);
633         if ((outl) && (BIO_write(bp, (char *)buf, outl) != outl))
634             goto err;
635         i += outl;
636         len -= n;
637         j += n;
638     }
639     EVP_EncodeFinal(ctx, buf, &outl);
640     if ((outl > 0) && (BIO_write(bp, (char *)buf, outl) != outl))
641         goto err;
642     if ((BIO_write(bp, "-----END ", 9) != 9) ||
643         (BIO_write(bp, name, nlen) != nlen) ||
644         (BIO_write(bp, "-----\n", 6) != 6))
645         goto err;
646     OPENSSL_clear_free(buf, PEM_BUFSIZE * 8);
647     EVP_ENCODE_CTX_free(ctx);
648     return (i + outl);
649  err:
650     OPENSSL_clear_free(buf, PEM_BUFSIZE * 8);
651     EVP_ENCODE_CTX_free(ctx);
652     PEMerr(PEM_F_PEM_WRITE_BIO, reason);
653     return (0);
654 }
655
656 #ifndef OPENSSL_NO_STDIO
657 int PEM_read(FILE *fp, char **name, char **header, unsigned char **data,
658              long *len)
659 {
660     BIO *b;
661     int ret;
662
663     if ((b = BIO_new(BIO_s_file())) == NULL) {
664         PEMerr(PEM_F_PEM_READ, ERR_R_BUF_LIB);
665         return (0);
666     }
667     BIO_set_fp(b, fp, BIO_NOCLOSE);
668     ret = PEM_read_bio(b, name, header, data, len);
669     BIO_free(b);
670     return (ret);
671 }
672 #endif
673
674 int PEM_read_bio(BIO *bp, char **name, char **header, unsigned char **data,
675                  long *len)
676 {
677     EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new();
678     int end = 0, i, k, bl = 0, hl = 0, nohead = 0;
679     char buf[256];
680     BUF_MEM *nameB;
681     BUF_MEM *headerB;
682     BUF_MEM *dataB, *tmpB;
683
684     if (ctx == NULL) {
685         PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
686         return (0);
687     }
688
689     nameB = BUF_MEM_new();
690     headerB = BUF_MEM_new();
691     dataB = BUF_MEM_new();
692     if ((nameB == NULL) || (headerB == NULL) || (dataB == NULL)) {
693         goto err;
694     }
695
696     buf[254] = '\0';
697     for (;;) {
698         i = BIO_gets(bp, buf, 254);
699
700         if (i <= 0) {
701             PEMerr(PEM_F_PEM_READ_BIO, PEM_R_NO_START_LINE);
702             goto err;
703         }
704
705         while ((i >= 0) && (buf[i] <= ' '))
706             i--;
707         buf[++i] = '\n';
708         buf[++i] = '\0';
709
710         if (strncmp(buf, "-----BEGIN ", 11) == 0) {
711             i = strlen(&(buf[11]));
712
713             if (strncmp(&(buf[11 + i - 6]), "-----\n", 6) != 0)
714                 continue;
715             if (!BUF_MEM_grow(nameB, i + 9)) {
716                 PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
717                 goto err;
718             }
719             memcpy(nameB->data, &(buf[11]), i - 6);
720             nameB->data[i - 6] = '\0';
721             break;
722         }
723     }
724     hl = 0;
725     if (!BUF_MEM_grow(headerB, 256)) {
726         PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
727         goto err;
728     }
729     headerB->data[0] = '\0';
730     for (;;) {
731         i = BIO_gets(bp, buf, 254);
732         if (i <= 0)
733             break;
734
735         while ((i >= 0) && (buf[i] <= ' '))
736             i--;
737         buf[++i] = '\n';
738         buf[++i] = '\0';
739
740         if (buf[0] == '\n')
741             break;
742         if (!BUF_MEM_grow(headerB, hl + i + 9)) {
743             PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
744             goto err;
745         }
746         if (strncmp(buf, "-----END ", 9) == 0) {
747             nohead = 1;
748             break;
749         }
750         memcpy(&(headerB->data[hl]), buf, i);
751         headerB->data[hl + i] = '\0';
752         hl += i;
753     }
754
755     bl = 0;
756     if (!BUF_MEM_grow(dataB, 1024)) {
757         PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
758         goto err;
759     }
760     dataB->data[0] = '\0';
761     if (!nohead) {
762         for (;;) {
763             i = BIO_gets(bp, buf, 254);
764             if (i <= 0)
765                 break;
766
767             while ((i >= 0) && (buf[i] <= ' '))
768                 i--;
769             buf[++i] = '\n';
770             buf[++i] = '\0';
771
772             if (i != 65)
773                 end = 1;
774             if (strncmp(buf, "-----END ", 9) == 0)
775                 break;
776             if (i > 65)
777                 break;
778             if (!BUF_MEM_grow_clean(dataB, i + bl + 9)) {
779                 PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
780                 goto err;
781             }
782             memcpy(&(dataB->data[bl]), buf, i);
783             dataB->data[bl + i] = '\0';
784             bl += i;
785             if (end) {
786                 buf[0] = '\0';
787                 i = BIO_gets(bp, buf, 254);
788                 if (i <= 0)
789                     break;
790
791                 while ((i >= 0) && (buf[i] <= ' '))
792                     i--;
793                 buf[++i] = '\n';
794                 buf[++i] = '\0';
795
796                 break;
797             }
798         }
799     } else {
800         tmpB = headerB;
801         headerB = dataB;
802         dataB = tmpB;
803         bl = hl;
804     }
805     i = strlen(nameB->data);
806     if ((strncmp(buf, "-----END ", 9) != 0) ||
807         (strncmp(nameB->data, &(buf[9]), i) != 0) ||
808         (strncmp(&(buf[9 + i]), "-----\n", 6) != 0)) {
809         PEMerr(PEM_F_PEM_READ_BIO, PEM_R_BAD_END_LINE);
810         goto err;
811     }
812
813     EVP_DecodeInit(ctx);
814     i = EVP_DecodeUpdate(ctx,
815                          (unsigned char *)dataB->data, &bl,
816                          (unsigned char *)dataB->data, bl);
817     if (i < 0) {
818         PEMerr(PEM_F_PEM_READ_BIO, PEM_R_BAD_BASE64_DECODE);
819         goto err;
820     }
821     i = EVP_DecodeFinal(ctx, (unsigned char *)&(dataB->data[bl]), &k);
822     if (i < 0) {
823         PEMerr(PEM_F_PEM_READ_BIO, PEM_R_BAD_BASE64_DECODE);
824         goto err;
825     }
826     bl += k;
827
828     if (bl == 0)
829         goto err;
830     *name = nameB->data;
831     *header = headerB->data;
832     *data = (unsigned char *)dataB->data;
833     *len = bl;
834     OPENSSL_free(nameB);
835     OPENSSL_free(headerB);
836     OPENSSL_free(dataB);
837     EVP_ENCODE_CTX_free(ctx);
838     return (1);
839  err:
840     BUF_MEM_free(nameB);
841     BUF_MEM_free(headerB);
842     BUF_MEM_free(dataB);
843     EVP_ENCODE_CTX_free(ctx);
844     return (0);
845 }
846
847 /*
848  * Check pem string and return prefix length. If for example the pem_str ==
849  * "RSA PRIVATE KEY" and suffix = "PRIVATE KEY" the return value is 3 for the
850  * string "RSA".
851  */
852
853 int pem_check_suffix(const char *pem_str, const char *suffix)
854 {
855     int pem_len = strlen(pem_str);
856     int suffix_len = strlen(suffix);
857     const char *p;
858     if (suffix_len + 1 >= pem_len)
859         return 0;
860     p = pem_str + pem_len - suffix_len;
861     if (strcmp(p, suffix))
862         return 0;
863     p--;
864     if (*p != ' ')
865         return 0;
866     return p - pem_str;
867 }