os/ossrv/ssl/tsrc/BC/libcrypto/topenssl/src/dgst.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /* apps/dgst.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 <string.h>
    61 #include <stdlib.h>
    62 #include "apps.h"
    63 #include <openssl/bio.h>
    64 #include <openssl/err.h>
    65 #include <openssl/evp.h>
    66 #include <openssl/objects.h>
    67 #include <openssl/x509.h>
    68 #include <openssl/pem.h>
    69 
    70 #undef BUFSIZE
    71 #define BUFSIZE	1024*8
    72 
    73 #undef PROG
    74 #define PROG	dgst_main
    75 
    76 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
    77 	  EVP_PKEY *key, unsigned char *sigin, int siglen, const char *title,
    78 	  const char *file);
    79 
    80 
    81 int MAIN(int, char **);
    82 
    83 int MAIN(int argc, char **argv)
    84 	{
    85 	ENGINE *e = NULL;
    86 	unsigned char *buf=NULL;
    87 	int i,err=0;
    88 	const EVP_MD *md=NULL,*m;
    89 	BIO *in=NULL,*inp;
    90 	BIO *bmd=NULL;
    91 	BIO *out = NULL;
    92 	const char *name;
    93 #define PROG_NAME_SIZE  39
    94 	char pname[PROG_NAME_SIZE+1];
    95 	int separator=0;
    96 	int debug=0;
    97 	int keyform=FORMAT_PEM;
    98 	const char *outfile = NULL, *keyfile = NULL;
    99 	const char *sigfile = NULL, *randfile = NULL;
   100 	int out_bin = -1, want_pub = 0, do_verify = 0;
   101 	EVP_PKEY *sigkey = NULL;
   102 	unsigned char *sigbuf = NULL;
   103 	int siglen = 0;
   104 	char *passargin = NULL, *passin = NULL;
   105 #ifndef OPENSSL_NO_ENGINE
   106 	char *engine=NULL;
   107 #endif
   108 
   109 	apps_startup();
   110 
   111 	if ((buf=(unsigned char *)OPENSSL_malloc(BUFSIZE)) == NULL)
   112 		{
   113 		BIO_printf(bio_err,"out of memory\n");
   114 		goto end;
   115 		}
   116 	if (bio_err == NULL)
   117 		if ((bio_err=BIO_new(BIO_s_file())) != NULL)
   118 			BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
   119 
   120 			
   121 
   122 	if (!load_config(bio_err, NULL))
   123 		goto end;
   124 
   125 	/* first check the program name */
   126 	program_name(argv[0],pname,sizeof pname);
   127 
   128 	md=EVP_get_digestbyname(pname);
   129 
   130 	argc--;
   131 	argv++;
   132 	while (argc > 0)
   133 		{
   134 		if ((*argv)[0] != '-') break;
   135 		if (strcmp(*argv,"-c") == 0)
   136 			separator=1;
   137 		else if (strcmp(*argv,"-rand") == 0)
   138 			{
   139 			if (--argc < 1) break;
   140 			randfile=*(++argv);
   141 			}
   142 		else if (strcmp(*argv,"-out") == 0)
   143 			{
   144 			if (--argc < 1) break;
   145 			outfile=*(++argv);
   146 			}
   147 		else if (strcmp(*argv,"-sign") == 0)
   148 			{
   149 			if (--argc < 1) break;
   150 			keyfile=*(++argv);
   151 			}
   152 		else if (!strcmp(*argv,"-passin"))
   153 			{
   154 			if (--argc < 1)
   155 				break;
   156 			passargin=*++argv;
   157 			}
   158 		else if (strcmp(*argv,"-verify") == 0)
   159 			{
   160 			if (--argc < 1) break;
   161 			keyfile=*(++argv);
   162 			want_pub = 1;
   163 			do_verify = 1;
   164 			}
   165 		else if (strcmp(*argv,"-prverify") == 0)
   166 			{
   167 			if (--argc < 1) break;
   168 			keyfile=*(++argv);
   169 			do_verify = 1;
   170 			}
   171 		else if (strcmp(*argv,"-signature") == 0)
   172 			{
   173 			if (--argc < 1) break;
   174 			sigfile=*(++argv);
   175 			}
   176 		else if (strcmp(*argv,"-keyform") == 0)
   177 			{
   178 			if (--argc < 1) break;
   179 			keyform=str2fmt(*(++argv));
   180 			}
   181 #ifndef OPENSSL_NO_ENGINE
   182 		else if (strcmp(*argv,"-engine") == 0)
   183 			{
   184 			if (--argc < 1) break;
   185 			engine= *(++argv);
   186 			}
   187 #endif
   188 		else if (strcmp(*argv,"-hex") == 0)
   189 			out_bin = 0;
   190 		else if (strcmp(*argv,"-binary") == 0)
   191 			out_bin = 1;
   192 		else if (strcmp(*argv,"-d") == 0)
   193 			debug=1;
   194 		else if ((m=EVP_get_digestbyname(&((*argv)[1]))) != NULL)
   195 			md=m;
   196 		else
   197 			break;
   198 		argc--;
   199 		argv++;
   200 		}
   201 
   202 	if (md == NULL)
   203 		md=EVP_md5();
   204 
   205 	if(do_verify && !sigfile) {
   206 		BIO_printf(bio_err, "No signature to verify: use the -signature option\n");
   207 		err = 1; 
   208 		goto end;
   209 	}
   210 
   211 	if ((argc > 0) && (argv[0][0] == '-')) /* bad option */
   212 		{
   213 		BIO_printf(bio_err,"unknown option '%s'\n",*argv);
   214 		BIO_printf(bio_err,"options are\n");
   215 		BIO_printf(bio_err,"-c              to output the digest with separating colons\n");
   216 		BIO_printf(bio_err,"-d              to output debug info\n");
   217 		BIO_printf(bio_err,"-hex            output as hex dump\n");
   218 		BIO_printf(bio_err,"-binary         output in binary form\n");
   219 		BIO_printf(bio_err,"-sign   file    sign digest using private key in file\n");
   220 		BIO_printf(bio_err,"-verify file    verify a signature using public key in file\n");
   221 		BIO_printf(bio_err,"-prverify file  verify a signature using private key in file\n");
   222 		BIO_printf(bio_err,"-keyform arg    key file format (PEM or ENGINE)\n");
   223 		BIO_printf(bio_err,"-signature file signature to verify\n");
   224 		BIO_printf(bio_err,"-binary         output in binary form\n");
   225 #ifndef OPENSSL_NO_ENGINE
   226 		BIO_printf(bio_err,"-engine e       use engine e, possibly a hardware device.\n");
   227 #endif
   228 
   229 		BIO_printf(bio_err,"-%3s to use the %s message digest algorithm (default)\n",
   230 			LN_md5,LN_md5);
   231 		BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
   232 			LN_md4,LN_md4);
   233 		BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
   234 			LN_md2,LN_md2);
   235 #ifndef OPENSSL_NO_SHA
   236 		BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
   237 			LN_sha1,LN_sha1);
   238 		BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
   239 			LN_sha,LN_sha);
   240 #ifndef OPENSSL_NO_SHA256
   241 		BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
   242 			LN_sha256,LN_sha256);
   243 #endif
   244 #ifndef OPENSSL_NO_SHA512
   245 		BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
   246 			LN_sha512,LN_sha512);
   247 #endif
   248 #endif
   249 		BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
   250 			LN_mdc2,LN_mdc2);
   251 		BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n",
   252 			LN_ripemd160,LN_ripemd160);
   253 		err=1;
   254 		goto end;
   255 		}
   256 
   257 #ifndef OPENSSL_NO_ENGINE
   258         e = setup_engine(bio_err, engine, 0);
   259 #endif
   260 
   261 	in=BIO_new(BIO_s_file());
   262 	bmd=BIO_new(BIO_f_md());
   263 	if (debug)
   264 		{
   265 		BIO_set_callback(in,BIO_debug_callback);
   266 		/* needed for windows 3.1 */
   267 		BIO_set_callback_arg(in,(char *)bio_err);
   268 		}
   269 
   270 	if(!app_passwd(bio_err, passargin, NULL, &passin, NULL))
   271 		{
   272 		BIO_printf(bio_err, "Error getting password\n");
   273 		goto end;
   274 		}
   275 
   276 	if ((in == NULL) || (bmd == NULL))
   277 		{
   278 		ERR_print_errors(bio_err);
   279 		goto end;
   280 		}
   281 
   282 	if(out_bin == -1) {
   283 		if(keyfile) out_bin = 1;
   284 		else out_bin = 0;
   285 	}
   286 
   287 	if(randfile)
   288 		app_RAND_load_file(randfile, bio_err, 0);
   289 
   290 	if(outfile) {
   291 		if(out_bin)
   292 			out = BIO_new_file(outfile, "wb");
   293 		else    out = BIO_new_file(outfile, "w");
   294 	} else {
   295 
   296 		out = BIO_new_fp(stdout, BIO_NOCLOSE);
   297 #ifdef OPENSSL_SYS_VMS
   298 		{
   299 		BIO *tmpbio = BIO_new(BIO_f_linebuffer());
   300 		out = BIO_push(tmpbio, out);
   301 		}
   302 #endif
   303 	}
   304 
   305 	if(!out) {
   306 		BIO_printf(bio_err, "Error opening output file %s\n", 
   307 					outfile ? outfile : "(stdout)");
   308 		ERR_print_errors(bio_err);
   309 		goto end;
   310 	}
   311 
   312 	if(keyfile)
   313 		{
   314 		if (want_pub)
   315 			sigkey = load_pubkey(bio_err, keyfile, keyform, 0, NULL,
   316 				e, "key file");
   317 		else
   318 			sigkey = load_key(bio_err, keyfile, keyform, 0, passin,
   319 				e, "key file");
   320 		if (!sigkey)
   321 			{
   322 			/* load_[pub]key() has already printed an appropriate
   323 			   message */
   324 			goto end;
   325 			}
   326 		}
   327 
   328 	if(sigfile && sigkey) {
   329 		BIO *sigbio;
   330 		sigbio = BIO_new_file(sigfile, "rb");
   331 		siglen = EVP_PKEY_size(sigkey);
   332 		sigbuf = OPENSSL_malloc(siglen);
   333 		if(!sigbio) {
   334 			BIO_printf(bio_err, "Error opening signature file %s\n",
   335 								sigfile);
   336 			ERR_print_errors(bio_err);
   337 			goto end;
   338 		}
   339 		siglen = BIO_read(sigbio, sigbuf, siglen);
   340 		BIO_free(sigbio);
   341 		if(siglen <= 0) {
   342 			BIO_printf(bio_err, "Error reading signature file %s\n",
   343 								sigfile);
   344 			ERR_print_errors(bio_err);
   345 			goto end;
   346 		}
   347 	}
   348 		
   349 
   350 
   351 	/* we use md as a filter, reading from 'in' */
   352 	if (!BIO_set_md(bmd,md))
   353 		{
   354 		BIO_printf(bio_err, "Error setting digest %s\n", pname);
   355 		ERR_print_errors(bio_err);
   356 		goto end;
   357 		}
   358 		
   359 	inp=BIO_push(bmd,in);
   360 
   361 	if (argc == 0)
   362 		{
   363 
   364 		BIO_set_fp(in,stdin,BIO_NOCLOSE);
   365   	err=do_fp(out, buf,inp,separator, out_bin, sigkey, sigbuf,
   366 			  siglen,"","(stdin)");
   367 		}
   368 	else
   369 		{
   370 		name=OBJ_nid2sn(md->type);
   371 		for (i=0; i<argc; i++)
   372 			{
   373 			char *tmp,*tofree=NULL;
   374 			int r;
   375 
   376 			if (BIO_read_filename(in,argv[i]) <= 0)
   377 				{
   378 				perror(argv[i]);
   379 				err++;
   380 				continue;
   381 				}
   382 			if(!out_bin)
   383 				{
   384 				size_t len = strlen(name)+strlen(argv[i])+5;
   385 				tmp=tofree=OPENSSL_malloc(len);
   386 				BIO_snprintf(tmp,len,"%s(%s)= ",name,argv[i]);
   387 				}
   388 			else
   389 				tmp="";
   390 			r=do_fp(out,buf,inp,separator,out_bin,sigkey,sigbuf,
   391 				siglen,tmp,argv[i]);
   392 			if(r)
   393 			    err=r;
   394 			if(tofree)
   395 				OPENSSL_free(tofree);
   396 			(void)BIO_reset(bmd);
   397 			}
   398 		}
   399 end:
   400 	if (buf != NULL)
   401 		{
   402 		OPENSSL_cleanse(buf,BUFSIZE);
   403 		OPENSSL_free(buf);
   404 		}
   405 	if (in != NULL) BIO_free(in);
   406 	if (passin)
   407 		OPENSSL_free(passin);
   408 	BIO_free_all(out);
   409 	EVP_PKEY_free(sigkey);
   410 	if(sigbuf) OPENSSL_free(sigbuf);
   411 	if (bmd != NULL) BIO_free(bmd);
   412 	apps_shutdown();
   413 	OPENSSL_EXIT(err);
   414 	}
   415 
   416 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
   417 	  EVP_PKEY *key, unsigned char *sigin, int siglen, const char *title,
   418 	  const char *file)
   419 	{
   420 	int len;
   421 	int i;
   422 
   423 	for (;;)
   424 		{
   425 		i=BIO_read(bp,(char *)buf,BUFSIZE);
   426 		if(i < 0)
   427 			{
   428 			BIO_printf(bio_err, "Read Error in %s\n",file);
   429 			ERR_print_errors(bio_err);
   430 			return 1;
   431 			}
   432 		if (i == 0) break;
   433 		}
   434 	if(sigin)
   435 		{
   436 		EVP_MD_CTX *ctx;
   437 		BIO_get_md_ctx(bp, &ctx);
   438 		i = EVP_VerifyFinal(ctx, sigin, (unsigned int)siglen, key); 
   439 		if(i > 0)
   440 			BIO_printf(out, "Verified OK\n");
   441 		else if(i == 0)
   442 			{
   443 			BIO_printf(out, "Verification Failure\n");
   444 			return 1;
   445 			}
   446 		else
   447 			{
   448 			BIO_printf(bio_err, "Error Verifying Data\n");
   449 			ERR_print_errors(bio_err);
   450 			return 1;
   451 			}
   452 		return 0;
   453 		}
   454 	if(key)
   455 		{
   456 		EVP_MD_CTX *ctx;
   457 		BIO_get_md_ctx(bp, &ctx);
   458 		if(!EVP_SignFinal(ctx, buf, (unsigned int *)&len, key)) 
   459 			{
   460 			BIO_printf(bio_err, "Error Signing Data\n");
   461 			ERR_print_errors(bio_err);
   462 			return 1;
   463 			}
   464 		}
   465 	else
   466 		len=BIO_gets(bp,(char *)buf,BUFSIZE);
   467 
   468 	if(binout) BIO_write(out, buf, len);
   469 	else 
   470 		{
   471 		BIO_write(out,title,strlen(title));
   472 		for (i=0; i<len; i++)
   473 			{
   474 			if (sep && (i != 0))
   475 				BIO_printf(out, ":");
   476 			BIO_printf(out, "%02x",buf[i]);
   477 			}
   478 		BIO_printf(out, "\n");
   479 		}
   480 	return 0;
   481 	}
   482