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