1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-28 21:50:02 +02:00
gnupg/g10/sign.c

469 lines
12 KiB
C
Raw Normal View History

1997-12-31 13:32:54 +01:00
/* sign.c - sign data
1998-02-24 19:50:46 +01:00
* Copyright (C) 1998 Free Software Foundation, Inc.
1997-12-31 13:32:54 +01:00
*
1998-02-24 19:50:46 +01:00
* This file is part of GNUPG.
1997-12-31 13:32:54 +01:00
*
1998-02-24 19:50:46 +01:00
* GNUPG is free software; you can redistribute it and/or modify
1997-12-31 13:32:54 +01:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
1998-02-24 19:50:46 +01:00
* GNUPG is distributed in the hope that it will be useful,
1997-12-31 13:32:54 +01:00
* 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
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <assert.h>
#include "options.h"
#include "packet.h"
#include "errors.h"
#include "iobuf.h"
#include "keydb.h"
#include "memory.h"
#include "util.h"
#include "main.h"
#include "filter.h"
#include "ttyio.h"
1998-03-05 10:22:13 +01:00
#include "i18n.h"
1997-12-31 13:32:54 +01:00
1998-04-09 13:19:09 +02:00
int
1998-01-12 11:18:17 +01:00
complete_sig( PKT_signature *sig, PKT_secret_cert *skc, MD_HANDLE md )
1997-12-31 13:32:54 +01:00
{
int rc=0;
if( (rc=check_secret_key( skc )) )
;
else if( sig->pubkey_algo == PUBKEY_ALGO_ELGAMAL )
1998-01-28 17:09:43 +01:00
g10_elg_sign( skc, sig, md, 0 );
1998-03-09 22:44:06 +01:00
else if( sig->pubkey_algo == PUBKEY_ALGO_DSA )
g10_dsa_sign( skc, sig, md, 0 );
1997-12-31 13:32:54 +01:00
else if( sig->pubkey_algo == PUBKEY_ALGO_RSA )
1998-01-28 17:09:43 +01:00
g10_rsa_sign( skc, sig, md, 0 );
1997-12-31 13:32:54 +01:00
else
1998-01-16 22:15:24 +01:00
BUG();
1997-12-31 13:32:54 +01:00
1998-04-14 19:51:16 +02:00
/* fixme: should we check whether the signature is okay?
1998-04-02 12:30:03 +02:00
* maybe by using an option */
1997-12-31 13:32:54 +01:00
return rc;
}
/****************
1998-01-13 20:04:23 +01:00
* Sign the files whose names are in FILENAME.
* If DETACHED has the value true,
* make a detached signature. If FILENAMES->d is NULL read from stdin
1997-12-31 13:32:54 +01:00
* and ignore the detached mode. Sign the file with all secret keys
* which can be taken from LOCUSR, if this is NULL, use the default one
* If ENCRYPT is true, use REMUSER (or ask if it is NULL) to encrypt the
* signed data for these users.
1998-01-13 20:04:23 +01:00
* If OUTFILE is not NULL; this file is used for output and the function
* does not ask for overwrite permission; output is then always
* uncompressed, non-armored and in binary mode.
1997-12-31 13:32:54 +01:00
*/
int
1998-01-13 20:04:23 +01:00
sign_file( STRLIST filenames, int detached, STRLIST locusr,
int encrypt, STRLIST remusr, const char *outfile )
1997-12-31 13:32:54 +01:00
{
1998-01-13 20:04:23 +01:00
const char *fname;
1997-12-31 13:32:54 +01:00
armor_filter_context_t afx;
compress_filter_context_t zfx;
md_filter_context_t mfx;
text_filter_context_t tfx;
1998-01-02 21:40:10 +01:00
encrypt_filter_context_t efx;
1997-12-31 13:32:54 +01:00
IOBUF inp = NULL, out = NULL;
PACKET pkt;
PKT_plaintext *pt = NULL;
u32 filesize;
1998-01-16 22:15:24 +01:00
int rc = 0;
1997-12-31 13:32:54 +01:00
PKC_LIST pkc_list = NULL;
SKC_LIST skc_list = NULL;
SKC_LIST skc_rover = NULL;
1998-01-13 20:04:23 +01:00
int multifile = 0;
1997-12-31 13:32:54 +01:00
memset( &afx, 0, sizeof afx);
memset( &zfx, 0, sizeof zfx);
memset( &mfx, 0, sizeof mfx);
memset( &tfx, 0, sizeof tfx);
1998-01-02 21:40:10 +01:00
memset( &efx, 0, sizeof efx);
1997-12-31 13:32:54 +01:00
init_packet( &pkt );
1998-01-13 20:04:23 +01:00
if( filenames ) {
fname = filenames->d;
multifile = !!filenames->next;
}
else
fname = NULL;
if( fname && filenames->next && (!detached || encrypt) )
log_bug("multiple files can only be detached signed");
1998-04-08 21:49:02 +02:00
if( (rc=build_skc_list( locusr, &skc_list, 1, 1 )) )
1997-12-31 13:32:54 +01:00
goto leave;
if( encrypt ) {
1998-04-08 21:49:02 +02:00
if( (rc=build_pkc_list( remusr, &pkc_list, 2 )) )
1997-12-31 13:32:54 +01:00
goto leave;
}
/* prepare iobufs */
1998-01-13 20:04:23 +01:00
if( multifile ) /* have list of filenames */
inp = NULL; /* we do it later */
else if( !(inp = iobuf_open(fname)) ) {
log_error("can't open %s: %s\n", fname? fname: "[stdin]",
1997-12-31 13:32:54 +01:00
strerror(errno) );
rc = G10ERR_OPEN_FILE;
goto leave;
}
1998-01-13 20:04:23 +01:00
if( outfile ) {
if( !(out = iobuf_create( outfile )) ) {
log_error("can't create %s: %s\n", outfile, strerror(errno) );
rc = G10ERR_CREATE_FILE;
goto leave;
}
else if( opt.verbose )
log_info("writing to '%s'\n", outfile );
}
else if( !(out = open_outfile( fname, opt.armor? 1: detached? 2:0 )) ) {
1997-12-31 13:32:54 +01:00
rc = G10ERR_CREATE_FILE;
goto leave;
}
/* prepare to calculate the MD over the input */
1998-02-09 18:43:42 +01:00
if( opt.textmode && !outfile )
1997-12-31 13:32:54 +01:00
iobuf_push_filter( inp, text_filter, &tfx );
1998-04-08 21:49:02 +02:00
mfx.md = md_open(opt.def_digest_algo, 0);
1998-01-13 20:04:23 +01:00
if( !multifile )
iobuf_push_filter( inp, md_filter, &mfx );
1997-12-31 13:32:54 +01:00
1998-01-13 20:04:23 +01:00
if( opt.armor && !outfile )
1997-12-31 13:32:54 +01:00
iobuf_push_filter( out, armor_filter, &afx );
1998-02-24 19:50:46 +01:00
write_comment( out, "#created by GNUPG v" VERSION " ("
1998-02-16 21:05:02 +01:00
PRINTABLE_OS_NAME ")");
1998-01-13 20:04:23 +01:00
if( opt.compress && !outfile )
1997-12-31 13:32:54 +01:00
iobuf_push_filter( out, compress_filter, &zfx );
if( encrypt ) {
1998-01-02 21:40:10 +01:00
efx.pkc_list = pkc_list;
/* fixme: set efx.cfx.datalen if known */
iobuf_push_filter( out, encrypt_filter, &efx );
1997-12-31 13:32:54 +01:00
}
1998-02-27 18:51:28 +01:00
if( !detached ) {
/* loop over the secret certificates and build headers */
for( skc_rover = skc_list; skc_rover; skc_rover = skc_rover->next ) {
PKT_secret_cert *skc;
PKT_onepass_sig *ops;
skc = skc_rover->skc;
ops = m_alloc_clear( sizeof *ops );
ops->sig_class = opt.textmode && !outfile ? 0x01 : 0x00;
1998-04-08 21:49:02 +02:00
ops->digest_algo = opt.def_digest_algo;
1998-02-27 18:51:28 +01:00
ops->pubkey_algo = skc->pubkey_algo;
keyid_from_skc( skc, ops->keyid );
ops->last = !skc_rover->next;
init_packet(&pkt);
pkt.pkttype = PKT_ONEPASS_SIG;
pkt.pkt.onepass_sig = ops;
rc = build_packet( out, &pkt );
free_packet( &pkt );
if( rc ) {
log_error("build onepass_sig packet failed: %s\n",
g10_errstr(rc));
goto leave;
}
1997-12-31 13:32:54 +01:00
}
}
/* setup the inner packet */
if( detached ) {
1998-01-13 20:04:23 +01:00
if( multifile ) {
1998-02-12 00:22:09 +01:00
STRLIST sl;
1998-01-13 20:04:23 +01:00
if( opt.verbose )
log_info("signing:" );
1998-02-12 00:22:09 +01:00
/* must walk reverse trough this list */
for( sl = strlist_last(filenames); sl;
sl = strlist_prev( filenames, sl ) ) {
1998-01-13 20:04:23 +01:00
if( !(inp = iobuf_open(sl->d)) ) {
log_error("can't open %s: %s\n", sl->d, strerror(errno) );
rc = G10ERR_OPEN_FILE;
goto leave;
}
if( opt.verbose )
fprintf(stderr, " '%s'", sl->d );
iobuf_push_filter( inp, md_filter, &mfx );
while( iobuf_get(inp) != -1 )
;
iobuf_close(inp); inp = NULL;
}
if( opt.verbose )
putc( '\n', stderr );
}
else {
/* read, so that the filter can calculate the digest */
while( iobuf_get(inp) != -1 )
;
}
1997-12-31 13:32:54 +01:00
}
else {
1998-01-13 20:04:23 +01:00
if( fname ) {
pt = m_alloc( sizeof *pt + strlen(fname) - 1 );
pt->namelen = strlen(fname);
memcpy(pt->name, fname, pt->namelen );
1997-12-31 13:32:54 +01:00
if( !(filesize = iobuf_get_filelength(inp)) )
1998-01-13 20:04:23 +01:00
log_info("warning: '%s' is an empty file\n", fname );
1997-12-31 13:32:54 +01:00
}
else { /* no filename */
pt = m_alloc( sizeof *pt - 1 );
pt->namelen = 0;
filesize = 0; /* stdin */
}
pt->timestamp = make_timestamp();
1998-01-13 20:04:23 +01:00
pt->mode = opt.textmode && !outfile ? 't':'b';
1997-12-31 13:32:54 +01:00
pt->len = filesize;
pt->buf = inp;
pkt.pkttype = PKT_PLAINTEXT;
pkt.pkt.plaintext = pt;
/*cfx.datalen = filesize? calc_packet_length( &pkt ) : 0;*/
if( (rc = build_packet( out, &pkt )) )
log_error("build_packet(PLAINTEXT) failed: %s\n", g10_errstr(rc) );
pt->buf = NULL;
}
/* loop over the secret certificates */
for( skc_rover = skc_list; skc_rover; skc_rover = skc_rover->next ) {
PKT_secret_cert *skc;
PKT_signature *sig;
1998-01-12 11:18:17 +01:00
MD_HANDLE md;
1997-12-31 13:32:54 +01:00
skc = skc_rover->skc;
/* build the signature packet */
sig = m_alloc_clear( sizeof *sig );
sig->pubkey_algo = skc->pubkey_algo;
sig->timestamp = make_timestamp();
1998-01-13 20:04:23 +01:00
sig->sig_class = opt.textmode && !outfile? 0x01 : 0x00;
1997-12-31 13:32:54 +01:00
1998-01-12 11:18:17 +01:00
md = md_copy( mfx.md );
md_putc( md, sig->sig_class );
1997-12-31 13:32:54 +01:00
{ u32 a = sig->timestamp;
1998-01-12 11:18:17 +01:00
md_putc( md, (a >> 24) & 0xff );
md_putc( md, (a >> 16) & 0xff );
md_putc( md, (a >> 8) & 0xff );
md_putc( md, a & 0xff );
1997-12-31 13:32:54 +01:00
}
1998-01-12 11:18:17 +01:00
md_final( md );
1998-01-28 17:09:43 +01:00
if( sig->pubkey_algo == PUBKEY_ALGO_ELGAMAL )
1998-04-08 21:49:02 +02:00
g10_elg_sign( skc, sig, md, opt.def_digest_algo );
1998-03-09 22:44:06 +01:00
else if( sig->pubkey_algo == PUBKEY_ALGO_DSA )
1998-04-08 21:49:02 +02:00
g10_dsa_sign( skc, sig, md, opt.def_digest_algo );
1998-01-28 17:09:43 +01:00
else if( sig->pubkey_algo == PUBKEY_ALGO_RSA )
1998-04-08 21:49:02 +02:00
g10_rsa_sign( skc, sig, md, opt.def_digest_algo );
1997-12-31 13:32:54 +01:00
else
1998-01-16 22:15:24 +01:00
BUG();
1997-12-31 13:32:54 +01:00
1998-01-12 11:18:17 +01:00
md_close( md );
1997-12-31 13:32:54 +01:00
/* and write it */
init_packet(&pkt);
pkt.pkttype = PKT_SIGNATURE;
pkt.pkt.signature = sig;
rc = build_packet( out, &pkt );
free_packet( &pkt );
if( rc ) {
log_error("build signature packet failed: %s\n", g10_errstr(rc) );
goto leave;
}
}
leave:
if( rc )
iobuf_cancel(out);
else
iobuf_close(out);
iobuf_close(inp);
1998-01-12 11:18:17 +01:00
md_close( mfx.md );
1997-12-31 13:32:54 +01:00
release_skc_list( skc_list );
release_pkc_list( pkc_list );
return rc;
}
1998-02-09 18:43:42 +01:00
/****************
* note: we do not count empty lines at the beginning
*/
1998-02-04 19:54:31 +01:00
static int
write_dash_escaped( IOBUF inp, IOBUF out, MD_HANDLE md )
{
int c;
int lastlf = 1;
1998-02-09 18:43:42 +01:00
int skip_empty = 1;
1998-02-04 19:54:31 +01:00
while( (c = iobuf_get(inp)) != -1 ) {
/* Note: We don't escape "From " because the MUA should cope with it */
1998-02-09 18:43:42 +01:00
if( lastlf ) {
if( c == '-' ) {
iobuf_put( out, c );
iobuf_put( out, ' ' );
skip_empty = 0;
}
else if( skip_empty && c == '\r' )
skip_empty = 2;
else
skip_empty = 0;
1998-02-04 19:54:31 +01:00
}
1998-02-09 18:43:42 +01:00
if( !skip_empty )
md_putc(md, c );
1998-02-04 19:54:31 +01:00
iobuf_put( out, c );
lastlf = c == '\n';
1998-02-09 18:43:42 +01:00
if( skip_empty == 2 )
skip_empty = lastlf ? 0 : 1;
1998-02-04 19:54:31 +01:00
}
return 0; /* fixme: add error handling */
}
/****************
* make a clear signature. note that opt.armor is not needed
*/
int
clearsign_file( const char *fname, STRLIST locusr, const char *outfile )
{
armor_filter_context_t afx;
compress_filter_context_t zfx;
text_filter_context_t tfx;
1998-02-12 00:22:09 +01:00
MD_HANDLE textmd = NULL;
1998-02-04 19:54:31 +01:00
IOBUF inp = NULL, out = NULL;
PACKET pkt;
int rc = 0;
SKC_LIST skc_list = NULL;
SKC_LIST skc_rover = NULL;
memset( &afx, 0, sizeof afx);
memset( &zfx, 0, sizeof zfx);
memset( &tfx, 0, sizeof tfx);
init_packet( &pkt );
1998-04-08 21:49:02 +02:00
if( (rc=build_skc_list( locusr, &skc_list, 1, 1 )) )
1998-02-04 19:54:31 +01:00
goto leave;
/* prepare iobufs */
if( !(inp = iobuf_open(fname)) ) {
log_error("can't open %s: %s\n", fname? fname: "[stdin]",
strerror(errno) );
rc = G10ERR_OPEN_FILE;
goto leave;
}
if( outfile ) {
if( !(out = iobuf_create( outfile )) ) {
log_error("can't create %s: %s\n", outfile, strerror(errno) );
rc = G10ERR_CREATE_FILE;
goto leave;
}
else if( opt.verbose )
log_info("writing to '%s'\n", outfile );
}
else if( !(out = open_outfile( fname, 1 )) ) {
rc = G10ERR_CREATE_FILE;
goto leave;
}
1998-02-09 18:43:42 +01:00
iobuf_writestr(out, "-----BEGIN PGP SIGNED MESSAGE-----\n"
"Hash: RIPEMD160\n\n" );
1998-02-04 19:54:31 +01:00
1998-04-08 21:49:02 +02:00
textmd = md_open(opt.def_digest_algo, 0);
1998-02-04 19:54:31 +01:00
iobuf_push_filter( inp, text_filter, &tfx );
rc = write_dash_escaped( inp, out, textmd );
if( rc )
goto leave;
1998-02-05 09:54:39 +01:00
iobuf_writestr(out, "\n" );
1998-02-04 19:54:31 +01:00
afx.what = 2;
iobuf_push_filter( out, armor_filter, &afx );
/* loop over the secret certificates */
for( skc_rover = skc_list; skc_rover; skc_rover = skc_rover->next ) {
PKT_secret_cert *skc;
PKT_signature *sig;
MD_HANDLE md;
skc = skc_rover->skc;
/* build the signature packet */
sig = m_alloc_clear( sizeof *sig );
sig->pubkey_algo = skc->pubkey_algo;
sig->timestamp = make_timestamp();
sig->sig_class = 0x01;
md = md_copy( textmd );
md_putc( md, sig->sig_class );
{ u32 a = sig->timestamp;
md_putc( md, (a >> 24) & 0xff );
md_putc( md, (a >> 16) & 0xff );
md_putc( md, (a >> 8) & 0xff );
md_putc( md, a & 0xff );
}
md_final( md );
if( sig->pubkey_algo == PUBKEY_ALGO_ELGAMAL )
1998-04-08 21:49:02 +02:00
g10_elg_sign( skc, sig, md, opt.def_digest_algo );
1998-03-09 22:44:06 +01:00
else if( sig->pubkey_algo == PUBKEY_ALGO_DSA )
1998-04-08 21:49:02 +02:00
g10_dsa_sign( skc, sig, md, opt.def_digest_algo );
1998-02-04 19:54:31 +01:00
else if( sig->pubkey_algo == PUBKEY_ALGO_RSA )
1998-04-08 21:49:02 +02:00
g10_rsa_sign( skc, sig, md, opt.def_digest_algo );
1998-02-04 19:54:31 +01:00
else
BUG();
md_close( md );
/* and write it */
init_packet(&pkt);
pkt.pkttype = PKT_SIGNATURE;
pkt.pkt.signature = sig;
rc = build_packet( out, &pkt );
free_packet( &pkt );
if( rc ) {
log_error("build signature packet failed: %s\n", g10_errstr(rc) );
goto leave;
}
}
leave:
if( rc )
iobuf_cancel(out);
else
iobuf_close(out);
iobuf_close(inp);
md_close( textmd );
release_skc_list( skc_list );
return rc;
}