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