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