Add missing semicolon to make compiler happy, and switch back
[openssl.git] / apps / pkcs12.c
1 /* pkcs12.c */
2 #if !defined(NO_DES) && !defined(NO_SHA1)
3
4 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
5  * project 1999.
6  */
7 /* ====================================================================
8  * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  *
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer. 
16  *
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in
19  *    the documentation and/or other materials provided with the
20  *    distribution.
21  *
22  * 3. All advertising materials mentioning features or use of this
23  *    software must display the following acknowledgment:
24  *    "This product includes software developed by the OpenSSL Project
25  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
26  *
27  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
28  *    endorse or promote products derived from this software without
29  *    prior written permission. For written permission, please contact
30  *    licensing@OpenSSL.org.
31  *
32  * 5. Products derived from this software may not be called "OpenSSL"
33  *    nor may "OpenSSL" appear in their names without prior written
34  *    permission of the OpenSSL Project.
35  *
36  * 6. Redistributions of any form whatsoever must retain the following
37  *    acknowledgment:
38  *    "This product includes software developed by the OpenSSL Project
39  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
42  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
44  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
45  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
46  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
47  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
48  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
50  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
51  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
52  * OF THE POSSIBILITY OF SUCH DAMAGE.
53  * ====================================================================
54  *
55  * This product includes cryptographic software written by Eric Young
56  * (eay@cryptsoft.com).  This product includes software written by Tim
57  * Hudson (tjh@cryptsoft.com).
58  *
59  */
60
61 #include <stdio.h>
62 #include <stdlib.h>
63 #include <string.h>
64 #include <openssl/des.h>
65 #include <openssl/pem.h>
66 #include <openssl/err.h>
67 #include <openssl/pkcs12.h>
68
69 #include "apps.h"
70 #define PROG pkcs12_main
71
72 EVP_CIPHER *enc;
73
74
75 #define NOKEYS          0x1
76 #define NOCERTS         0x2
77 #define INFO            0x4
78 #define CLCERTS         0x8
79 #define CACERTS         0x10
80
81 int get_cert_chain(X509 *cert, STACK_OF(X509) **chain);
82 int dump_certs_keys_p12(BIO *out, PKCS12 *p12, char *pass, int passlen, int options);
83 int dump_certs_pkeys_bags(BIO *out, STACK *bags, char *pass, int passlen, int options);
84 int dump_certs_pkeys_bag(BIO *out, PKCS12_SAFEBAG *bags, char *pass, int passlen, int options);
85 int print_attribs(BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst, char *name);
86 void hex_prin(BIO *out, unsigned char *buf, int len);
87 int alg_print(BIO *x, X509_ALGOR *alg);
88 int cert_load(BIO *in, STACK_OF(X509) *sk);
89 int MAIN(int argc, char **argv)
90 {
91     char *infile=NULL, *outfile=NULL, *keyname = NULL;  
92     char *certfile=NULL;
93     BIO *in=NULL, *out = NULL, *inkey = NULL, *certsin = NULL;
94     char **args;
95     char *name = NULL;
96     PKCS12 *p12 = NULL;
97     char pass[50], macpass[50];
98     int export_cert = 0;
99     int options = 0;
100     int chain = 0;
101     int badarg = 0;
102     int iter = PKCS12_DEFAULT_ITER;
103     int maciter = 1;
104     int twopass = 0;
105     int keytype = 0;
106     int cert_pbe = NID_pbe_WithSHA1And40BitRC2_CBC;
107     int ret = 1;
108     int macver = 1;
109     int noprompt = 0;
110     STACK *canames = NULL;
111     char *cpass = NULL, *mpass = NULL;
112
113     apps_startup();
114
115     enc = EVP_des_ede3_cbc();
116     if (bio_err == NULL ) bio_err = BIO_new_fp (stderr, BIO_NOCLOSE);
117
118     args = argv + 1;
119
120
121     while (*args) {
122         if (*args[0] == '-') {
123                 if (!strcmp (*args, "-nokeys")) options |= NOKEYS;
124                 else if (!strcmp (*args, "-keyex")) keytype = KEY_EX;
125                 else if (!strcmp (*args, "-keysig")) keytype = KEY_SIG;
126                 else if (!strcmp (*args, "-nocerts")) options |= NOCERTS;
127                 else if (!strcmp (*args, "-clcerts")) options |= CLCERTS;
128                 else if (!strcmp (*args, "-cacerts")) options |= CACERTS;
129                 else if (!strcmp (*args, "-noout")) options |= (NOKEYS|NOCERTS);
130                 else if (!strcmp (*args, "-info")) options |= INFO;
131                 else if (!strcmp (*args, "-chain")) chain = 1;
132                 else if (!strcmp (*args, "-twopass")) twopass = 1;
133                 else if (!strcmp (*args, "-nomacver")) macver = 0;
134                 else if (!strcmp (*args, "-descert"))
135                         cert_pbe = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
136                 else if (!strcmp (*args, "-export")) export_cert = 1;
137                 else if (!strcmp (*args, "-des")) enc=EVP_des_cbc();
138 #ifndef NO_IDEA
139                 else if (!strcmp (*args, "-idea")) enc=EVP_idea_cbc();
140 #endif
141                 else if (!strcmp (*args, "-des3")) enc = EVP_des_ede3_cbc();
142                 else if (!strcmp (*args, "-noiter")) iter = 1;
143                 else if (!strcmp (*args, "-maciter"))
144                                          maciter = PKCS12_DEFAULT_ITER;
145                 else if (!strcmp (*args, "-nodes")) enc=NULL;
146                 else if (!strcmp (*args, "-inkey")) {
147                     if (args[1]) {
148                         args++; 
149                         keyname = *args;
150                     } else badarg = 1;
151                 } else if (!strcmp (*args, "-certfile")) {
152                     if (args[1]) {
153                         args++; 
154                         certfile = *args;
155                     } else badarg = 1;
156                 } else if (!strcmp (*args, "-name")) {
157                     if (args[1]) {
158                         args++; 
159                         name = *args;
160                     } else badarg = 1;
161                 } else if (!strcmp (*args, "-caname")) {
162                     if (args[1]) {
163                         args++; 
164                         if (!canames) canames = sk_new(NULL);
165                         sk_push(canames, *args);
166                     } else badarg = 1;
167                 } else if (!strcmp (*args, "-in")) {
168                     if (args[1]) {
169                         args++; 
170                         infile = *args;
171                     } else badarg = 1;
172                 } else if (!strcmp (*args, "-out")) {
173                     if (args[1]) {
174                         args++; 
175                         outfile = *args;
176                     } else badarg = 1;
177                 } else if (!strcmp (*args, "-envpass")) {
178                     if (args[1]) {
179                         args++; 
180                         if(!(cpass = getenv(*args))) {
181                                 BIO_printf(bio_err,
182                                  "Can't read environment variable %s\n", *args);
183                                 goto end;
184                         }
185                         noprompt = 1;
186                     } else badarg = 1;
187                 } else if (!strcmp (*args, "-password")) {
188                     if (args[1]) {
189                         args++; 
190                         cpass = *args;
191                         noprompt = 1;
192                     } else badarg = 1;
193                 } else badarg = 1;
194
195         } else badarg = 1;
196         args++;
197     }
198
199     if (badarg) {
200         BIO_printf (bio_err, "Usage: pkcs12 [options]\n");
201         BIO_printf (bio_err, "where options are\n");
202         BIO_printf (bio_err, "-export       output PKCS12 file\n");
203         BIO_printf (bio_err, "-chain        add certificate chain\n");
204         BIO_printf (bio_err, "-inkey file   private key if not infile\n");
205         BIO_printf (bio_err, "-certfile f   add all certs in f\n");
206         BIO_printf (bio_err, "-name \"name\"  use name as friendly name\n");
207         BIO_printf (bio_err, "-caname \"nm\"  use nm as CA friendly name (can be used more than once).\n");
208         BIO_printf (bio_err, "-in  infile   input filename\n");
209         BIO_printf (bio_err, "-out outfile  output filename\n");
210         BIO_printf (bio_err, "-noout        don't output anything, just verify.\n");
211         BIO_printf (bio_err, "-nomacver     don't verify MAC.\n");
212         BIO_printf (bio_err, "-nocerts      don't output certificates.\n");
213         BIO_printf (bio_err, "-clcerts      only output client certificates.\n");
214         BIO_printf (bio_err, "-cacerts      only output CA certificates.\n");
215         BIO_printf (bio_err, "-nokeys       don't output private keys.\n");
216         BIO_printf (bio_err, "-info         give info about PKCS#12 structure.\n");
217         BIO_printf (bio_err, "-des          encrypt private keys with DES\n");
218         BIO_printf (bio_err, "-des3         encrypt private keys with triple DES (default)\n");
219 #ifndef NO_IDEA
220         BIO_printf (bio_err, "-idea         encrypt private keys with idea\n");
221 #endif
222         BIO_printf (bio_err, "-nodes        don't encrypt private keys\n");
223         BIO_printf (bio_err, "-noiter       don't use encryption iteration\n");
224         BIO_printf (bio_err, "-maciter      use MAC iteration\n");
225         BIO_printf (bio_err, "-twopass      separate MAC, encryption passwords\n");
226         BIO_printf (bio_err, "-descert      encrypt PKCS#12 certificates with triple DES (default RC2-40)\n");
227         BIO_printf (bio_err, "-keyex        set MS key exchange type\n");
228         BIO_printf (bio_err, "-keysig       set MS key signature type\n");
229         BIO_printf (bio_err, "-password p   set import/export password (NOT RECOMMENDED)\n");
230         BIO_printf (bio_err, "-envpass p    set import/export password from environment\n");
231         goto end;
232     }
233
234     if(cpass) mpass = cpass;
235     else {
236         cpass = pass;
237         mpass = macpass;
238     }
239
240     ERR_load_crypto_strings();
241
242     if (!infile) in = BIO_new_fp(stdin, BIO_NOCLOSE);
243     else in = BIO_new_file(infile, "rb");
244     if (!in) {
245             BIO_printf(bio_err, "Error opening input file %s\n",
246                                                 infile ? infile : "<stdin>");
247             perror (infile);
248             goto end;
249    }
250
251    if (certfile) {
252         if(!(certsin = BIO_new_file(certfile, "r"))) {
253             BIO_printf(bio_err, "Can't open certificate file %s\n", certfile);
254             perror (certfile);
255             goto end;
256         }
257     }
258
259     if (keyname) {
260         if(!(inkey = BIO_new_file(keyname, "r"))) {
261             BIO_printf(bio_err, "Can't key certificate file %s\n", keyname);
262             perror (keyname);
263             goto end;
264         }
265      }
266
267     if (!outfile) out = BIO_new_fp(stdout, BIO_NOCLOSE);
268     else out = BIO_new_file(outfile, "wb");
269     if (!out) {
270         BIO_printf(bio_err, "Error opening output file %s\n",
271                                                 outfile ? outfile : "<stdout>");
272         perror (outfile);
273         goto end;
274     }
275     if (twopass) {
276         if(EVP_read_pw_string (macpass, 50, "Enter MAC Password:", export_cert))
277         {
278             BIO_printf (bio_err, "Can't read Password\n");
279             goto end;
280         }
281     }
282
283     if (export_cert) {
284         EVP_PKEY *key;
285         STACK *bags, *safes;
286         PKCS12_SAFEBAG *bag;
287         PKCS8_PRIV_KEY_INFO *p8;
288         PKCS7 *authsafe;
289         X509 *ucert = NULL;
290         STACK_OF(X509) *certs=NULL;
291         char *catmp;
292         int i;
293         unsigned char keyid[EVP_MAX_MD_SIZE];
294         unsigned int keyidlen = 0;
295         key = PEM_read_bio_PrivateKey(inkey ? inkey : in, NULL, NULL, NULL);
296         if (!inkey) (void) BIO_reset(in);
297         else BIO_free(inkey);
298         if (!key) {
299                 BIO_printf (bio_err, "Error loading private key\n");
300                 ERR_print_errors(bio_err);
301                 goto end;
302         }
303
304         certs = sk_X509_new(NULL);
305
306         /* Load in all certs in input file */
307         if(!cert_load(in, certs)) {
308                 BIO_printf(bio_err, "Error loading certificates from input\n");
309                 ERR_print_errors(bio_err);
310                 goto end;
311         }
312
313         for(i = 0; i < sk_X509_num(certs); i++) {
314                 ucert = sk_X509_value(certs, i);
315                 if(X509_check_private_key(ucert, key)) {
316                         X509_digest(ucert, EVP_sha1(), keyid, &keyidlen);
317                         break;
318                 }
319         }
320
321         if(!keyidlen) {
322                 BIO_printf(bio_err, "No certificate matches private key\n");
323                 goto end;
324         }
325         
326         bags = sk_new (NULL);
327
328         /* Add any more certificates asked for */
329         if (certsin) {
330                 if(!cert_load(certsin, certs)) {
331                         BIO_printf(bio_err, "Error loading certificates from certfile\n");
332                         ERR_print_errors(bio_err);
333                         goto end;
334                 }
335                 BIO_free(certsin);
336         }
337
338         /* If chaining get chain from user cert */
339         if (chain) {
340                 int vret;
341                 STACK_OF(X509) *chain2;
342                 vret = get_cert_chain (ucert, &chain2);
343                 if (vret) {
344                         BIO_printf (bio_err, "Error %s getting chain.\n",
345                                         X509_verify_cert_error_string(vret));
346                         goto end;
347                 }
348                 /* Exclude verified certificate */
349                 for (i = 1; i < sk_X509_num (chain2) ; i++) 
350                                  sk_X509_push(certs, sk_X509_value (chain2, i));
351                 sk_X509_free(chain2);
352                         
353         }
354
355         /* We now have loads of certificates: include them all */
356         for(i = 0; i < sk_X509_num(certs); i++) {
357                 X509 *cert = NULL;
358                 cert = sk_X509_value(certs, i);
359                 bag = M_PKCS12_x5092certbag(cert);
360                 /* If it matches private key set id */
361                 if(cert == ucert) {
362                         if(name) PKCS12_add_friendlyname(bag, name, -1);
363                         PKCS12_add_localkeyid(bag, keyid, keyidlen);
364                 } else if((catmp = sk_shift(canames))) 
365                                 PKCS12_add_friendlyname(bag, catmp, -1);
366                 sk_push(bags, (char *)bag);
367         }
368         sk_X509_pop_free(certs, X509_free);
369         if (canames) sk_free(canames);
370
371         if(!noprompt &&
372                 EVP_read_pw_string(pass, 50, "Enter Export Password:", 1)) {
373             BIO_printf (bio_err, "Can't read Password\n");
374             goto end;
375         }
376         if (!twopass) strcpy(macpass, pass);
377         /* Turn certbags into encrypted authsafe */
378         authsafe = PKCS12_pack_p7encdata(cert_pbe, cpass, -1, NULL, 0,
379                                                                  iter, bags);
380         sk_pop_free(bags, PKCS12_SAFEBAG_free);
381
382         if (!authsafe) {
383                 ERR_print_errors (bio_err);
384                 goto end;
385         }
386
387         safes = sk_new (NULL);
388         sk_push (safes, (char *)authsafe);
389
390         /* Make a shrouded key bag */
391         p8 = EVP_PKEY2PKCS8 (key);
392         EVP_PKEY_free(key);
393         if(keytype) PKCS8_add_keyusage(p8, keytype);
394         bag = PKCS12_MAKE_SHKEYBAG(NID_pbe_WithSHA1And3_Key_TripleDES_CBC,
395                         cpass, -1, NULL, 0, iter, p8);
396         PKCS8_PRIV_KEY_INFO_free(p8);
397         if (name) PKCS12_add_friendlyname (bag, name, -1);
398         PKCS12_add_localkeyid (bag, keyid, keyidlen);
399         bags = sk_new(NULL);
400         sk_push (bags, (char *)bag);
401         /* Turn it into unencrypted safe bag */
402         authsafe = PKCS12_pack_p7data (bags);
403         sk_pop_free(bags, PKCS12_SAFEBAG_free);
404         sk_push (safes, (char *)authsafe);
405
406         p12 = PKCS12_init (NID_pkcs7_data);
407
408         M_PKCS12_pack_authsafes (p12, safes);
409
410         sk_pop_free(safes, PKCS7_free);
411
412         PKCS12_set_mac (p12, mpass, -1, NULL, 0, maciter, NULL);
413
414         i2d_PKCS12_bio (out, p12);
415
416         PKCS12_free(p12);
417
418         ret = 0;
419         goto end;
420         
421     }
422
423     if (!(p12 = d2i_PKCS12_bio (in, NULL))) {
424         ERR_print_errors(bio_err);
425         goto end;
426     }
427
428     if(!noprompt && EVP_read_pw_string(pass, 50, "Enter Import Password:", 0)) {
429         BIO_printf (bio_err, "Can't read Password\n");
430         goto end;
431     }
432
433     if (!twopass) strcpy(macpass, pass);
434
435     if (options & INFO) BIO_printf (bio_err, "MAC Iteration %ld\n", p12->mac->iter ? ASN1_INTEGER_get (p12->mac->iter) : 1);
436     if(macver) {
437         if (!PKCS12_verify_mac (p12, mpass, -1)) {
438             BIO_printf (bio_err, "Mac verify errror: invalid password?\n");
439             ERR_print_errors (bio_err);
440             goto end;
441         } else BIO_printf (bio_err, "MAC verified OK\n");
442     }
443
444     if (!dump_certs_keys_p12 (out, p12, cpass, -1, options)) {
445         BIO_printf(bio_err, "Error outputting keys and certificates\n");
446         ERR_print_errors (bio_err);
447         goto end;
448     }
449     PKCS12_free(p12);
450     ret = 0;
451     end:
452     BIO_free(out);
453     EXIT(ret);
454 }
455
456 int dump_certs_keys_p12 (BIO *out, PKCS12 *p12, char *pass,
457              int passlen, int options)
458 {
459         STACK *asafes, *bags;
460         int i, bagnid;
461         PKCS7 *p7;
462         if (!( asafes = M_PKCS12_unpack_authsafes (p12))) return 0;
463         for (i = 0; i < sk_num (asafes); i++) {
464                 p7 = (PKCS7 *) sk_value (asafes, i);
465                 bagnid = OBJ_obj2nid (p7->type);
466                 if (bagnid == NID_pkcs7_data) {
467                         bags = M_PKCS12_unpack_p7data (p7);
468                         if (options & INFO) BIO_printf (bio_err, "PKCS7 Data\n");
469                 } else if (bagnid == NID_pkcs7_encrypted) {
470                         if (options & INFO) {
471                                 BIO_printf (bio_err, "PKCS7 Encrypted data: ");
472                                 alg_print (bio_err, 
473                                         p7->d.encrypted->enc_data->algorithm);
474                         }
475                         bags = M_PKCS12_unpack_p7encdata (p7, pass, passlen);
476                 } else continue;
477                 if (!bags) return 0;
478                 if (!dump_certs_pkeys_bags (out, bags, pass, passlen, 
479                                                          options)) {
480                         sk_pop_free (bags, PKCS12_SAFEBAG_free);
481                         return 0;
482                 }
483                 sk_pop_free (bags, PKCS12_SAFEBAG_free);
484         }
485         sk_pop_free (asafes, PKCS7_free);
486         return 1;
487 }
488
489 int dump_certs_pkeys_bags (BIO *out, STACK *bags, char *pass,
490              int passlen, int options)
491 {
492         int i;
493         for (i = 0; i < sk_num (bags); i++) {
494                 if (!dump_certs_pkeys_bag (out,
495                          (PKCS12_SAFEBAG *)sk_value (bags, i), pass, passlen,
496                                                         options)) return 0;
497         }
498         return 1;
499 }
500
501 int dump_certs_pkeys_bag (BIO *out, PKCS12_SAFEBAG *bag, char *pass,
502              int passlen, int options)
503 {
504         EVP_PKEY *pkey;
505         PKCS8_PRIV_KEY_INFO *p8;
506         X509 *x509;
507         
508         switch (M_PKCS12_bag_type(bag))
509         {
510         case NID_keyBag:
511                 if (options & INFO) BIO_printf (bio_err, "Key bag\n");
512                 if (options & NOKEYS) return 1;
513                 print_attribs (out, bag->attrib, "Bag Attributes");
514                 p8 = bag->value.keybag;
515                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
516                 print_attribs (out, p8->attributes, "Key Attributes");
517                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, NULL);
518                 EVP_PKEY_free(pkey);
519         break;
520
521         case NID_pkcs8ShroudedKeyBag:
522                 if (options & INFO) {
523                         BIO_printf (bio_err, "Shrouded Keybag: ");
524                         alg_print (bio_err, bag->value.shkeybag->algor);
525                 }
526                 if (options & NOKEYS) return 1;
527                 print_attribs (out, bag->attrib, "Bag Attributes");
528                 if (!(p8 = M_PKCS12_decrypt_skey (bag, pass, passlen)))
529                                 return 0;
530                 if (!(pkey = EVP_PKCS82PKEY (p8))) return 0;
531                 print_attribs (out, p8->attributes, "Key Attributes");
532                 PKCS8_PRIV_KEY_INFO_free(p8);
533                 PEM_write_bio_PrivateKey (out, pkey, enc, NULL, 0, NULL, NULL);
534                 EVP_PKEY_free(pkey);
535         break;
536
537         case NID_certBag:
538                 if (options & INFO) BIO_printf (bio_err, "Certificate bag\n");
539                 if (options & NOCERTS) return 1;
540                 if (PKCS12_get_attr(bag, NID_localKeyID)) {
541                         if (options & CACERTS) return 1;
542                 } else if (options & CLCERTS) return 1;
543                 print_attribs (out, bag->attrib, "Bag Attributes");
544                 if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate )
545                                                                  return 1;
546                 if (!(x509 = M_PKCS12_certbag2x509(bag))) return 0;
547                 dump_cert_text (out, x509);
548                 PEM_write_bio_X509 (out, x509);
549                 X509_free(x509);
550         break;
551
552         case NID_safeContentsBag:
553                 if (options & INFO) BIO_printf (bio_err, "Safe Contents bag\n");
554                 print_attribs (out, bag->attrib, "Bag Attributes");
555                 return dump_certs_pkeys_bags (out, bag->value.safes, pass,
556                                                             passlen, options);
557                                         
558         default:
559                 BIO_printf (bio_err, "Warning unsupported bag type: ");
560                 i2a_ASN1_OBJECT (bio_err, bag->type);
561                 BIO_printf (bio_err, "\n");
562                 return 1;
563         break;
564         }
565         return 1;
566 }
567
568 /* Given a single certificate return a verified chain or NULL if error */
569
570 /* Hope this is OK .... */
571
572 int get_cert_chain (X509 *cert, STACK_OF(X509) **chain)
573 {
574         X509_STORE *store;
575         X509_STORE_CTX store_ctx;
576         STACK_OF(X509) *chn;
577         int i;
578         X509 *x;
579         store = X509_STORE_new ();
580         X509_STORE_set_default_paths (store);
581         X509_STORE_CTX_init(&store_ctx, store, cert, NULL);
582         if (X509_verify_cert(&store_ctx) <= 0) {
583                 i = X509_STORE_CTX_get_error (&store_ctx);
584                 goto err;
585         }
586         chn =  sk_X509_dup(X509_STORE_CTX_get_chain (&store_ctx));
587         for (i = 0; i < sk_X509_num(chn); i++) {
588                 x = sk_X509_value(chn, i);
589                 CRYPTO_add(&x->references,1,CRYPTO_LOCK_X509);
590         }
591         i = 0;
592         *chain = chn;
593 err:
594         X509_STORE_CTX_cleanup(&store_ctx);
595         X509_STORE_free(store);
596         
597         return i;
598 }       
599
600 int alg_print (BIO *x, X509_ALGOR *alg)
601 {
602         PBEPARAM *pbe;
603         unsigned char *p;
604         p = alg->parameter->value.sequence->data;
605         pbe = d2i_PBEPARAM (NULL, &p, alg->parameter->value.sequence->length);
606         BIO_printf (bio_err, "%s, Iteration %d\n", 
607         OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)), ASN1_INTEGER_get(pbe->iter));
608         PBEPARAM_free (pbe);
609         return 0;
610 }
611
612 /* Load all certificates from a given file */
613
614 int cert_load(BIO *in, STACK_OF(X509) *sk)
615 {
616         int ret;
617         X509 *cert;
618         ret = 0;
619         while((cert = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
620                 ret = 1;
621                 sk_X509_push(sk, cert);
622         }
623         if(ret) ERR_clear_error();
624         return ret;
625 }
626
627 /* Generalised attribute print: handle PKCS#8 and bag attributes */
628
629 int print_attribs (BIO *out, STACK_OF(X509_ATTRIBUTE) *attrlst, char *name)
630 {
631         X509_ATTRIBUTE *attr;
632         ASN1_TYPE *av;
633         char *value;
634         int i, attr_nid;
635         if(!attrlst) {
636                 BIO_printf(out, "%s: <No Attributes>\n", name);
637                 return 1;
638         }
639         if(!sk_X509_ATTRIBUTE_num(attrlst)) {
640                 BIO_printf(out, "%s: <Empty Attributes>\n", name);
641                 return 1;
642         }
643         BIO_printf(out, "%s\n", name);
644         for(i = 0; i < sk_X509_ATTRIBUTE_num(attrlst); i++) {
645                 attr = sk_X509_ATTRIBUTE_value(attrlst, i);
646                 attr_nid = OBJ_obj2nid(attr->object);
647                 BIO_printf(out, "    ");
648                 if(attr_nid == NID_undef) {
649                         i2a_ASN1_OBJECT (out, attr->object);
650                         BIO_printf(out, ": ");
651                 } else BIO_printf(out, "%s: ", OBJ_nid2ln(attr_nid));
652
653                 if(sk_ASN1_TYPE_num(attr->value.set)) {
654                         av = sk_ASN1_TYPE_value(attr->value.set, 0);
655                         switch(av->type) {
656                                 case V_ASN1_BMPSTRING:
657                                 value = uni2asc(av->value.bmpstring->data,
658                                                av->value.bmpstring->length);
659                                 BIO_printf(out, "%s\n", value);
660                                 Free(value);
661                                 break;
662
663                                 case V_ASN1_OCTET_STRING:
664                                 hex_prin(out, av->value.bit_string->data,
665                                         av->value.bit_string->length);
666                                 BIO_printf(out, "\n");  
667                                 break;
668
669                                 case V_ASN1_BIT_STRING:
670                                 hex_prin(out, av->value.octet_string->data,
671                                         av->value.octet_string->length);
672                                 BIO_printf(out, "\n");  
673                                 break;
674
675                                 default:
676                                         BIO_printf(out, "<Unsupported tag %d>\n", av->type);
677                                 break;
678                         }
679                 } else BIO_printf(out, "<No Values>\n");
680         }
681         return 1;
682 }
683
684 void hex_prin(BIO *out, unsigned char *buf, int len)
685 {
686         int i;
687         for (i = 0; i < len; i++) BIO_printf (out, "%02X ", buf[i]);
688 }
689
690 #endif