946b00ef6dc2fe9719f3ed05d738cecd26b62819
[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                 ENGINE_finish(e);
222 #endif
223                 return r;
224             }
225         }
226         return 0;
227     }
228     /* If reading DH parameters handle X9.42 DH format too */
229     if (strcmp(nm, PEM_STRING_DHXPARAMS) == 0
230         && strcmp(name, PEM_STRING_DHPARAMS) == 0)
231         return 1;
232
233     /* Permit older strings */
234
235     if (strcmp(nm, PEM_STRING_X509_OLD) == 0
236         && strcmp(name, PEM_STRING_X509) == 0)
237         return 1;
238
239     if (strcmp(nm, PEM_STRING_X509_REQ_OLD) == 0
240         && strcmp(name, PEM_STRING_X509_REQ) == 0)
241         return 1;
242
243     /* Allow normal certs to be read as trusted certs */
244     if (strcmp(nm, PEM_STRING_X509) == 0
245         && strcmp(name, PEM_STRING_X509_TRUSTED) == 0)
246         return 1;
247
248     if (strcmp(nm, PEM_STRING_X509_OLD) == 0
249         && strcmp(name, PEM_STRING_X509_TRUSTED) == 0)
250         return 1;
251
252     /* Some CAs use PKCS#7 with CERTIFICATE headers */
253     if (strcmp(nm, PEM_STRING_X509) == 0
254         && strcmp(name, PEM_STRING_PKCS7) == 0)
255         return 1;
256
257     if (strcmp(nm, PEM_STRING_PKCS7_SIGNED) == 0
258         && strcmp(name, PEM_STRING_PKCS7) == 0)
259         return 1;
260
261 #ifndef OPENSSL_NO_CMS
262     if (strcmp(nm, PEM_STRING_X509) == 0
263         && strcmp(name, PEM_STRING_CMS) == 0)
264         return 1;
265     /* Allow CMS to be read from PKCS#7 headers */
266     if (strcmp(nm, PEM_STRING_PKCS7) == 0
267         && strcmp(name, PEM_STRING_CMS) == 0)
268         return 1;
269 #endif
270
271     return 0;
272 }
273
274 int PEM_bytes_read_bio(unsigned char **pdata, long *plen, char **pnm,
275                        const char *name, BIO *bp, pem_password_cb *cb,
276                        void *u)
277 {
278     EVP_CIPHER_INFO cipher;
279     char *nm = NULL, *header = NULL;
280     unsigned char *data = NULL;
281     long len;
282     int ret = 0;
283
284     for (;;) {
285         if (!PEM_read_bio(bp, &nm, &header, &data, &len)) {
286             if (ERR_GET_REASON(ERR_peek_error()) == PEM_R_NO_START_LINE)
287                 ERR_add_error_data(2, "Expecting: ", name);
288             return 0;
289         }
290         if (check_pem(nm, name))
291             break;
292         OPENSSL_free(nm);
293         OPENSSL_free(header);
294         OPENSSL_free(data);
295     }
296     if (!PEM_get_EVP_CIPHER_INFO(header, &cipher))
297         goto err;
298     if (!PEM_do_header(&cipher, data, &len, cb, u))
299         goto err;
300
301     *pdata = data;
302     *plen = len;
303
304     if (pnm)
305         *pnm = nm;
306
307     ret = 1;
308
309  err:
310     if (!ret || !pnm)
311         OPENSSL_free(nm);
312     OPENSSL_free(header);
313     if (!ret)
314         OPENSSL_free(data);
315     return ret;
316 }
317
318 #ifndef OPENSSL_NO_STDIO
319 int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp,
320                    void *x, const EVP_CIPHER *enc, unsigned char *kstr,
321                    int klen, pem_password_cb *callback, void *u)
322 {
323     BIO *b;
324     int ret;
325
326     if ((b = BIO_new(BIO_s_file())) == NULL) {
327         PEMerr(PEM_F_PEM_ASN1_WRITE, ERR_R_BUF_LIB);
328         return (0);
329     }
330     BIO_set_fp(b, fp, BIO_NOCLOSE);
331     ret = PEM_ASN1_write_bio(i2d, name, b, x, enc, kstr, klen, callback, u);
332     BIO_free(b);
333     return (ret);
334 }
335 #endif
336
337 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp,
338                        void *x, const EVP_CIPHER *enc, unsigned char *kstr,
339                        int klen, pem_password_cb *callback, void *u)
340 {
341     EVP_CIPHER_CTX *ctx = NULL;
342     int dsize = 0, i = 0, j = 0, ret = 0;
343     unsigned char *p, *data = NULL;
344     const char *objstr = NULL;
345     char buf[PEM_BUFSIZE];
346     unsigned char key[EVP_MAX_KEY_LENGTH];
347     unsigned char iv[EVP_MAX_IV_LENGTH];
348
349     if (enc != NULL) {
350         objstr = OBJ_nid2sn(EVP_CIPHER_nid(enc));
351         if (objstr == NULL) {
352             PEMerr(PEM_F_PEM_ASN1_WRITE_BIO, PEM_R_UNSUPPORTED_CIPHER);
353             goto err;
354         }
355     }
356
357     if ((dsize = i2d(x, NULL)) < 0) {
358         PEMerr(PEM_F_PEM_ASN1_WRITE_BIO, ERR_R_ASN1_LIB);
359         dsize = 0;
360         goto err;
361     }
362     /* dzise + 8 bytes are needed */
363     /* actually it needs the cipher block size extra... */
364     data = OPENSSL_malloc((unsigned int)dsize + 20);
365     if (data == NULL) {
366         PEMerr(PEM_F_PEM_ASN1_WRITE_BIO, ERR_R_MALLOC_FAILURE);
367         goto err;
368     }
369     p = data;
370     i = i2d(x, &p);
371
372     if (enc != NULL) {
373         if (kstr == NULL) {
374             if (callback == NULL)
375                 klen = PEM_def_callback(buf, PEM_BUFSIZE, 1, u);
376             else
377                 klen = (*callback) (buf, PEM_BUFSIZE, 1, u);
378             if (klen <= 0) {
379                 PEMerr(PEM_F_PEM_ASN1_WRITE_BIO, PEM_R_READ_KEY);
380                 goto err;
381             }
382 #ifdef CHARSET_EBCDIC
383             /* Convert the pass phrase from EBCDIC */
384             ebcdic2ascii(buf, buf, klen);
385 #endif
386             kstr = (unsigned char *)buf;
387         }
388         RAND_add(data, i, 0);   /* put in the RSA key. */
389         OPENSSL_assert(EVP_CIPHER_iv_length(enc) <= (int)sizeof(iv));
390         if (RAND_bytes(iv, EVP_CIPHER_iv_length(enc)) <= 0) /* Generate a salt */
391             goto err;
392         /*
393          * The 'iv' is used as the iv and as a salt.  It is NOT taken from
394          * the BytesToKey function
395          */
396         if (!EVP_BytesToKey(enc, EVP_md5(), iv, kstr, klen, 1, key, NULL))
397             goto err;
398
399         if (kstr == (unsigned char *)buf)
400             OPENSSL_cleanse(buf, PEM_BUFSIZE);
401
402         OPENSSL_assert(strlen(objstr) + 23 + 2 * EVP_CIPHER_iv_length(enc) + 13
403                        <= sizeof buf);
404
405         buf[0] = '\0';
406         PEM_proc_type(buf, PEM_TYPE_ENCRYPTED);
407         PEM_dek_info(buf, objstr, EVP_CIPHER_iv_length(enc), (char *)iv);
408         /* k=strlen(buf); */
409
410         ret = 1;
411         if ((ctx = EVP_CIPHER_CTX_new()) == NULL
412             || !EVP_EncryptInit_ex(ctx, enc, NULL, key, iv)
413             || !EVP_EncryptUpdate(ctx, data, &j, data, i)
414             || !EVP_EncryptFinal_ex(ctx, &(data[j]), &i))
415             ret = 0;
416         if (ret == 0)
417             goto err;
418         i += j;
419     } else {
420         ret = 1;
421         buf[0] = '\0';
422     }
423     i = PEM_write_bio(bp, name, buf, data, i);
424     if (i <= 0)
425         ret = 0;
426  err:
427     OPENSSL_cleanse(key, sizeof(key));
428     OPENSSL_cleanse(iv, sizeof(iv));
429     EVP_CIPHER_CTX_free(ctx);
430     OPENSSL_cleanse(buf, PEM_BUFSIZE);
431     OPENSSL_clear_free(data, (unsigned int)dsize);
432     return (ret);
433 }
434
435 int PEM_do_header(EVP_CIPHER_INFO *cipher, unsigned char *data, long *plen,
436                   pem_password_cb *callback, void *u)
437 {
438     int i = 0, j, o, klen;
439     long len;
440     EVP_CIPHER_CTX *ctx;
441     unsigned char key[EVP_MAX_KEY_LENGTH];
442     char buf[PEM_BUFSIZE];
443
444     len = *plen;
445
446     if (cipher->cipher == NULL)
447         return (1);
448     if (callback == NULL)
449         klen = PEM_def_callback(buf, PEM_BUFSIZE, 0, u);
450     else
451         klen = callback(buf, PEM_BUFSIZE, 0, u);
452     if (klen <= 0) {
453         PEMerr(PEM_F_PEM_DO_HEADER, PEM_R_BAD_PASSWORD_READ);
454         return (0);
455     }
456 #ifdef CHARSET_EBCDIC
457     /* Convert the pass phrase from EBCDIC */
458     ebcdic2ascii(buf, buf, klen);
459 #endif
460
461     if (!EVP_BytesToKey(cipher->cipher, EVP_md5(), &(cipher->iv[0]),
462                         (unsigned char *)buf, klen, 1, key, NULL))
463         return 0;
464
465     j = (int)len;
466     ctx = EVP_CIPHER_CTX_new();
467     if (ctx == NULL)
468         return 0;
469     o = EVP_DecryptInit_ex(ctx, cipher->cipher, NULL, key, &(cipher->iv[0]));
470     if (o)
471         o = EVP_DecryptUpdate(ctx, data, &i, data, j);
472     if (o)
473         o = EVP_DecryptFinal_ex(ctx, &(data[i]), &j);
474     EVP_CIPHER_CTX_free(ctx);
475     OPENSSL_cleanse((char *)buf, sizeof(buf));
476     OPENSSL_cleanse((char *)key, sizeof(key));
477     if (o)
478         j += i;
479     else {
480         PEMerr(PEM_F_PEM_DO_HEADER, PEM_R_BAD_DECRYPT);
481         return (0);
482     }
483     *plen = j;
484     return (1);
485 }
486
487 int PEM_get_EVP_CIPHER_INFO(char *header, EVP_CIPHER_INFO *cipher)
488 {
489     const EVP_CIPHER *enc = NULL;
490     char *dekinfostart, c;
491
492     cipher->cipher = NULL;
493     if ((header == NULL) || (*header == '\0') || (*header == '\n'))
494         return (1);
495     if (strncmp(header, "Proc-Type: ", 11) != 0) {
496         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_NOT_PROC_TYPE);
497         return (0);
498     }
499     header += 11;
500     if (*header != '4')
501         return (0);
502     header++;
503     if (*header != ',')
504         return (0);
505     header++;
506     if (strncmp(header, "ENCRYPTED", 9) != 0) {
507         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_NOT_ENCRYPTED);
508         return (0);
509     }
510     for (; (*header != '\n') && (*header != '\0'); header++) ;
511     if (*header == '\0') {
512         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_SHORT_HEADER);
513         return (0);
514     }
515     header++;
516     if (strncmp(header, "DEK-Info: ", 10) != 0) {
517         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_NOT_DEK_INFO);
518         return (0);
519     }
520     header += 10;
521
522     dekinfostart = header;
523     for (;;) {
524         c = *header;
525 #ifndef CHARSET_EBCDIC
526         if (!(((c >= 'A') && (c <= 'Z')) || (c == '-') ||
527               ((c >= '0') && (c <= '9'))))
528             break;
529 #else
530         if (!(isupper(c) || (c == '-') || isdigit(c)))
531             break;
532 #endif
533         header++;
534     }
535     *header = '\0';
536     cipher->cipher = enc = EVP_get_cipherbyname(dekinfostart);
537     *header++ = c;
538
539     if (enc == NULL) {
540         PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO, PEM_R_UNSUPPORTED_ENCRYPTION);
541         return (0);
542     }
543     if (!load_iv(&header, cipher->iv, EVP_CIPHER_iv_length(enc)))
544         return (0);
545
546     return (1);
547 }
548
549 static int load_iv(char **fromp, unsigned char *to, int num)
550 {
551     int v, i;
552     char *from;
553
554     from = *fromp;
555     for (i = 0; i < num; i++)
556         to[i] = 0;
557     num *= 2;
558     for (i = 0; i < num; i++) {
559         if ((*from >= '0') && (*from <= '9'))
560             v = *from - '0';
561         else if ((*from >= 'A') && (*from <= 'F'))
562             v = *from - 'A' + 10;
563         else if ((*from >= 'a') && (*from <= 'f'))
564             v = *from - 'a' + 10;
565         else {
566             PEMerr(PEM_F_LOAD_IV, PEM_R_BAD_IV_CHARS);
567             return (0);
568         }
569         from++;
570         to[i / 2] |= v << (long)((!(i & 1)) * 4);
571     }
572
573     *fromp = from;
574     return (1);
575 }
576
577 #ifndef OPENSSL_NO_STDIO
578 int PEM_write(FILE *fp, const char *name, const char *header,
579               const unsigned char *data, long len)
580 {
581     BIO *b;
582     int ret;
583
584     if ((b = BIO_new(BIO_s_file())) == NULL) {
585         PEMerr(PEM_F_PEM_WRITE, ERR_R_BUF_LIB);
586         return (0);
587     }
588     BIO_set_fp(b, fp, BIO_NOCLOSE);
589     ret = PEM_write_bio(b, name, header, data, len);
590     BIO_free(b);
591     return (ret);
592 }
593 #endif
594
595 int PEM_write_bio(BIO *bp, const char *name, const char *header,
596                   const unsigned char *data, long len)
597 {
598     int nlen, n, i, j, outl;
599     unsigned char *buf = NULL;
600     EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new();
601     int reason = ERR_R_BUF_LIB;
602
603     if (ctx == NULL) {
604         reason = ERR_R_MALLOC_FAILURE;
605         goto err;
606     }
607
608     EVP_EncodeInit(ctx);
609     nlen = strlen(name);
610
611     if ((BIO_write(bp, "-----BEGIN ", 11) != 11) ||
612         (BIO_write(bp, name, nlen) != nlen) ||
613         (BIO_write(bp, "-----\n", 6) != 6))
614         goto err;
615
616     i = strlen(header);
617     if (i > 0) {
618         if ((BIO_write(bp, header, i) != i) || (BIO_write(bp, "\n", 1) != 1))
619             goto err;
620     }
621
622     buf = OPENSSL_malloc(PEM_BUFSIZE * 8);
623     if (buf == NULL) {
624         reason = ERR_R_MALLOC_FAILURE;
625         goto err;
626     }
627
628     i = j = 0;
629     while (len > 0) {
630         n = (int)((len > (PEM_BUFSIZE * 5)) ? (PEM_BUFSIZE * 5) : len);
631         EVP_EncodeUpdate(ctx, buf, &outl, &(data[j]), n);
632         if ((outl) && (BIO_write(bp, (char *)buf, outl) != outl))
633             goto err;
634         i += outl;
635         len -= n;
636         j += n;
637     }
638     EVP_EncodeFinal(ctx, buf, &outl);
639     if ((outl > 0) && (BIO_write(bp, (char *)buf, outl) != outl))
640         goto err;
641     if ((BIO_write(bp, "-----END ", 9) != 9) ||
642         (BIO_write(bp, name, nlen) != nlen) ||
643         (BIO_write(bp, "-----\n", 6) != 6))
644         goto err;
645     OPENSSL_clear_free(buf, PEM_BUFSIZE * 8);
646     EVP_ENCODE_CTX_free(ctx);
647     return (i + outl);
648  err:
649     OPENSSL_clear_free(buf, PEM_BUFSIZE * 8);
650     EVP_ENCODE_CTX_free(ctx);
651     PEMerr(PEM_F_PEM_WRITE_BIO, reason);
652     return (0);
653 }
654
655 #ifndef OPENSSL_NO_STDIO
656 int PEM_read(FILE *fp, char **name, char **header, unsigned char **data,
657              long *len)
658 {
659     BIO *b;
660     int ret;
661
662     if ((b = BIO_new(BIO_s_file())) == NULL) {
663         PEMerr(PEM_F_PEM_READ, ERR_R_BUF_LIB);
664         return (0);
665     }
666     BIO_set_fp(b, fp, BIO_NOCLOSE);
667     ret = PEM_read_bio(b, name, header, data, len);
668     BIO_free(b);
669     return (ret);
670 }
671 #endif
672
673 int PEM_read_bio(BIO *bp, char **name, char **header, unsigned char **data,
674                  long *len)
675 {
676     EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new();
677     int end = 0, i, k, bl = 0, hl = 0, nohead = 0;
678     char buf[256];
679     BUF_MEM *nameB;
680     BUF_MEM *headerB;
681     BUF_MEM *dataB, *tmpB;
682
683     if (ctx == NULL) {
684         PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
685         return (0);
686     }
687
688     nameB = BUF_MEM_new();
689     headerB = BUF_MEM_new();
690     dataB = BUF_MEM_new();
691     if ((nameB == NULL) || (headerB == NULL) || (dataB == NULL)) {
692         goto err;
693     }
694
695     buf[254] = '\0';
696     for (;;) {
697         i = BIO_gets(bp, buf, 254);
698
699         if (i <= 0) {
700             PEMerr(PEM_F_PEM_READ_BIO, PEM_R_NO_START_LINE);
701             goto err;
702         }
703
704         while ((i >= 0) && (buf[i] <= ' '))
705             i--;
706         buf[++i] = '\n';
707         buf[++i] = '\0';
708
709         if (strncmp(buf, "-----BEGIN ", 11) == 0) {
710             i = strlen(&(buf[11]));
711
712             if (strncmp(&(buf[11 + i - 6]), "-----\n", 6) != 0)
713                 continue;
714             if (!BUF_MEM_grow(nameB, i + 9)) {
715                 PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
716                 goto err;
717             }
718             memcpy(nameB->data, &(buf[11]), i - 6);
719             nameB->data[i - 6] = '\0';
720             break;
721         }
722     }
723     hl = 0;
724     if (!BUF_MEM_grow(headerB, 256)) {
725         PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
726         goto err;
727     }
728     headerB->data[0] = '\0';
729     for (;;) {
730         i = BIO_gets(bp, buf, 254);
731         if (i <= 0)
732             break;
733
734         while ((i >= 0) && (buf[i] <= ' '))
735             i--;
736         buf[++i] = '\n';
737         buf[++i] = '\0';
738
739         if (buf[0] == '\n')
740             break;
741         if (!BUF_MEM_grow(headerB, hl + i + 9)) {
742             PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
743             goto err;
744         }
745         if (strncmp(buf, "-----END ", 9) == 0) {
746             nohead = 1;
747             break;
748         }
749         memcpy(&(headerB->data[hl]), buf, i);
750         headerB->data[hl + i] = '\0';
751         hl += i;
752     }
753
754     bl = 0;
755     if (!BUF_MEM_grow(dataB, 1024)) {
756         PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
757         goto err;
758     }
759     dataB->data[0] = '\0';
760     if (!nohead) {
761         for (;;) {
762             i = BIO_gets(bp, buf, 254);
763             if (i <= 0)
764                 break;
765
766             while ((i >= 0) && (buf[i] <= ' '))
767                 i--;
768             buf[++i] = '\n';
769             buf[++i] = '\0';
770
771             if (i != 65)
772                 end = 1;
773             if (strncmp(buf, "-----END ", 9) == 0)
774                 break;
775             if (i > 65)
776                 break;
777             if (!BUF_MEM_grow_clean(dataB, i + bl + 9)) {
778                 PEMerr(PEM_F_PEM_READ_BIO, ERR_R_MALLOC_FAILURE);
779                 goto err;
780             }
781             memcpy(&(dataB->data[bl]), buf, i);
782             dataB->data[bl + i] = '\0';
783             bl += i;
784             if (end) {
785                 buf[0] = '\0';
786                 i = BIO_gets(bp, buf, 254);
787                 if (i <= 0)
788                     break;
789
790                 while ((i >= 0) && (buf[i] <= ' '))
791                     i--;
792                 buf[++i] = '\n';
793                 buf[++i] = '\0';
794
795                 break;
796             }
797         }
798     } else {
799         tmpB = headerB;
800         headerB = dataB;
801         dataB = tmpB;
802         bl = hl;
803     }
804     i = strlen(nameB->data);
805     if ((strncmp(buf, "-----END ", 9) != 0) ||
806         (strncmp(nameB->data, &(buf[9]), i) != 0) ||
807         (strncmp(&(buf[9 + i]), "-----\n", 6) != 0)) {
808         PEMerr(PEM_F_PEM_READ_BIO, PEM_R_BAD_END_LINE);
809         goto err;
810     }
811
812     EVP_DecodeInit(ctx);
813     i = EVP_DecodeUpdate(ctx,
814                          (unsigned char *)dataB->data, &bl,
815                          (unsigned char *)dataB->data, bl);
816     if (i < 0) {
817         PEMerr(PEM_F_PEM_READ_BIO, PEM_R_BAD_BASE64_DECODE);
818         goto err;
819     }
820     i = EVP_DecodeFinal(ctx, (unsigned char *)&(dataB->data[bl]), &k);
821     if (i < 0) {
822         PEMerr(PEM_F_PEM_READ_BIO, PEM_R_BAD_BASE64_DECODE);
823         goto err;
824     }
825     bl += k;
826
827     if (bl == 0)
828         goto err;
829     *name = nameB->data;
830     *header = headerB->data;
831     *data = (unsigned char *)dataB->data;
832     *len = bl;
833     OPENSSL_free(nameB);
834     OPENSSL_free(headerB);
835     OPENSSL_free(dataB);
836     EVP_ENCODE_CTX_free(ctx);
837     return (1);
838  err:
839     BUF_MEM_free(nameB);
840     BUF_MEM_free(headerB);
841     BUF_MEM_free(dataB);
842     EVP_ENCODE_CTX_free(ctx);
843     return (0);
844 }
845
846 /*
847  * Check pem string and return prefix length. If for example the pem_str ==
848  * "RSA PRIVATE KEY" and suffix = "PRIVATE KEY" the return value is 3 for the
849  * string "RSA".
850  */
851
852 int pem_check_suffix(const char *pem_str, const char *suffix)
853 {
854     int pem_len = strlen(pem_str);
855     int suffix_len = strlen(suffix);
856     const char *p;
857     if (suffix_len + 1 >= pem_len)
858         return 0;
859     p = pem_str + pem_len - suffix_len;
860     if (strcmp(p, suffix))
861         return 0;
862     p--;
863     if (*p != ' ')
864         return 0;
865     return p - pem_str;
866 }