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-12-23 13:41:40 +01:00
|
|
|
* This file is part of GnuPG.
|
1997-12-31 13:32:54 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +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-12-23 13:41:40 +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-08-05 18:51:59 +02:00
|
|
|
#include "trustdb.h"
|
1998-03-05 10:22:13 +01:00
|
|
|
#include "i18n.h"
|
1997-12-31 13:32:54 +01:00
|
|
|
|
|
|
|
|
1998-06-13 08:59:14 +02:00
|
|
|
static int
|
1998-06-29 14:30:57 +02:00
|
|
|
do_sign( PKT_secret_key *sk, PKT_signature *sig,
|
1998-06-13 08:59:14 +02:00
|
|
|
MD_HANDLE md, int digest_algo )
|
|
|
|
{
|
|
|
|
MPI frame;
|
|
|
|
byte *dp;
|
|
|
|
int rc;
|
|
|
|
|
1999-01-12 11:20:24 +01:00
|
|
|
if( sk->timestamp > sig->timestamp ) {
|
|
|
|
ulong d = sk->timestamp - sig->timestamp;
|
|
|
|
log_info( d==1 ? _("key has been created %lu second "
|
|
|
|
"in future (time warp or clock problem)\n")
|
|
|
|
: _("key has been created %lu seconds "
|
|
|
|
"in future (time warp or clock problem)\n"), d );
|
|
|
|
return G10ERR_TIME_CONFLICT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-12-10 20:20:47 +01:00
|
|
|
print_pubkey_algo_note(sk->pubkey_algo);
|
1998-07-06 12:23:57 +02:00
|
|
|
|
1998-06-13 08:59:14 +02:00
|
|
|
if( !digest_algo )
|
|
|
|
digest_algo = md_get_algo(md);
|
|
|
|
|
1998-12-10 20:20:47 +01:00
|
|
|
print_digest_algo_note( digest_algo );
|
1998-06-13 08:59:14 +02:00
|
|
|
dp = md_read( md, digest_algo );
|
|
|
|
sig->digest_algo = digest_algo;
|
|
|
|
sig->digest_start[0] = dp[0];
|
|
|
|
sig->digest_start[1] = dp[1];
|
1998-06-29 14:30:57 +02:00
|
|
|
frame = encode_md_value( sk->pubkey_algo, md,
|
|
|
|
digest_algo, mpi_get_nbits(sk->skey[0]));
|
|
|
|
rc = pubkey_sign( sk->pubkey_algo, sig->data, frame, sk->skey );
|
1998-06-13 08:59:14 +02:00
|
|
|
mpi_free(frame);
|
|
|
|
if( rc )
|
1998-11-10 13:59:59 +01:00
|
|
|
log_error(_("signing failed: %s\n"), g10_errstr(rc) );
|
1998-06-13 08:59:14 +02:00
|
|
|
else {
|
|
|
|
if( opt.verbose ) {
|
|
|
|
char *ustr = get_user_id_string( sig->keyid );
|
1998-11-10 13:59:59 +01:00
|
|
|
log_info(_("%s signature from: %s\n"),
|
1998-06-29 14:30:57 +02:00
|
|
|
pubkey_algo_to_string(sk->pubkey_algo), ustr );
|
1998-06-13 08:59:14 +02:00
|
|
|
m_free(ustr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-12-31 13:32:54 +01:00
|
|
|
|
1998-04-09 13:19:09 +02:00
|
|
|
int
|
1998-06-29 14:30:57 +02:00
|
|
|
complete_sig( PKT_signature *sig, PKT_secret_key *sk, MD_HANDLE md )
|
1997-12-31 13:32:54 +01:00
|
|
|
{
|
|
|
|
int rc=0;
|
|
|
|
|
1998-09-11 07:47:32 +02:00
|
|
|
if( !(rc=check_secret_key( sk, 0 )) )
|
1998-06-29 14:30:57 +02:00
|
|
|
rc = do_sign( sk, sig, md, 0 );
|
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-05-15 20:49:19 +02:00
|
|
|
static int
|
|
|
|
hash_for(int pubkey_algo )
|
|
|
|
{
|
|
|
|
if( opt.def_digest_algo )
|
|
|
|
return opt.def_digest_algo;
|
|
|
|
if( pubkey_algo == PUBKEY_ALGO_DSA )
|
|
|
|
return DIGEST_ALGO_SHA1;
|
|
|
|
if( pubkey_algo == PUBKEY_ALGO_RSA )
|
|
|
|
return DIGEST_ALGO_MD5;
|
|
|
|
return DEFAULT_DIGEST_ALGO;
|
|
|
|
}
|
1997-12-31 13:32:54 +01:00
|
|
|
|
1998-06-25 12:19:08 +02:00
|
|
|
static int
|
1998-06-29 14:30:57 +02:00
|
|
|
only_old_style( SK_LIST sk_list )
|
1998-06-25 12:19:08 +02:00
|
|
|
{
|
1998-06-29 14:30:57 +02:00
|
|
|
SK_LIST sk_rover = NULL;
|
1998-06-25 12:19:08 +02:00
|
|
|
int old_style = 0;
|
1997-12-31 13:32:54 +01:00
|
|
|
|
1998-06-25 12:19:08 +02:00
|
|
|
/* if there are only old style capable key we use the old sytle */
|
1998-06-29 14:30:57 +02:00
|
|
|
for( sk_rover = sk_list; sk_rover; sk_rover = sk_rover->next ) {
|
|
|
|
PKT_secret_key *sk = sk_rover->sk;
|
|
|
|
if( sk->pubkey_algo == PUBKEY_ALGO_RSA && sk->version < 4 )
|
1998-06-25 12:19:08 +02:00
|
|
|
old_style = 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return old_style;
|
|
|
|
}
|
1997-12-31 13:32:54 +01:00
|
|
|
|
1998-08-05 18:51:59 +02:00
|
|
|
|
|
|
|
|
1997-12-31 13:32:54 +01:00
|
|
|
/****************
|
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;
|
1998-06-29 14:30:57 +02:00
|
|
|
PK_LIST pk_list = NULL;
|
|
|
|
SK_LIST sk_list = NULL;
|
|
|
|
SK_LIST sk_rover = NULL;
|
1998-01-13 20:04:23 +01:00
|
|
|
int multifile = 0;
|
1998-06-25 12:19:08 +02:00
|
|
|
int old_style = opt.rfc1991;
|
1998-08-05 18:51:59 +02:00
|
|
|
int compr_algo = -1; /* unknown */
|
1998-06-25 12:19:08 +02:00
|
|
|
|
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-07-06 12:23:57 +02:00
|
|
|
if( (rc=build_sk_list( locusr, &sk_list, 1, PUBKEY_USAGE_SIG )) )
|
1997-12-31 13:32:54 +01:00
|
|
|
goto leave;
|
1998-06-25 12:19:08 +02:00
|
|
|
if( !old_style )
|
1998-06-29 14:30:57 +02:00
|
|
|
old_style = only_old_style( sk_list );
|
1998-10-21 19:34:36 +02:00
|
|
|
|
1997-12-31 13:32:54 +01:00
|
|
|
if( encrypt ) {
|
1998-07-06 12:23:57 +02:00
|
|
|
if( (rc=build_pk_list( remusr, &pk_list, PUBKEY_USAGE_ENC )) )
|
1997-12-31 13:32:54 +01:00
|
|
|
goto leave;
|
1998-08-05 18:51:59 +02:00
|
|
|
if( !old_style )
|
|
|
|
compr_algo = select_algo_from_prefs( pk_list, PREFTYPE_COMPR );
|
1997-12-31 13:32:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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 )) ) {
|
1998-11-10 13:59:59 +01:00
|
|
|
log_error(_("can't create %s: %s\n"), outfile, strerror(errno) );
|
1998-01-13 20:04:23 +01:00
|
|
|
rc = G10ERR_CREATE_FILE;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
else if( opt.verbose )
|
1998-12-29 14:47:31 +01:00
|
|
|
log_info(_("writing to `%s'\n"), outfile );
|
1998-01-13 20:04:23 +01:00
|
|
|
}
|
1998-08-11 19:29:34 +02:00
|
|
|
else if( (rc = open_outfile( fname, opt.armor? 1: detached? 2:0, &out )))
|
1997-12-31 13:32:54 +01:00
|
|
|
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-05-15 20:49:19 +02:00
|
|
|
mfx.md = md_open(0, 0);
|
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
for( sk_rover = sk_list; sk_rover; sk_rover = sk_rover->next ) {
|
|
|
|
PKT_secret_key *sk = sk_rover->sk;
|
|
|
|
md_enable(mfx.md, hash_for(sk->pubkey_algo));
|
1998-05-15 20:49:19 +02:00
|
|
|
}
|
|
|
|
|
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-09-18 17:24:53 +02:00
|
|
|
if( detached && !encrypt && !opt.rfc1991 )
|
|
|
|
afx.what = 2;
|
|
|
|
|
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-10-16 18:00:17 +02:00
|
|
|
#ifdef ENABLE_COMMENT_PACKETS
|
1998-08-11 19:29:34 +02:00
|
|
|
else {
|
1998-05-26 15:38:00 +02:00
|
|
|
write_comment( out, "#created by GNUPG v" VERSION " ("
|
1998-02-16 21:05:02 +01:00
|
|
|
PRINTABLE_OS_NAME ")");
|
1998-08-11 19:29:34 +02:00
|
|
|
if( opt.comment_string )
|
|
|
|
write_comment( out, opt.comment_string );
|
|
|
|
}
|
1998-10-16 18:00:17 +02:00
|
|
|
#endif
|
1997-12-31 13:32:54 +01:00
|
|
|
if( encrypt ) {
|
1998-06-29 14:30:57 +02:00
|
|
|
efx.pk_list = pk_list;
|
1998-01-02 21:40:10 +01:00
|
|
|
/* fixme: set efx.cfx.datalen if known */
|
|
|
|
iobuf_push_filter( out, encrypt_filter, &efx );
|
1997-12-31 13:32:54 +01:00
|
|
|
}
|
|
|
|
|
1998-07-14 19:10:28 +02:00
|
|
|
if( opt.compress && !outfile && ( !detached || opt.compress_sigs) ) {
|
1998-08-05 18:51:59 +02:00
|
|
|
if( !compr_algo )
|
|
|
|
; /* don't use compression */
|
|
|
|
else {
|
|
|
|
if( old_style || compr_algo == 1 )
|
|
|
|
zfx.algo = 1;
|
|
|
|
iobuf_push_filter( out, compress_filter, &zfx );
|
|
|
|
}
|
1998-06-25 12:19:08 +02:00
|
|
|
}
|
1998-05-26 15:38:00 +02:00
|
|
|
|
1998-06-25 12:19:08 +02:00
|
|
|
if( !detached && !old_style ) {
|
1998-08-05 18:51:59 +02:00
|
|
|
int skcount=0;
|
|
|
|
/* loop over the secret certificates and build headers
|
|
|
|
* The specs now say that the data should be bracket by
|
1998-10-25 20:00:01 +01:00
|
|
|
* the onepass-sig and signature-packet; so we must build it
|
1998-08-05 18:51:59 +02:00
|
|
|
* here in reverse order */
|
|
|
|
for( sk_rover = sk_list; sk_rover; sk_rover = sk_rover->next )
|
|
|
|
skcount++;
|
|
|
|
for( ; skcount; skcount-- ) {
|
1998-06-29 14:30:57 +02:00
|
|
|
PKT_secret_key *sk;
|
1998-02-27 18:51:28 +01:00
|
|
|
PKT_onepass_sig *ops;
|
1998-08-05 18:51:59 +02:00
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
for( sk_rover = sk_list; sk_rover; sk_rover = sk_rover->next )
|
|
|
|
if( ++i == skcount )
|
|
|
|
break;
|
1998-02-27 18:51:28 +01:00
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
sk = sk_rover->sk;
|
1998-02-27 18:51:28 +01:00
|
|
|
ops = m_alloc_clear( sizeof *ops );
|
|
|
|
ops->sig_class = opt.textmode && !outfile ? 0x01 : 0x00;
|
1998-06-29 14:30:57 +02:00
|
|
|
ops->digest_algo = hash_for(sk->pubkey_algo);
|
|
|
|
ops->pubkey_algo = sk->pubkey_algo;
|
|
|
|
keyid_from_sk( sk, ops->keyid );
|
1998-08-05 18:51:59 +02:00
|
|
|
ops->last = skcount == 1;
|
1998-02-27 18:51:28 +01:00
|
|
|
|
|
|
|
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 )
|
1998-11-10 13:59:59 +01:00
|
|
|
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)) ) {
|
1998-11-10 13:59:59 +01:00
|
|
|
log_error(_("can't open %s: %s\n"),
|
|
|
|
sl->d, strerror(errno) );
|
1998-01-13 20:04:23 +01:00
|
|
|
rc = G10ERR_OPEN_FILE;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
if( opt.verbose )
|
1998-12-29 14:47:31 +01:00
|
|
|
fprintf(stderr, " `%s'", sl->d );
|
1998-01-13 20:04:23 +01:00
|
|
|
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-08-11 19:29:34 +02:00
|
|
|
if( fname || opt.set_filename ) {
|
1998-10-25 20:00:01 +01:00
|
|
|
char *s = make_basename( opt.set_filename ? opt.set_filename : fname );
|
1998-08-11 19:29:34 +02:00
|
|
|
pt = m_alloc( sizeof *pt + strlen(s) - 1 );
|
|
|
|
pt->namelen = strlen(s);
|
|
|
|
memcpy(pt->name, s, pt->namelen );
|
1998-10-25 20:00:01 +01:00
|
|
|
m_free(s);
|
1998-08-11 19:29:34 +02:00
|
|
|
}
|
|
|
|
else { /* no filename */
|
|
|
|
pt = m_alloc( sizeof *pt - 1 );
|
|
|
|
pt->namelen = 0;
|
|
|
|
}
|
1998-01-13 20:04:23 +01:00
|
|
|
if( fname ) {
|
1997-12-31 13:32:54 +01:00
|
|
|
if( !(filesize = iobuf_get_filelength(inp)) )
|
1998-12-29 14:47:31 +01:00
|
|
|
log_info(_("WARNING: `%s' is an empty file\n"), fname );
|
1998-04-30 16:06:01 +02:00
|
|
|
|
|
|
|
/* 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;
|
1997-12-31 13:32:54 +01:00
|
|
|
}
|
1998-08-11 19:29:34 +02:00
|
|
|
else
|
1997-12-31 13:32:54 +01:00
|
|
|
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;
|
1998-07-06 12:23:57 +02:00
|
|
|
pt->new_ctb = !pt->len && !opt.rfc1991;
|
1997-12-31 13:32:54 +01:00
|
|
|
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 */
|
1998-06-29 14:30:57 +02:00
|
|
|
for( sk_rover = sk_list; sk_rover; sk_rover = sk_rover->next ) {
|
|
|
|
PKT_secret_key *sk;
|
1997-12-31 13:32:54 +01:00
|
|
|
PKT_signature *sig;
|
1998-01-12 11:18:17 +01:00
|
|
|
MD_HANDLE md;
|
1997-12-31 13:32:54 +01:00
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
sk = sk_rover->sk;
|
1997-12-31 13:32:54 +01:00
|
|
|
|
|
|
|
/* build the signature packet */
|
1998-05-13 19:53:36 +02:00
|
|
|
/* fixme: this code is partly duplicated in make_keysig_packet */
|
1997-12-31 13:32:54 +01:00
|
|
|
sig = m_alloc_clear( sizeof *sig );
|
1998-10-21 19:34:36 +02:00
|
|
|
sig->version = old_style || opt.force_v3_sigs ? 3 : sk->version;
|
1998-06-29 14:30:57 +02:00
|
|
|
keyid_from_sk( sk, sig->keyid );
|
|
|
|
sig->digest_algo = hash_for(sk->pubkey_algo);
|
|
|
|
sig->pubkey_algo = sk->pubkey_algo;
|
1997-12-31 13:32:54 +01:00
|
|
|
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 );
|
1998-05-13 19:53:36 +02:00
|
|
|
|
|
|
|
if( sig->version >= 4 ) {
|
|
|
|
build_sig_subpkt_from_sig( sig );
|
|
|
|
md_putc( md, sig->version );
|
|
|
|
}
|
1998-01-12 11:18:17 +01:00
|
|
|
md_putc( md, sig->sig_class );
|
1998-05-13 19:53:36 +02:00
|
|
|
if( sig->version < 4 ) {
|
|
|
|
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-05-13 19:53:36 +02:00
|
|
|
else {
|
|
|
|
byte buf[6];
|
|
|
|
size_t n;
|
|
|
|
|
|
|
|
md_putc( md, sig->pubkey_algo );
|
|
|
|
md_putc( md, sig->digest_algo );
|
|
|
|
if( sig->hashed_data ) {
|
|
|
|
n = (sig->hashed_data[0] << 8) | sig->hashed_data[1];
|
|
|
|
md_write( md, sig->hashed_data, n+2 );
|
|
|
|
n += 6;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
n = 6;
|
|
|
|
/* add some magic */
|
|
|
|
buf[0] = sig->version;
|
|
|
|
buf[1] = 0xff;
|
|
|
|
buf[2] = n >> 24; /* hmmm, n is only 16 bit, so this is always 0 */
|
|
|
|
buf[3] = n >> 16;
|
|
|
|
buf[4] = n >> 8;
|
|
|
|
buf[5] = n;
|
|
|
|
md_write( md, buf, 6 );
|
|
|
|
|
|
|
|
}
|
1998-01-12 11:18:17 +01:00
|
|
|
md_final( md );
|
1998-01-28 17:09:43 +01:00
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
rc = do_sign( sk, sig, md, hash_for(sig->pubkey_algo) );
|
1998-01-12 11:18:17 +01:00
|
|
|
md_close( md );
|
1997-12-31 13:32:54 +01:00
|
|
|
|
1998-06-13 08:59:14 +02:00
|
|
|
if( !rc ) { /* 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) );
|
1997-12-31 13:32:54 +01:00
|
|
|
}
|
1998-06-13 08:59:14 +02:00
|
|
|
if( rc )
|
|
|
|
goto leave;
|
1997-12-31 13:32:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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 );
|
1998-06-29 14:30:57 +02:00
|
|
|
release_sk_list( sk_list );
|
|
|
|
release_pk_list( pk_list );
|
1997-12-31 13:32:54 +01:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-02-04 19:54:31 +01:00
|
|
|
|
|
|
|
/****************
|
|
|
|
* 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;
|
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;
|
1998-06-29 14:30:57 +02:00
|
|
|
SK_LIST sk_list = NULL;
|
|
|
|
SK_LIST sk_rover = NULL;
|
1998-06-25 12:19:08 +02:00
|
|
|
int old_style = opt.rfc1991;
|
1998-07-06 12:23:57 +02:00
|
|
|
int only_md5 = 0;
|
1998-02-04 19:54:31 +01:00
|
|
|
|
|
|
|
memset( &afx, 0, sizeof afx);
|
|
|
|
init_packet( &pkt );
|
|
|
|
|
1998-07-06 12:23:57 +02:00
|
|
|
if( (rc=build_sk_list( locusr, &sk_list, 1, PUBKEY_USAGE_SIG )) )
|
1998-02-04 19:54:31 +01:00
|
|
|
goto leave;
|
1998-06-25 12:19:08 +02:00
|
|
|
if( !old_style )
|
1998-06-29 14:30:57 +02:00
|
|
|
old_style = only_old_style( sk_list );
|
1998-02-04 19:54:31 +01:00
|
|
|
|
|
|
|
/* 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 )) ) {
|
1998-11-10 13:59:59 +01:00
|
|
|
log_error(_("can't create %s: %s\n"), outfile, strerror(errno) );
|
1998-02-04 19:54:31 +01:00
|
|
|
rc = G10ERR_CREATE_FILE;
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
else if( opt.verbose )
|
1998-12-29 14:47:31 +01:00
|
|
|
log_info(_("writing to `%s'\n"), outfile );
|
1998-02-04 19:54:31 +01:00
|
|
|
}
|
1998-08-11 19:29:34 +02:00
|
|
|
else if( (rc = open_outfile( fname, 1, &out )) )
|
1998-02-04 19:54:31 +01:00
|
|
|
goto leave;
|
|
|
|
|
1998-04-30 18:56:17 +02:00
|
|
|
iobuf_writestr(out, "-----BEGIN PGP SIGNED MESSAGE-----\n" );
|
1998-07-06 12:23:57 +02:00
|
|
|
|
|
|
|
for( sk_rover = sk_list; sk_rover; sk_rover = sk_rover->next ) {
|
|
|
|
PKT_secret_key *sk = sk_rover->sk;
|
|
|
|
if( hash_for(sk->pubkey_algo) == DIGEST_ALGO_MD5 )
|
|
|
|
only_md5 = 1;
|
|
|
|
else {
|
|
|
|
only_md5 = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( old_style || only_md5 )
|
1998-04-30 18:56:17 +02:00
|
|
|
iobuf_writestr(out, "\n" );
|
|
|
|
else {
|
1998-07-06 12:23:57 +02:00
|
|
|
const char *s;
|
|
|
|
int any = 0;
|
|
|
|
|
1998-05-03 21:35:33 +02:00
|
|
|
iobuf_writestr(out, "Hash: " );
|
1998-07-06 12:23:57 +02:00
|
|
|
for( sk_rover = sk_list; sk_rover; sk_rover = sk_rover->next ) {
|
|
|
|
PKT_secret_key *sk = sk_rover->sk;
|
|
|
|
s = digest_algo_to_string( hash_for(sk->pubkey_algo) );
|
|
|
|
if( s ) {
|
|
|
|
if( any )
|
|
|
|
iobuf_put(out, ',' );
|
|
|
|
iobuf_writestr(out, s );
|
|
|
|
any = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(any);
|
1998-11-20 18:42:18 +01:00
|
|
|
iobuf_writestr(out, "\n" );
|
|
|
|
if( opt.not_dash_escaped )
|
|
|
|
iobuf_writestr( out,
|
|
|
|
"NotDashEscaped: You need GnuPG to verify this message\n" );
|
|
|
|
iobuf_writestr(out, "\n" );
|
1998-04-30 18:56:17 +02:00
|
|
|
}
|
|
|
|
|
1998-02-04 19:54:31 +01:00
|
|
|
|
1998-05-15 20:49:19 +02:00
|
|
|
textmd = md_open(0, 0);
|
1998-06-29 14:30:57 +02:00
|
|
|
for( sk_rover = sk_list; sk_rover; sk_rover = sk_rover->next ) {
|
|
|
|
PKT_secret_key *sk = sk_rover->sk;
|
|
|
|
md_enable(textmd, hash_for(sk->pubkey_algo));
|
1998-05-15 20:49:19 +02:00
|
|
|
}
|
1999-01-21 06:25:29 +01:00
|
|
|
/*md_start_debug( textmd, "sign" );*/
|
1999-03-02 16:48:37 +01:00
|
|
|
copy_clearsig_text( out, inp, textmd,
|
|
|
|
!opt.not_dash_escaped, opt.escape_from );
|
1999-01-20 19:10:35 +01:00
|
|
|
/* fixme: check for read errors */
|
1998-02-04 19:54:31 +01:00
|
|
|
|
1999-01-20 19:10:35 +01:00
|
|
|
/* now write the armor */
|
1998-02-04 19:54:31 +01:00
|
|
|
afx.what = 2;
|
|
|
|
iobuf_push_filter( out, armor_filter, &afx );
|
|
|
|
|
|
|
|
/* loop over the secret certificates */
|
1998-06-29 14:30:57 +02:00
|
|
|
for( sk_rover = sk_list; sk_rover; sk_rover = sk_rover->next ) {
|
|
|
|
PKT_secret_key *sk;
|
1998-02-04 19:54:31 +01:00
|
|
|
PKT_signature *sig;
|
|
|
|
MD_HANDLE md;
|
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
sk = sk_rover->sk;
|
1998-02-04 19:54:31 +01:00
|
|
|
|
|
|
|
/* build the signature packet */
|
1998-05-13 19:53:36 +02:00
|
|
|
/* fixme: this code is duplicated above */
|
1998-02-04 19:54:31 +01:00
|
|
|
sig = m_alloc_clear( sizeof *sig );
|
1998-10-21 19:34:36 +02:00
|
|
|
sig->version = old_style || opt.force_v3_sigs ? 3 : sk->version;
|
1998-06-29 14:30:57 +02:00
|
|
|
keyid_from_sk( sk, sig->keyid );
|
|
|
|
sig->digest_algo = hash_for(sk->pubkey_algo);
|
|
|
|
sig->pubkey_algo = sk->pubkey_algo;
|
1998-02-04 19:54:31 +01:00
|
|
|
sig->timestamp = make_timestamp();
|
|
|
|
sig->sig_class = 0x01;
|
|
|
|
|
|
|
|
md = md_copy( textmd );
|
1998-05-13 19:53:36 +02:00
|
|
|
if( sig->version >= 4 ) {
|
|
|
|
build_sig_subpkt_from_sig( sig );
|
|
|
|
md_putc( md, sig->version );
|
|
|
|
}
|
1998-02-04 19:54:31 +01:00
|
|
|
md_putc( md, sig->sig_class );
|
1998-05-13 19:53:36 +02:00
|
|
|
if( sig->version < 4 ) {
|
|
|
|
u32 a = sig->timestamp;
|
1998-02-04 19:54:31 +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 );
|
|
|
|
}
|
1998-05-13 19:53:36 +02:00
|
|
|
else {
|
|
|
|
byte buf[6];
|
|
|
|
size_t n;
|
|
|
|
|
|
|
|
md_putc( md, sig->pubkey_algo );
|
|
|
|
md_putc( md, sig->digest_algo );
|
|
|
|
if( sig->hashed_data ) {
|
|
|
|
n = (sig->hashed_data[0] << 8) | sig->hashed_data[1];
|
|
|
|
md_write( md, sig->hashed_data, n+2 );
|
|
|
|
n += 6;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
n = 6;
|
|
|
|
/* add some magic */
|
|
|
|
buf[0] = sig->version;
|
|
|
|
buf[1] = 0xff;
|
|
|
|
buf[2] = n >> 24; /* hmmm, n is only 16 bit, so this is always 0 */
|
|
|
|
buf[3] = n >> 16;
|
|
|
|
buf[4] = n >> 8;
|
|
|
|
buf[5] = n;
|
|
|
|
md_write( md, buf, 6 );
|
|
|
|
|
|
|
|
}
|
1998-02-04 19:54:31 +01:00
|
|
|
md_final( md );
|
|
|
|
|
1998-06-29 14:30:57 +02:00
|
|
|
rc = do_sign( sk, sig, md, hash_for(sig->pubkey_algo) );
|
1998-02-04 19:54:31 +01:00
|
|
|
md_close( md );
|
|
|
|
|
1998-06-13 08:59:14 +02:00
|
|
|
if( !rc ) { /* 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) );
|
1998-02-04 19:54:31 +01:00
|
|
|
}
|
1998-06-13 08:59:14 +02:00
|
|
|
if( rc )
|
|
|
|
goto leave;
|
1998-02-04 19:54:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
leave:
|
|
|
|
if( rc )
|
|
|
|
iobuf_cancel(out);
|
|
|
|
else
|
|
|
|
iobuf_close(out);
|
|
|
|
iobuf_close(inp);
|
|
|
|
md_close( textmd );
|
1998-06-29 14:30:57 +02:00
|
|
|
release_sk_list( sk_list );
|
1998-02-04 19:54:31 +01:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-07-29 21:35:05 +02:00
|
|
|
/****************
|
|
|
|
* Create a signature packet for the given public key certificate
|
|
|
|
* and the user id and return it in ret_sig. User signature class SIGCLASS
|
|
|
|
* user-id is not used (and may be NULL if sigclass is 0x20)
|
|
|
|
* If digest_algo is 0 the function selects an appropriate one.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
make_keysig_packet( PKT_signature **ret_sig, PKT_public_key *pk,
|
|
|
|
PKT_user_id *uid, PKT_public_key *subpk,
|
|
|
|
PKT_secret_key *sk,
|
|
|
|
int sigclass, int digest_algo,
|
|
|
|
int (*mksubpkt)(PKT_signature *, void *), void *opaque
|
|
|
|
)
|
|
|
|
{
|
|
|
|
PKT_signature *sig;
|
|
|
|
int rc=0;
|
|
|
|
MD_HANDLE md;
|
|
|
|
|
|
|
|
assert( (sigclass >= 0x10 && sigclass <= 0x13)
|
|
|
|
|| sigclass == 0x20 || sigclass == 0x18 );
|
|
|
|
if( !digest_algo ) {
|
|
|
|
switch( sk->pubkey_algo ) {
|
|
|
|
case PUBKEY_ALGO_DSA: digest_algo = DIGEST_ALGO_SHA1; break;
|
|
|
|
case PUBKEY_ALGO_RSA_S:
|
|
|
|
case PUBKEY_ALGO_RSA: digest_algo = DIGEST_ALGO_MD5; break;
|
|
|
|
default: digest_algo = DIGEST_ALGO_RMD160; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
md = md_open( digest_algo, 0 );
|
|
|
|
|
|
|
|
/* hash the public key certificate and the user id */
|
|
|
|
hash_public_key( md, pk );
|
|
|
|
if( sigclass == 0x18 ) { /* subkey binding */
|
|
|
|
hash_public_key( md, subpk );
|
|
|
|
}
|
|
|
|
else if( sigclass != 0x20 ) {
|
|
|
|
if( sk->version >=4 ) {
|
|
|
|
byte buf[5];
|
|
|
|
buf[0] = 0xb4; /* indicates a userid packet */
|
|
|
|
buf[1] = uid->len >> 24; /* always use 4 length bytes */
|
|
|
|
buf[2] = uid->len >> 16;
|
|
|
|
buf[3] = uid->len >> 8;
|
|
|
|
buf[4] = uid->len;
|
|
|
|
md_write( md, buf, 5 );
|
|
|
|
}
|
|
|
|
md_write( md, uid->name, uid->len );
|
|
|
|
}
|
|
|
|
/* and make the signature packet */
|
|
|
|
sig = m_alloc_clear( sizeof *sig );
|
|
|
|
sig->version = sk->version;
|
|
|
|
keyid_from_sk( sk, sig->keyid );
|
|
|
|
sig->pubkey_algo = sk->pubkey_algo;
|
|
|
|
sig->digest_algo = digest_algo;
|
|
|
|
sig->timestamp = make_timestamp();
|
|
|
|
sig->sig_class = sigclass;
|
|
|
|
if( sig->version >= 4 )
|
|
|
|
build_sig_subpkt_from_sig( sig );
|
|
|
|
|
|
|
|
if( sig->version >= 4 && mksubpkt )
|
|
|
|
rc = (*mksubpkt)( sig, opaque );
|
|
|
|
|
|
|
|
if( !rc ) {
|
|
|
|
if( sig->version >= 4 )
|
|
|
|
md_putc( md, sig->version );
|
|
|
|
md_putc( md, sig->sig_class );
|
|
|
|
if( sig->version < 4 ) {
|
|
|
|
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 );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
byte buf[6];
|
|
|
|
size_t n;
|
|
|
|
|
|
|
|
md_putc( md, sig->pubkey_algo );
|
|
|
|
md_putc( md, sig->digest_algo );
|
|
|
|
if( sig->hashed_data ) {
|
|
|
|
n = (sig->hashed_data[0] << 8) | sig->hashed_data[1];
|
|
|
|
md_write( md, sig->hashed_data, n+2 );
|
|
|
|
n += 6;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
n = 6;
|
|
|
|
/* add some magic */
|
|
|
|
buf[0] = sig->version;
|
|
|
|
buf[1] = 0xff;
|
|
|
|
buf[2] = n >> 24; /* hmmm, n is only 16 bit, so this is always 0 */
|
|
|
|
buf[3] = n >> 16;
|
|
|
|
buf[4] = n >> 8;
|
|
|
|
buf[5] = n;
|
|
|
|
md_write( md, buf, 6 );
|
|
|
|
|
|
|
|
}
|
|
|
|
md_final(md);
|
|
|
|
|
|
|
|
rc = complete_sig( sig, sk, md );
|
|
|
|
}
|
|
|
|
|
|
|
|
md_close( md );
|
|
|
|
if( rc )
|
|
|
|
free_seckey_enc( sig );
|
|
|
|
else
|
|
|
|
*ret_sig = sig;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
1998-02-04 19:54:31 +01:00
|
|
|
|