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