Bug in apps/dgst.c.
[openssl.git] / apps / dgst.c
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 #include <openssl/hmac.h>
70
71 #undef BUFSIZE
72 #define BUFSIZE 1024*8
73
74 #undef PROG
75 #define PROG    dgst_main
76
77 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
78           EVP_PKEY *key, unsigned char *sigin, int siglen, const char *title,
79           const char *file,BIO *bmd);
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         char *hmac_key=NULL;
109         char *mac_name=NULL;
110         STACK *sigopts = NULL, *macopts = NULL;
111
112         apps_startup();
113
114         if ((buf=(unsigned char *)OPENSSL_malloc(BUFSIZE)) == NULL)
115                 {
116                 BIO_printf(bio_err,"out of memory\n");
117                 goto end;
118                 }
119         if (bio_err == NULL)
120                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
121                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
122
123         if (!load_config(bio_err, NULL))
124                 goto end;
125
126         /* first check the program name */
127         program_name(argv[0],pname,sizeof pname);
128
129         md=EVP_get_digestbyname(pname);
130
131         argc--;
132         argv++;
133         while (argc > 0)
134                 {
135                 if ((*argv)[0] != '-') break;
136                 if (strcmp(*argv,"-c") == 0)
137                         separator=1;
138                 else if (strcmp(*argv,"-rand") == 0)
139                         {
140                         if (--argc < 1) break;
141                         randfile=*(++argv);
142                         }
143                 else if (strcmp(*argv,"-out") == 0)
144                         {
145                         if (--argc < 1) break;
146                         outfile=*(++argv);
147                         }
148                 else if (strcmp(*argv,"-sign") == 0)
149                         {
150                         if (--argc < 1) break;
151                         keyfile=*(++argv);
152                         }
153                 else if (!strcmp(*argv,"-passin"))
154                         {
155                         if (--argc < 1)
156                                 break;
157                         passargin=*++argv;
158                         }
159                 else if (strcmp(*argv,"-verify") == 0)
160                         {
161                         if (--argc < 1) break;
162                         keyfile=*(++argv);
163                         want_pub = 1;
164                         do_verify = 1;
165                         }
166                 else if (strcmp(*argv,"-prverify") == 0)
167                         {
168                         if (--argc < 1) break;
169                         keyfile=*(++argv);
170                         do_verify = 1;
171                         }
172                 else if (strcmp(*argv,"-signature") == 0)
173                         {
174                         if (--argc < 1) break;
175                         sigfile=*(++argv);
176                         }
177                 else if (strcmp(*argv,"-keyform") == 0)
178                         {
179                         if (--argc < 1) break;
180                         keyform=str2fmt(*(++argv));
181                         }
182 #ifndef OPENSSL_NO_ENGINE
183                 else if (strcmp(*argv,"-engine") == 0)
184                         {
185                         if (--argc < 1) break;
186                         engine= *(++argv);
187                         e = setup_engine(bio_err, engine, 0);
188                         }
189 #endif
190                 else if (strcmp(*argv,"-hex") == 0)
191                         out_bin = 0;
192                 else if (strcmp(*argv,"-binary") == 0)
193                         out_bin = 1;
194                 else if (strcmp(*argv,"-d") == 0)
195                         debug=1;
196                 else if (!strcmp(*argv,"-hmac"))
197                         {
198                         if (--argc < 1)
199                                 break;
200                         hmac_key=*++argv;
201                         }
202                 else if (!strcmp(*argv,"-mac"))
203                         {
204                         if (--argc < 1)
205                                 break;
206                         mac_name=*++argv;
207                         }
208                 else if (strcmp(*argv,"-sigopt") == 0)
209                         {
210                         if (--argc < 1)
211                                 break;
212                         if (!sigopts)
213                                 sigopts = sk_new_null();
214                         if (!sigopts || !sk_push(sigopts, *(++argv)))
215                                 break;
216                         }
217                 else if (strcmp(*argv,"-macopt") == 0)
218                         {
219                         if (--argc < 1)
220                                 break;
221                         if (!macopts)
222                                 macopts = sk_new_null();
223                         if (!macopts || !sk_push(macopts, *(++argv)))
224                                 break;
225                         }
226                 else if ((m=EVP_get_digestbyname(&((*argv)[1]))) != NULL)
227                         md=m;
228                 else
229                         break;
230                 argc--;
231                 argv++;
232                 }
233
234         if (md == NULL)
235                 md=EVP_md5();
236
237         if(do_verify && !sigfile) {
238                 BIO_printf(bio_err, "No signature to verify: use the -signature option\n");
239                 err = 1; 
240                 goto end;
241         }
242
243         if ((argc > 0) && (argv[0][0] == '-')) /* bad option */
244                 {
245                 BIO_printf(bio_err,"unknown option '%s'\n",*argv);
246                 BIO_printf(bio_err,"options are\n");
247                 BIO_printf(bio_err,"-c              to output the digest with separating colons\n");
248                 BIO_printf(bio_err,"-d              to output debug info\n");
249                 BIO_printf(bio_err,"-hex            output as hex dump\n");
250                 BIO_printf(bio_err,"-binary         output in binary form\n");
251                 BIO_printf(bio_err,"-sign   file    sign digest using private key in file\n");
252                 BIO_printf(bio_err,"-verify file    verify a signature using public key in file\n");
253                 BIO_printf(bio_err,"-prverify file  verify a signature using private key in file\n");
254                 BIO_printf(bio_err,"-keyform arg    key file format (PEM or ENGINE)\n");
255                 BIO_printf(bio_err,"-signature file signature to verify\n");
256                 BIO_printf(bio_err,"-sigopt nm:v    signature parameter\n");
257                 BIO_printf(bio_err,"-binary         output in binary form\n");
258 #ifndef OPENSSL_NO_ENGINE
259                 BIO_printf(bio_err,"-engine e       use engine e, possibly a hardware device.\n");
260 #endif
261
262                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm (default)\n",
263                         LN_md5,LN_md5);
264                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
265                         LN_md4,LN_md4);
266                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
267                         LN_md2,LN_md2);
268 #ifndef OPENSSL_NO_SHA
269                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
270                         LN_sha1,LN_sha1);
271 #ifndef OPENSSL_NO_SHA256
272                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
273                         LN_sha224,LN_sha224);
274                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
275                         LN_sha256,LN_sha256);
276 #endif
277 #ifndef OPENSSL_NO_SHA512
278                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
279                         LN_sha384,LN_sha384);
280                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
281                         LN_sha512,LN_sha512);
282 #endif
283 #endif
284                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
285                         LN_mdc2,LN_mdc2);
286                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
287                         LN_ripemd160,LN_ripemd160);
288 #ifndef OPENSSL_NO_WHIRLPOOL
289                 BIO_printf(bio_err,"-%-14s to use the %s message digest algorithm\n",
290                         SN_whirlpool,SN_whirlpool);
291 #endif
292                 err=1;
293                 goto end;
294                 }
295
296         in=BIO_new(BIO_s_file());
297         bmd=BIO_new(BIO_f_md());
298         if (debug)
299                 {
300                 BIO_set_callback(in,BIO_debug_callback);
301                 /* needed for windows 3.1 */
302                 BIO_set_callback_arg(in,(char *)bio_err);
303                 }
304
305         if(!app_passwd(bio_err, passargin, NULL, &passin, NULL))
306                 {
307                 BIO_printf(bio_err, "Error getting password\n");
308                 goto end;
309                 }
310
311         if ((in == NULL) || (bmd == NULL))
312                 {
313                 ERR_print_errors(bio_err);
314                 goto end;
315                 }
316
317         if(out_bin == -1) {
318                 if(keyfile) out_bin = 1;
319                 else out_bin = 0;
320         }
321
322         if(randfile)
323                 app_RAND_load_file(randfile, bio_err, 0);
324
325         if(outfile) {
326                 if(out_bin)
327                         out = BIO_new_file(outfile, "wb");
328                 else    out = BIO_new_file(outfile, "w");
329         } else {
330                 out = BIO_new_fp(stdout, BIO_NOCLOSE);
331 #ifdef OPENSSL_SYS_VMS
332                 {
333                 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
334                 out = BIO_push(tmpbio, out);
335                 }
336 #endif
337         }
338
339         if(!out) {
340                 BIO_printf(bio_err, "Error opening output file %s\n", 
341                                         outfile ? outfile : "(stdout)");
342                 ERR_print_errors(bio_err);
343                 goto end;
344         }
345         if ((!!mac_name + !!keyfile + !!hmac_key) > 1)
346                 {
347                 BIO_printf(bio_err, "MAC and Signing key cannot both be specified\n");
348                 goto end;
349                 }
350
351         if(keyfile)
352                 {
353                 if (want_pub)
354                         sigkey = load_pubkey(bio_err, keyfile, keyform, 0, NULL,
355                                 e, "key file");
356                 else
357                         sigkey = load_key(bio_err, keyfile, keyform, 0, passin,
358                                 e, "key file");
359                 if (!sigkey)
360                         {
361                         /* load_[pub]key() has already printed an appropriate
362                            message */
363                         goto end;
364                         }
365                 }
366
367         if (mac_name)
368                 {
369                 EVP_PKEY_CTX *mac_ctx = NULL;
370                 int r = 0;
371                 if (!init_gen_str(bio_err, &mac_ctx, mac_name,e, 0))
372                         goto mac_end;
373                 if (macopts)
374                         {
375                         char *macopt;
376                         for (i = 0; i < sk_num(macopts); i++)
377                                 {
378                                 macopt = sk_value(macopts, i);
379                                 if (pkey_ctrl_string(mac_ctx, macopt) <= 0)
380                                         {
381                                         BIO_printf(bio_err,
382                                                 "MAC parameter error \"%s\"\n",
383                                                 macopt);
384                                         ERR_print_errors(bio_err);
385                                         goto mac_end;
386                                         }
387                                 }
388                         }
389                 if (EVP_PKEY_keygen(mac_ctx, &sigkey) <= 0)
390                         {
391                         BIO_puts(bio_err, "Error generating key\n");
392                         ERR_print_errors(bio_err);
393                         goto mac_end;
394                         }
395                 r = 1;
396                 mac_end:
397                 if (mac_ctx)
398                         EVP_PKEY_CTX_free(mac_ctx);
399                 if (r == 0)
400                         goto end;
401                 }
402
403         if (hmac_key)
404                 {
405                 sigkey = EVP_PKEY_new_mac_key(EVP_PKEY_HMAC, e,
406                                         (unsigned char *)hmac_key, -1);
407                 if (!sigkey)
408                         goto end;
409                 }
410
411         if (sigkey)
412                 {
413                 EVP_MD_CTX *mctx = NULL;
414                 EVP_PKEY_CTX *pctx = NULL;
415                 if (!BIO_get_md_ctx(bmd, &mctx))
416                         {
417                         BIO_printf(bio_err, "Error getting context\n");
418                         ERR_print_errors(bio_err);
419                         goto end;
420                         }
421                 if (!EVP_DigestSignInit(mctx, &pctx, md, e, sigkey))
422                         {
423                         BIO_printf(bio_err, "Error setting context\n");
424                         ERR_print_errors(bio_err);
425                         goto end;
426                         }
427                 if (sigopts)
428                         {
429                         char *sigopt;
430                         for (i = 0; i < sk_num(sigopts); i++)
431                                 {
432                                 sigopt = sk_value(sigopts, i);
433                                 if (pkey_ctrl_string(pctx, sigopt) <= 0)
434                                         {
435                                         BIO_printf(bio_err,
436                                                 "parameter error \"%s\"\n",
437                                                 sigopt);
438                                         ERR_print_errors(bio_err);
439                                         goto end;
440                                         }
441                                 }
442                         }
443                 }
444         /* we use md as a filter, reading from 'in' */
445         else if (!BIO_set_md(bmd,md))
446                 {
447                 BIO_printf(bio_err, "Error setting digest %s\n", pname);
448                 ERR_print_errors(bio_err);
449                 goto end;
450                 }
451
452         if(sigfile && sigkey) {
453                 BIO *sigbio;
454                 sigbio = BIO_new_file(sigfile, "rb");
455                 siglen = EVP_PKEY_size(sigkey);
456                 sigbuf = OPENSSL_malloc(siglen);
457                 if(!sigbio) {
458                         BIO_printf(bio_err, "Error opening signature file %s\n",
459                                                                 sigfile);
460                         ERR_print_errors(bio_err);
461                         goto end;
462                 }
463                 siglen = BIO_read(sigbio, sigbuf, siglen);
464                 BIO_free(sigbio);
465                 if(siglen <= 0) {
466                         BIO_printf(bio_err, "Error reading signature file %s\n",
467                                                                 sigfile);
468                         ERR_print_errors(bio_err);
469                         goto end;
470                 }
471         }
472         inp=BIO_push(bmd,in);
473
474         if (argc == 0)
475                 {
476                 BIO_set_fp(in,stdin,BIO_NOCLOSE);
477                 err=do_fp(out, buf,inp,separator, out_bin, sigkey, sigbuf,
478                           siglen,"","(stdin)",bmd);
479                 }
480         else
481                 {
482                 name=OBJ_nid2sn(md->type);
483                 for (i=0; i<argc; i++)
484                         {
485                         char *tmp,*tofree=NULL;
486                         int r;
487
488                         if (BIO_read_filename(in,argv[i]) <= 0)
489                                 {
490                                 perror(argv[i]);
491                                 err++;
492                                 continue;
493                                 }
494                         if(!out_bin)
495                                 {
496                                 size_t len = strlen(name)+strlen(argv[i])+(hmac_key ? 5 : 0)+5;
497                                 tmp=tofree=OPENSSL_malloc(len);
498                                 BIO_snprintf(tmp,len,"%s%s(%s)= ",
499                                                          hmac_key ? "HMAC-" : "",name,argv[i]);
500                                 }
501                         else
502                                 tmp="";
503                         r=do_fp(out,buf,inp,separator,out_bin,sigkey,sigbuf,
504                                 siglen,tmp,argv[i],bmd);
505                         if(r)
506                             err=r;
507                         if(tofree)
508                                 OPENSSL_free(tofree);
509                         (void)BIO_reset(bmd);
510                         }
511                 }
512 end:
513         if (buf != NULL)
514                 {
515                 OPENSSL_cleanse(buf,BUFSIZE);
516                 OPENSSL_free(buf);
517                 }
518         if (in != NULL) BIO_free(in);
519         if (passin)
520                 OPENSSL_free(passin);
521         BIO_free_all(out);
522         EVP_PKEY_free(sigkey);
523         if (sigopts)
524                 sk_free(sigopts);
525         if (macopts)
526                 sk_free(macopts);
527         if(sigbuf) OPENSSL_free(sigbuf);
528         if (bmd != NULL) BIO_free(bmd);
529         apps_shutdown();
530         OPENSSL_EXIT(err);
531         }
532
533 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
534           EVP_PKEY *key, unsigned char *sigin, int siglen, const char *title,
535           const char *file,BIO *bmd)
536         {
537         size_t len;
538         int i;
539
540         for (;;)
541                 {
542                 i=BIO_read(bp,(char *)buf,BUFSIZE);
543                 if(i < 0)
544                         {
545                         BIO_printf(bio_err, "Read Error in %s\n",file);
546                         ERR_print_errors(bio_err);
547                         return 1;
548                         }
549                 if (i == 0) break;
550                 }
551         if(sigin)
552                 {
553                 EVP_MD_CTX *ctx;
554                 BIO_get_md_ctx(bp, &ctx);
555                 i = EVP_DigestVerifyFinal(ctx, sigin, (unsigned int)siglen); 
556                 if(i > 0)
557                         BIO_printf(out, "Verified OK\n");
558                 else if(i == 0)
559                         {
560                         BIO_printf(out, "Verification Failure\n");
561                         return 1;
562                         }
563                 else
564                         {
565                         BIO_printf(bio_err, "Error Verifying Data\n");
566                         ERR_print_errors(bio_err);
567                         return 1;
568                         }
569                 return 0;
570                 }
571         if(key)
572                 {
573                 EVP_MD_CTX *ctx;
574                 BIO_get_md_ctx(bp, &ctx);
575                 if(!EVP_DigestSignFinal(ctx, buf, &len)) 
576                         {
577                         BIO_printf(bio_err, "Error Signing Data\n");
578                         ERR_print_errors(bio_err);
579                         return 1;
580                         }
581                 }
582         else
583                 len=BIO_gets(bp,(char *)buf,BUFSIZE);
584
585         if(binout) BIO_write(out, buf, len);
586         else 
587                 {
588                 BIO_write(out,title,strlen(title));
589                 for (i=0; i<(int)len; i++)
590                         {
591                         if (sep && (i != 0))
592                                 BIO_printf(out, ":");
593                         BIO_printf(out, "%02x",buf[i]);
594                         }
595                 BIO_printf(out, "\n");
596                 }
597         return 0;
598         }
599