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