2006-04-19 13:26:11 +02:00
|
|
|
/* verify.c - Verify signed data
|
2007-05-03 06:44:12 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006,
|
2010-03-08 19:19:21 +01:00
|
|
|
* 2007, 2010 Free Software Foundation, Inc.
|
2003-06-05 09:14:21 +02:00
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-04 21:49:40 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-06-05 09:14:21 +02:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-04 21:49:40 +02:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2003-06-05 09:14:21 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
#include "gpg.h"
|
2003-06-05 09:14:21 +02:00
|
|
|
#include "options.h"
|
|
|
|
#include "packet.h"
|
2007-11-19 17:03:50 +01:00
|
|
|
#include "status.h"
|
2003-06-05 09:14:21 +02:00
|
|
|
#include "iobuf.h"
|
|
|
|
#include "keydb.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "status.h"
|
|
|
|
#include "filter.h"
|
|
|
|
#include "ttyio.h"
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
* Assume that the input is a signature and verify it without
|
|
|
|
* generating any output. With no arguments, the signature packet
|
|
|
|
* is read from stdin (it may be a detached signature when not
|
|
|
|
* used in batch mode). If only a sigfile is given, it may be a complete
|
|
|
|
* signature or a detached signature in which case the signed stuff
|
|
|
|
* is expected from stdin. With more than 1 argument, the first should
|
|
|
|
* be a detached signature and the remaining files are the signed stuff.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2010-10-01 22:33:53 +02:00
|
|
|
verify_signatures (ctrl_t ctrl, int nfiles, char **files )
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
2006-04-19 13:26:11 +02:00
|
|
|
IOBUF fp;
|
2006-12-21 20:40:00 +01:00
|
|
|
armor_filter_context_t *afx = NULL;
|
|
|
|
progress_filter_context_t *pfx = new_progress_context ();
|
2003-06-05 09:14:21 +02:00
|
|
|
const char *sigfile;
|
|
|
|
int i, rc;
|
2006-10-02 13:54:35 +02:00
|
|
|
strlist_t sl;
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2006-12-21 20:40:00 +01:00
|
|
|
/* Decide whether we should handle a detached or a normal signature,
|
2003-06-05 09:14:21 +02:00
|
|
|
* which is needed so that the code later can hash the correct data and
|
|
|
|
* not have a normal signature act as detached signature and ignoring the
|
|
|
|
* indended signed material from the 2nd file or stdin.
|
|
|
|
* 1. gpg <file - normal
|
|
|
|
* 2. gpg file - normal (or detached)
|
|
|
|
* 3. gpg file <file2 - detached
|
|
|
|
* 4. gpg file file2 - detached
|
|
|
|
* The question is how decide between case 2 and 3? The only way
|
2006-12-21 20:40:00 +01:00
|
|
|
* we can do it is by reading one byte from stdin and then unget
|
2003-06-05 09:14:21 +02:00
|
|
|
* it; the problem here is that we may be reading from the
|
|
|
|
* terminal (which could be detected using isatty() but won't work
|
|
|
|
* when under contol of a pty using program (e.g. expect)) and
|
|
|
|
* might get us in trouble when stdin is used for another purpose
|
|
|
|
* (--passphrase-fd 0). So we have to break with the behaviour
|
|
|
|
* prior to gpg 1.0.4 by assuming that case 3 is a normal
|
|
|
|
* signature (where file2 is ignored and require for a detached
|
|
|
|
* signature to indicate signed material comes from stdin by using
|
|
|
|
* case 4 with a file2 of "-".
|
|
|
|
*
|
|
|
|
* Actually we don't have to change anything here but can handle
|
2011-02-04 12:57:53 +01:00
|
|
|
* that all quite easily in mainproc.c
|
2003-06-05 09:14:21 +02:00
|
|
|
*/
|
2011-02-04 12:57:53 +01:00
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
sigfile = nfiles? *files : NULL;
|
|
|
|
|
|
|
|
/* open the signature file */
|
|
|
|
fp = iobuf_open(sigfile);
|
2006-04-19 13:26:11 +02:00
|
|
|
if (fp && is_secured_file (iobuf_get_fd (fp)))
|
|
|
|
{
|
|
|
|
iobuf_close (fp);
|
|
|
|
fp = NULL;
|
2010-04-01 15:24:55 +02:00
|
|
|
gpg_err_set_errno (EPERM);
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
if( !fp ) {
|
2006-09-14 18:50:33 +02:00
|
|
|
rc = gpg_error_from_syserror ();
|
2003-06-18 21:56:13 +02:00
|
|
|
log_error(_("can't open `%s': %s\n"),
|
2010-10-20 17:06:50 +02:00
|
|
|
print_fname_stdin(sigfile), gpg_strerror (rc));
|
2006-12-21 20:40:00 +01:00
|
|
|
goto leave;
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
2006-12-06 11:16:50 +01:00
|
|
|
handle_progress (pfx, fp, sigfile);
|
2003-06-05 09:14:21 +02:00
|
|
|
|
2006-12-21 20:40:00 +01:00
|
|
|
if ( !opt.no_armor && use_armor_filter( fp ) )
|
|
|
|
{
|
|
|
|
afx = new_armor_context ();
|
2006-12-06 11:16:50 +01:00
|
|
|
push_armor_filter (afx, fp);
|
2006-12-21 20:40:00 +01:00
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
sl = NULL;
|
2006-04-19 13:26:11 +02:00
|
|
|
for(i=nfiles-1 ; i > 0 ; i-- )
|
2003-06-05 09:14:21 +02:00
|
|
|
add_to_strlist( &sl, files[i] );
|
2010-10-01 22:33:53 +02:00
|
|
|
rc = proc_signature_packets (ctrl, NULL, fp, sl, sigfile );
|
2003-06-05 09:14:21 +02:00
|
|
|
free_strlist(sl);
|
|
|
|
iobuf_close(fp);
|
2007-01-31 16:22:21 +01:00
|
|
|
if( (afx && afx->no_openpgp_data && rc == -1) || rc == G10ERR_NO_DATA ) {
|
2003-06-05 09:14:21 +02:00
|
|
|
log_error(_("the signature could not be verified.\n"
|
|
|
|
"Please remember that the signature file (.sig or .asc)\n"
|
|
|
|
"should be the first file given on the command line.\n") );
|
|
|
|
rc = 0;
|
|
|
|
}
|
|
|
|
|
2006-12-21 20:40:00 +01:00
|
|
|
leave:
|
2006-12-06 11:16:50 +01:00
|
|
|
release_armor_context (afx);
|
|
|
|
release_progress_context (pfx);
|
2003-06-05 09:14:21 +02:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-21 20:40:00 +01:00
|
|
|
|
2003-06-05 09:14:21 +02:00
|
|
|
void
|
|
|
|
print_file_status( int status, const char *name, int what )
|
|
|
|
{
|
2006-04-19 13:26:11 +02:00
|
|
|
char *p = xmalloc(strlen(name)+10);
|
2003-06-05 09:14:21 +02:00
|
|
|
sprintf(p, "%d %s", what, name );
|
|
|
|
write_status_text( status, p );
|
2006-04-19 13:26:11 +02:00
|
|
|
xfree(p);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2010-10-01 22:33:53 +02:00
|
|
|
verify_one_file (ctrl_t ctrl, const char *name )
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
2006-04-19 13:26:11 +02:00
|
|
|
IOBUF fp;
|
2006-12-06 11:16:50 +01:00
|
|
|
armor_filter_context_t *afx = NULL;
|
2006-12-21 20:40:00 +01:00
|
|
|
progress_filter_context_t *pfx = new_progress_context ();
|
2003-06-05 09:14:21 +02:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
print_file_status( STATUS_FILE_START, name, 1 );
|
|
|
|
fp = iobuf_open(name);
|
2006-04-19 13:26:11 +02:00
|
|
|
if (fp)
|
2010-03-08 18:05:37 +01:00
|
|
|
iobuf_ioctl (fp, IOBUF_IOCTL_NO_CACHE, 1, NULL);
|
2006-04-19 13:26:11 +02:00
|
|
|
if (fp && is_secured_file (iobuf_get_fd (fp)))
|
|
|
|
{
|
|
|
|
iobuf_close (fp);
|
|
|
|
fp = NULL;
|
2010-04-01 15:24:55 +02:00
|
|
|
gpg_err_set_errno (EPERM);
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
2003-06-05 09:14:21 +02:00
|
|
|
if( !fp ) {
|
2006-09-14 18:50:33 +02:00
|
|
|
rc = gpg_error_from_syserror ();
|
2003-06-18 21:56:13 +02:00
|
|
|
log_error(_("can't open `%s': %s\n"),
|
|
|
|
print_fname_stdin(name), strerror (errno));
|
2003-06-05 09:14:21 +02:00
|
|
|
print_file_status( STATUS_FILE_ERROR, name, 1 );
|
2006-12-21 20:40:00 +01:00
|
|
|
goto leave;
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
2006-12-06 11:16:50 +01:00
|
|
|
handle_progress (pfx, fp, name);
|
2003-06-05 09:14:21 +02:00
|
|
|
|
|
|
|
if( !opt.no_armor ) {
|
|
|
|
if( use_armor_filter( fp ) ) {
|
2006-12-06 11:16:50 +01:00
|
|
|
afx = new_armor_context ();
|
|
|
|
push_armor_filter (afx, fp);
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-01 22:33:53 +02:00
|
|
|
rc = proc_signature_packets (ctrl, NULL, fp, NULL, name );
|
2003-06-05 09:14:21 +02:00
|
|
|
iobuf_close(fp);
|
|
|
|
write_status( STATUS_FILE_DONE );
|
2006-12-21 20:40:00 +01:00
|
|
|
|
2007-05-03 06:44:12 +02:00
|
|
|
reset_literals_seen();
|
|
|
|
|
2006-12-21 20:40:00 +01:00
|
|
|
leave:
|
2006-12-06 11:16:50 +01:00
|
|
|
release_armor_context (afx);
|
|
|
|
release_progress_context (pfx);
|
2003-06-05 09:14:21 +02:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************
|
|
|
|
* Verify each file given in the files array or read the names of the
|
|
|
|
* files from stdin.
|
|
|
|
* Note: This function can not handle detached signatures.
|
|
|
|
*/
|
|
|
|
int
|
2010-10-01 22:33:53 +02:00
|
|
|
verify_files (ctrl_t ctrl, int nfiles, char **files )
|
2003-06-05 09:14:21 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if( !nfiles ) { /* read the filenames from stdin */
|
|
|
|
char line[2048];
|
|
|
|
unsigned int lno = 0;
|
|
|
|
|
|
|
|
while( fgets(line, DIM(line), stdin) ) {
|
|
|
|
lno++;
|
|
|
|
if( !*line || line[strlen(line)-1] != '\n' ) {
|
|
|
|
log_error(_("input line %u too long or missing LF\n"), lno );
|
2006-04-19 13:26:11 +02:00
|
|
|
return G10ERR_GENERAL;
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
/* This code does not work on MSDOS but how cares there are
|
|
|
|
* also no script languages available. We don't strip any
|
|
|
|
* spaces, so that we can process nearly all filenames */
|
|
|
|
line[strlen(line)-1] = 0;
|
2010-10-01 22:33:53 +02:00
|
|
|
verify_one_file (ctrl, line );
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else { /* take filenames from the array */
|
|
|
|
for(i=0; i < nfiles; i++ )
|
2010-10-01 22:33:53 +02:00
|
|
|
verify_one_file (ctrl, files[i] );
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2006-12-21 20:40:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Perform a verify operation. To verify detached signatures, DATA_FD
|
|
|
|
shall be the descriptor of the signed data; for regular signatures
|
|
|
|
it needs to be -1. If OUT_FP is not NULL and DATA_FD is not -1 the
|
2011-02-04 12:57:53 +01:00
|
|
|
the signed material gets written that stream.
|
2006-12-21 20:40:00 +01:00
|
|
|
|
|
|
|
FIXME: OUTFP is not yet implemented.
|
|
|
|
*/
|
|
|
|
int
|
2010-03-08 19:19:21 +01:00
|
|
|
gpg_verify (ctrl_t ctrl, int sig_fd, int data_fd, estream_t out_fp)
|
2006-12-21 20:40:00 +01:00
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
iobuf_t fp;
|
|
|
|
armor_filter_context_t *afx = NULL;
|
|
|
|
progress_filter_context_t *pfx = new_progress_context ();
|
|
|
|
|
2008-10-20 15:53:23 +02:00
|
|
|
(void)ctrl;
|
|
|
|
(void)out_fp;
|
|
|
|
|
2010-03-08 19:19:21 +01:00
|
|
|
if (is_secured_file (sig_fd))
|
2006-12-21 20:40:00 +01:00
|
|
|
{
|
|
|
|
fp = NULL;
|
2010-03-08 19:19:21 +01:00
|
|
|
gpg_err_set_errno (EPERM);
|
2006-12-21 20:40:00 +01:00
|
|
|
}
|
2010-03-08 19:19:21 +01:00
|
|
|
else
|
|
|
|
fp = iobuf_fdopen_nc (sig_fd, "rb");
|
|
|
|
if (!fp)
|
2006-12-21 20:40:00 +01:00
|
|
|
{
|
|
|
|
rc = gpg_error_from_syserror ();
|
|
|
|
log_error (_("can't open fd %d: %s\n"), sig_fd, strerror (errno));
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
|
|
|
handle_progress (pfx, fp, NULL);
|
|
|
|
|
|
|
|
if ( !opt.no_armor && use_armor_filter (fp) )
|
|
|
|
{
|
|
|
|
afx = new_armor_context ();
|
|
|
|
push_armor_filter (afx, fp);
|
|
|
|
}
|
|
|
|
|
2010-10-01 22:33:53 +02:00
|
|
|
rc = proc_signature_packets_by_fd (ctrl, NULL, fp, data_fd);
|
2006-12-21 20:40:00 +01:00
|
|
|
|
|
|
|
if ( afx && afx->no_openpgp_data
|
|
|
|
&& (rc == -1 || gpg_err_code (rc) == GPG_ERR_EOF) )
|
|
|
|
rc = gpg_error (GPG_ERR_NO_DATA);
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
leave:
|
2010-03-08 19:19:21 +01:00
|
|
|
iobuf_close (fp);
|
2006-12-21 20:40:00 +01:00
|
|
|
release_progress_context (pfx);
|
|
|
|
release_armor_context (afx);
|
|
|
|
return rc;
|
|
|
|
}
|