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