pkcs7.c revision 59191
155714Skris/* apps/pkcs7.c */
255714Skris/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
355714Skris * All rights reserved.
455714Skris *
555714Skris * This package is an SSL implementation written
655714Skris * by Eric Young (eay@cryptsoft.com).
755714Skris * The implementation was written so as to conform with Netscapes SSL.
855714Skris *
955714Skris * This library is free for commercial and non-commercial use as long as
1055714Skris * the following conditions are aheared to.  The following conditions
1155714Skris * apply to all code found in this distribution, be it the RC4, RSA,
1255714Skris * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
1355714Skris * included with this distribution is covered by the same copyright terms
1455714Skris * except that the holder is Tim Hudson (tjh@cryptsoft.com).
1555714Skris *
1655714Skris * Copyright remains Eric Young's, and as such any Copyright notices in
1755714Skris * the code are not to be removed.
1855714Skris * If this package is used in a product, Eric Young should be given attribution
1955714Skris * as the author of the parts of the library used.
2055714Skris * This can be in the form of a textual message at program startup or
2155714Skris * in documentation (online or textual) provided with the package.
2255714Skris *
2355714Skris * Redistribution and use in source and binary forms, with or without
2455714Skris * modification, are permitted provided that the following conditions
2555714Skris * are met:
2655714Skris * 1. Redistributions of source code must retain the copyright
2755714Skris *    notice, this list of conditions and the following disclaimer.
2855714Skris * 2. Redistributions in binary form must reproduce the above copyright
2955714Skris *    notice, this list of conditions and the following disclaimer in the
3055714Skris *    documentation and/or other materials provided with the distribution.
3155714Skris * 3. All advertising materials mentioning features or use of this software
3255714Skris *    must display the following acknowledgement:
3355714Skris *    "This product includes cryptographic software written by
3455714Skris *     Eric Young (eay@cryptsoft.com)"
3555714Skris *    The word 'cryptographic' can be left out if the rouines from the library
3655714Skris *    being used are not cryptographic related :-).
3755714Skris * 4. If you include any Windows specific code (or a derivative thereof) from
3855714Skris *    the apps directory (application code) you must include an acknowledgement:
3955714Skris *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
4055714Skris *
4155714Skris * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
4255714Skris * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4355714Skris * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4455714Skris * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
4555714Skris * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4655714Skris * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4755714Skris * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4855714Skris * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4955714Skris * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
5055714Skris * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
5155714Skris * SUCH DAMAGE.
5255714Skris *
5355714Skris * The licence and distribution terms for any publically available version or
5455714Skris * derivative of this code cannot be changed.  i.e. this code cannot simply be
5555714Skris * copied and put under another distribution licence
5655714Skris * [including the GNU Public Licence.]
5755714Skris */
5855714Skris
5955714Skris#include <stdio.h>
6055714Skris#include <stdlib.h>
6155714Skris#include <string.h>
6255714Skris#include <time.h>
6355714Skris#include "apps.h"
6455714Skris#include <openssl/err.h>
6555714Skris#include <openssl/objects.h>
6655714Skris#include <openssl/evp.h>
6755714Skris#include <openssl/x509.h>
6855714Skris#include <openssl/pkcs7.h>
6955714Skris#include <openssl/pem.h>
7055714Skris
7155714Skris#undef PROG
7255714Skris#define PROG	pkcs7_main
7355714Skris
7459191Skris/* -inform arg	- input format - default PEM (DER or PEM)
7555714Skris * -outform arg - output format - default PEM
7655714Skris * -in arg	- input file - default stdin
7755714Skris * -out arg	- output file - default stdout
7855714Skris * -print_certs
7955714Skris */
8055714Skris
8159191Skrisint MAIN(int, char **);
8259191Skris
8355714Skrisint MAIN(int argc, char **argv)
8455714Skris	{
8555714Skris	PKCS7 *p7=NULL;
8655714Skris	int i,badops=0;
8755714Skris	BIO *in=NULL,*out=NULL;
8855714Skris	int informat,outformat;
8959191Skris	char *infile,*outfile,*prog;
9059191Skris	int print_certs=0,text=0,noout=0;
9155714Skris	int ret=0;
9255714Skris
9355714Skris	apps_startup();
9455714Skris
9555714Skris	if (bio_err == NULL)
9655714Skris		if ((bio_err=BIO_new(BIO_s_file())) != NULL)
9755714Skris			BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
9855714Skris
9955714Skris	infile=NULL;
10055714Skris	outfile=NULL;
10155714Skris	informat=FORMAT_PEM;
10255714Skris	outformat=FORMAT_PEM;
10355714Skris
10455714Skris	prog=argv[0];
10555714Skris	argc--;
10655714Skris	argv++;
10755714Skris	while (argc >= 1)
10855714Skris		{
10955714Skris		if 	(strcmp(*argv,"-inform") == 0)
11055714Skris			{
11155714Skris			if (--argc < 1) goto bad;
11255714Skris			informat=str2fmt(*(++argv));
11355714Skris			}
11455714Skris		else if (strcmp(*argv,"-outform") == 0)
11555714Skris			{
11655714Skris			if (--argc < 1) goto bad;
11755714Skris			outformat=str2fmt(*(++argv));
11855714Skris			}
11955714Skris		else if (strcmp(*argv,"-in") == 0)
12055714Skris			{
12155714Skris			if (--argc < 1) goto bad;
12255714Skris			infile= *(++argv);
12355714Skris			}
12455714Skris		else if (strcmp(*argv,"-out") == 0)
12555714Skris			{
12655714Skris			if (--argc < 1) goto bad;
12755714Skris			outfile= *(++argv);
12855714Skris			}
12959191Skris		else if (strcmp(*argv,"-noout") == 0)
13059191Skris			noout=1;
13159191Skris		else if (strcmp(*argv,"-text") == 0)
13259191Skris			text=1;
13355714Skris		else if (strcmp(*argv,"-print_certs") == 0)
13455714Skris			print_certs=1;
13555714Skris		else
13655714Skris			{
13755714Skris			BIO_printf(bio_err,"unknown option %s\n",*argv);
13855714Skris			badops=1;
13955714Skris			break;
14055714Skris			}
14155714Skris		argc--;
14255714Skris		argv++;
14355714Skris		}
14455714Skris
14555714Skris	if (badops)
14655714Skris		{
14755714Skrisbad:
14855714Skris		BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
14955714Skris		BIO_printf(bio_err,"where options are\n");
15059191Skris		BIO_printf(bio_err," -inform arg   input format - DER or PEM\n");
15159191Skris		BIO_printf(bio_err," -outform arg  output format - DER or PEM\n");
15255714Skris		BIO_printf(bio_err," -in arg       input file\n");
15355714Skris		BIO_printf(bio_err," -out arg      output file\n");
15455714Skris		BIO_printf(bio_err," -print_certs  print any certs or crl in the input\n");
15559191Skris		BIO_printf(bio_err," -text         print full details of certificates\n");
15659191Skris		BIO_printf(bio_err," -noout        don't output encoded data\n");
15755714Skris		EXIT(1);
15855714Skris		}
15955714Skris
16055714Skris	ERR_load_crypto_strings();
16155714Skris
16255714Skris	in=BIO_new(BIO_s_file());
16355714Skris	out=BIO_new(BIO_s_file());
16455714Skris	if ((in == NULL) || (out == NULL))
16555714Skris		{
16655714Skris		ERR_print_errors(bio_err);
16755714Skris                goto end;
16855714Skris                }
16955714Skris
17055714Skris	if (infile == NULL)
17155714Skris		BIO_set_fp(in,stdin,BIO_NOCLOSE);
17255714Skris	else
17355714Skris		{
17455714Skris		if (BIO_read_filename(in,infile) <= 0)
17555714Skris		if (in == NULL)
17655714Skris			{
17755714Skris			perror(infile);
17855714Skris			goto end;
17955714Skris			}
18055714Skris		}
18155714Skris
18255714Skris	if	(informat == FORMAT_ASN1)
18355714Skris		p7=d2i_PKCS7_bio(in,NULL);
18455714Skris	else if (informat == FORMAT_PEM)
18555714Skris		p7=PEM_read_bio_PKCS7(in,NULL,NULL,NULL);
18655714Skris	else
18755714Skris		{
18855714Skris		BIO_printf(bio_err,"bad input format specified for pkcs7 object\n");
18955714Skris		goto end;
19055714Skris		}
19155714Skris	if (p7 == NULL)
19255714Skris		{
19355714Skris		BIO_printf(bio_err,"unable to load PKCS7 object\n");
19455714Skris		ERR_print_errors(bio_err);
19555714Skris		goto end;
19655714Skris		}
19755714Skris
19855714Skris	if (outfile == NULL)
19955714Skris		BIO_set_fp(out,stdout,BIO_NOCLOSE);
20055714Skris	else
20155714Skris		{
20255714Skris		if (BIO_write_filename(out,outfile) <= 0)
20355714Skris			{
20455714Skris			perror(outfile);
20555714Skris			goto end;
20655714Skris			}
20755714Skris		}
20855714Skris
20955714Skris	if (print_certs)
21055714Skris		{
21155714Skris		STACK_OF(X509) *certs=NULL;
21255714Skris		STACK_OF(X509_CRL) *crls=NULL;
21355714Skris
21455714Skris		i=OBJ_obj2nid(p7->type);
21555714Skris		switch (i)
21655714Skris			{
21755714Skris		case NID_pkcs7_signed:
21855714Skris			certs=p7->d.sign->cert;
21955714Skris			crls=p7->d.sign->crl;
22055714Skris			break;
22155714Skris		case NID_pkcs7_signedAndEnveloped:
22255714Skris			certs=p7->d.signed_and_enveloped->cert;
22355714Skris			crls=p7->d.signed_and_enveloped->crl;
22455714Skris			break;
22555714Skris		default:
22655714Skris			break;
22755714Skris			}
22855714Skris
22955714Skris		if (certs != NULL)
23055714Skris			{
23155714Skris			X509 *x;
23255714Skris
23355714Skris			for (i=0; i<sk_X509_num(certs); i++)
23455714Skris				{
23555714Skris				x=sk_X509_value(certs,i);
23659191Skris				if(text) X509_print(out, x);
23759191Skris				else dump_cert_text(out, x);
23855714Skris
23959191Skris				if(!noout) PEM_write_bio_X509(out,x);
24055714Skris				BIO_puts(out,"\n");
24155714Skris				}
24255714Skris			}
24355714Skris		if (crls != NULL)
24455714Skris			{
24555714Skris			X509_CRL *crl;
24655714Skris
24755714Skris			for (i=0; i<sk_X509_CRL_num(crls); i++)
24855714Skris				{
24955714Skris				crl=sk_X509_CRL_value(crls,i);
25055714Skris
25159191Skris				X509_CRL_print(out, crl);
25255714Skris
25359191Skris				if(!noout)PEM_write_bio_X509_CRL(out,crl);
25455714Skris				BIO_puts(out,"\n");
25555714Skris				}
25655714Skris			}
25755714Skris
25855714Skris		ret=0;
25955714Skris		goto end;
26055714Skris		}
26155714Skris
26259191Skris	if(!noout) {
26359191Skris		if 	(outformat == FORMAT_ASN1)
26459191Skris			i=i2d_PKCS7_bio(out,p7);
26559191Skris		else if (outformat == FORMAT_PEM)
26659191Skris			i=PEM_write_bio_PKCS7(out,p7);
26759191Skris		else	{
26859191Skris			BIO_printf(bio_err,"bad output format specified for outfile\n");
26959191Skris			goto end;
27059191Skris			}
27155714Skris
27259191Skris		if (!i)
27359191Skris			{
27459191Skris			BIO_printf(bio_err,"unable to write pkcs7 object\n");
27559191Skris			ERR_print_errors(bio_err);
27659191Skris			goto end;
27759191Skris			}
27859191Skris	}
27955714Skris	ret=0;
28055714Skrisend:
28155714Skris	if (p7 != NULL) PKCS7_free(p7);
28255714Skris	if (in != NULL) BIO_free(in);
28355714Skris	if (out != NULL) BIO_free(out);
28455714Skris	EXIT(ret);
28555714Skris	}
286