mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-10 21:38:50 +01:00
486 lines
12 KiB
C
486 lines
12 KiB
C
/* sign.c - sign data
|
|
* Copyright (C) 1998 Free Software Foundation, Inc.
|
|
*
|
|
* 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
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (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
|
|
* 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"
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
int
|
|
complete_sig( PKT_signature *sig, PKT_secret_cert *skc, MD_HANDLE md )
|
|
{
|
|
int rc=0;
|
|
|
|
if( (rc=check_secret_key( skc )) )
|
|
;
|
|
else if( is_ELGAMAL(sig->pubkey_algo) )
|
|
g10_elg_sign( skc, sig, md, 0 );
|
|
else if( sig->pubkey_algo == PUBKEY_ALGO_DSA )
|
|
g10_dsa_sign( skc, sig, md, 0 );
|
|
else if( is_RSA(sig->pubkey_algo) )
|
|
g10_rsa_sign( skc, sig, md, 0 );
|
|
else
|
|
BUG();
|
|
|
|
/* fixme: should we check whether the signature is okay?
|
|
* maybe by using an option */
|
|
|
|
return rc;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
* 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
|
|
* 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.
|
|
* 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.
|
|
*/
|
|
int
|
|
sign_file( STRLIST filenames, int detached, STRLIST locusr,
|
|
int encrypt, STRLIST remusr, const char *outfile )
|
|
{
|
|
const char *fname;
|
|
armor_filter_context_t afx;
|
|
compress_filter_context_t zfx;
|
|
md_filter_context_t mfx;
|
|
text_filter_context_t tfx;
|
|
encrypt_filter_context_t efx;
|
|
IOBUF inp = NULL, out = NULL;
|
|
PACKET pkt;
|
|
PKT_plaintext *pt = NULL;
|
|
u32 filesize;
|
|
int rc = 0;
|
|
PKC_LIST pkc_list = NULL;
|
|
SKC_LIST skc_list = NULL;
|
|
SKC_LIST skc_rover = NULL;
|
|
int multifile = 0;
|
|
|
|
memset( &afx, 0, sizeof afx);
|
|
memset( &zfx, 0, sizeof zfx);
|
|
memset( &mfx, 0, sizeof mfx);
|
|
memset( &tfx, 0, sizeof tfx);
|
|
memset( &efx, 0, sizeof efx);
|
|
init_packet( &pkt );
|
|
|
|
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");
|
|
|
|
if( (rc=build_skc_list( locusr, &skc_list, 1, 1 )) )
|
|
goto leave;
|
|
if( encrypt ) {
|
|
if( (rc=build_pkc_list( remusr, &pkc_list, 2 )) )
|
|
goto leave;
|
|
}
|
|
|
|
/* prepare iobufs */
|
|
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]",
|
|
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, opt.armor? 1: detached? 2:0 )) ) {
|
|
rc = G10ERR_CREATE_FILE;
|
|
goto leave;
|
|
}
|
|
|
|
/* prepare to calculate the MD over the input */
|
|
if( opt.textmode && !outfile )
|
|
iobuf_push_filter( inp, text_filter, &tfx );
|
|
mfx.md = md_open(opt.def_digest_algo, 0);
|
|
if( !multifile )
|
|
iobuf_push_filter( inp, md_filter, &mfx );
|
|
|
|
if( opt.armor && !outfile )
|
|
iobuf_push_filter( out, armor_filter, &afx );
|
|
write_comment( out, "#created by GNUPG v" VERSION " ("
|
|
PRINTABLE_OS_NAME ")");
|
|
if( opt.compress && !outfile )
|
|
iobuf_push_filter( out, compress_filter, &zfx );
|
|
|
|
if( encrypt ) {
|
|
efx.pkc_list = pkc_list;
|
|
/* fixme: set efx.cfx.datalen if known */
|
|
iobuf_push_filter( out, encrypt_filter, &efx );
|
|
}
|
|
|
|
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;
|
|
ops->digest_algo = opt.def_digest_algo;
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/* setup the inner packet */
|
|
if( detached ) {
|
|
if( multifile ) {
|
|
STRLIST sl;
|
|
|
|
if( opt.verbose )
|
|
log_info("signing:" );
|
|
/* must walk reverse trough this list */
|
|
for( sl = strlist_last(filenames); sl;
|
|
sl = strlist_prev( filenames, sl ) ) {
|
|
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 )
|
|
;
|
|
}
|
|
}
|
|
else {
|
|
if( fname ) {
|
|
pt = m_alloc( sizeof *pt + strlen(fname) - 1 );
|
|
pt->namelen = strlen(fname);
|
|
memcpy(pt->name, fname, pt->namelen );
|
|
if( !(filesize = iobuf_get_filelength(inp)) )
|
|
log_info("warning: '%s' is an empty file\n", fname );
|
|
|
|
/* because the text_filter modifies the length of the
|
|
* data, it is not possible to know the used length
|
|
* without a double read of the file - to avoid that
|
|
* we simple use partial length packets.
|
|
*/
|
|
if( opt.textmode && !outfile )
|
|
filesize = 0;
|
|
}
|
|
else { /* no filename */
|
|
pt = m_alloc( sizeof *pt - 1 );
|
|
pt->namelen = 0;
|
|
filesize = 0; /* stdin */
|
|
}
|
|
pt->timestamp = make_timestamp();
|
|
pt->mode = opt.textmode && !outfile ? 't':'b';
|
|
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;
|
|
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 = opt.textmode && !outfile? 0x01 : 0x00;
|
|
|
|
md = md_copy( mfx.md );
|
|
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( is_ELGAMAL(sig->pubkey_algo) )
|
|
g10_elg_sign( skc, sig, md, opt.def_digest_algo );
|
|
else if( sig->pubkey_algo == PUBKEY_ALGO_DSA )
|
|
g10_dsa_sign( skc, sig, md, opt.def_digest_algo );
|
|
else if( is_RSA(sig->pubkey_algo) )
|
|
g10_rsa_sign( skc, sig, md, opt.def_digest_algo );
|
|
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( mfx.md );
|
|
release_skc_list( skc_list );
|
|
release_pkc_list( pkc_list );
|
|
return rc;
|
|
}
|
|
|
|
|
|
|
|
/****************
|
|
* note: we do not count empty lines at the beginning
|
|
*/
|
|
static int
|
|
write_dash_escaped( IOBUF inp, IOBUF out, MD_HANDLE md )
|
|
{
|
|
int c;
|
|
int lastlf = 1;
|
|
int skip_empty = 1;
|
|
|
|
while( (c = iobuf_get(inp)) != -1 ) {
|
|
/* Note: We don't escape "From " because the MUA should cope with it */
|
|
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;
|
|
}
|
|
|
|
if( !skip_empty )
|
|
md_putc(md, c );
|
|
iobuf_put( out, c );
|
|
lastlf = c == '\n';
|
|
if( skip_empty == 2 )
|
|
skip_empty = lastlf ? 0 : 1;
|
|
}
|
|
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;
|
|
MD_HANDLE textmd = NULL;
|
|
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 );
|
|
|
|
if( (rc=build_skc_list( locusr, &skc_list, 1, 1 )) )
|
|
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;
|
|
}
|
|
|
|
iobuf_writestr(out, "-----BEGIN PGP SIGNED MESSAGE-----\n" );
|
|
if( opt.def_digest_algo == DIGEST_ALGO_MD5 )
|
|
iobuf_writestr(out, "\n" );
|
|
else {
|
|
const char *s = digest_algo_to_string(opt.def_digest_algo);
|
|
assert(s);
|
|
iobuf_writestr(out, "Hash: " );
|
|
iobuf_writestr(out, s );
|
|
iobuf_writestr(out, "\n\n" );
|
|
}
|
|
|
|
|
|
textmd = md_open(opt.def_digest_algo, 0);
|
|
iobuf_push_filter( inp, text_filter, &tfx );
|
|
rc = write_dash_escaped( inp, out, textmd );
|
|
if( rc )
|
|
goto leave;
|
|
|
|
iobuf_writestr(out, "\n" );
|
|
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( is_ELGAMAL(sig->pubkey_algo) )
|
|
g10_elg_sign( skc, sig, md, opt.def_digest_algo );
|
|
else if( sig->pubkey_algo == PUBKEY_ALGO_DSA )
|
|
g10_dsa_sign( skc, sig, md, opt.def_digest_algo );
|
|
else if( is_RSA(sig->pubkey_algo) )
|
|
g10_rsa_sign( skc, sig, md, opt.def_digest_algo );
|
|
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;
|
|
}
|
|
|
|
|
|
|