1997-12-31 13:32:54 +01:00
|
|
|
/* sign.c - sign data
|
2000-07-14 19:34:53 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000 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>
|
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
#include <gcrypt.h>
|
1997-12-31 13:32:54 +01:00
|
|
|
#include "options.h"
|
|
|
|
#include "packet.h"
|
|
|
|
#include "errors.h"
|
|
|
|
#include "iobuf.h"
|
|
|
|
#include "keydb.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "filter.h"
|
|
|
|
#include "ttyio.h"
|
1998-08-05 18:51:59 +02:00
|
|
|
#include "trustdb.h"
|
2000-07-14 19:34:53 +02:00
|
|
|
#include "status.h"
|
1998-03-05 10:22:13 +01:00
|
|
|
#include "i18n.h"
|
1997-12-31 13:32:54 +01:00
|
|
|
|
|
|
|
|
2000-10-04 13:16:19 +02:00
|
|
|
#define ENABLE_BETTER_PGP2_COMPAT 1
|
|
|
|
|
2000-07-14 19:34:53 +02:00
|
|
|
#ifdef HAVE_DOSISH_SYSTEM
|
|
|
|
#define LF "\r\n"
|
|
|
|
#else
|
|
|
|
#define LF "\n"
|
|
|
|
#endif
|
|
|
|
|
1999-11-13 17:43:23 +01:00
|
|
|
/****************
|
|
|
|
* Emulate our old PK interface here - sometime in the future we might
|
|
|
|
* change the internal design to directly fit to libgcrypt.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
pk_sign( int algo, MPI *data, MPI hash, MPI *skey )
|
|
|
|
{
|
|
|
|
GCRY_SEXP s_sig, s_hash, s_skey, list;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
/* make a sexp from skey */
|
|
|
|
if( algo == GCRY_PK_DSA ) {
|
2000-07-25 17:38:12 +02:00
|
|
|
rc = gcry_sexp_build ( &s_skey, NULL,
|
|
|
|
"(private-key(dsa(p%m)(q%m)(g%m)(y%m)(x%m)))",
|
|
|
|
skey[0], skey[1], skey[2], skey[3], skey[4] );
|
1999-11-13 17:43:23 +01:00
|
|
|
}
|
|
|
|
else if( algo == GCRY_PK_ELG || algo == GCRY_PK_ELG_E ) {
|
2000-07-25 17:38:12 +02:00
|
|
|
rc = gcry_sexp_build ( &s_skey, NULL,
|
|
|
|
"(private-key(elg(p%m)(g%m)(y%m)(x%m)))",
|
|
|
|
skey[0], skey[1], skey[2], skey[3] );
|
1999-11-13 17:43:23 +01:00
|
|
|
}
|
|
|
|
else
|
2000-01-27 17:50:45 +01:00
|
|
|
return GPGERR_PUBKEY_ALGO;
|
1999-11-13 17:43:23 +01:00
|
|
|
|
2000-07-25 17:38:12 +02:00
|
|
|
if ( rc )
|
|
|
|
BUG ();
|
|
|
|
|
1999-11-13 17:43:23 +01:00
|
|
|
/* put hash into a S-Exp s_hash */
|
2000-07-25 17:38:12 +02:00
|
|
|
if ( gcry_sexp_build( &s_hash, NULL, "%m", hash ) )
|
|
|
|
BUG ();
|
1999-11-13 17:43:23 +01:00
|
|
|
|
|
|
|
rc = gcry_pk_sign( &s_sig, s_hash, s_skey );
|
|
|
|
gcry_sexp_release( s_hash );
|
|
|
|
gcry_sexp_release( s_skey );
|
|
|
|
|
|
|
|
if( rc )
|
|
|
|
;
|
|
|
|
else {
|
|
|
|
list = gcry_sexp_find_token( s_sig, "r" , 0 );
|
|
|
|
assert( list );
|
2000-07-31 10:04:16 +02:00
|
|
|
data[0] = gcry_sexp_nth_mpi( list, 1, 0 );
|
1999-11-13 17:43:23 +01:00
|
|
|
assert( data[0] );
|
2000-07-25 17:38:12 +02:00
|
|
|
gcry_sexp_release (list);
|
|
|
|
|
1999-11-13 17:43:23 +01:00
|
|
|
list = gcry_sexp_find_token( s_sig, "s" , 0 );
|
|
|
|
assert( list );
|
2000-07-31 10:04:16 +02:00
|
|
|
data[1] = gcry_sexp_nth_mpi( list, 1, 0 );
|
1999-11-13 17:43:23 +01:00
|
|
|
assert( data[1] );
|
2000-07-25 17:38:12 +02:00
|
|
|
gcry_sexp_release (list);
|
1999-11-13 17:43:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
gcry_sexp_release( s_sig );
|
|
|
|
return rc;
|
|
|
|
}
|
1999-05-25 19:56:15 +02:00
|
|
|
|
|
|
|
/****************
|
|
|
|
* Create a notation. It is assumed that the stings in STRLIST
|
|
|
|
* are already checked to contain only printable data and have a valid
|
|
|
|
* NAME=VALUE format.
|
|
|
|
*/
|
|
|
|
static void
|
1999-05-26 14:41:46 +02:00
|
|
|
mk_notation_and_policy( PKT_signature *sig )
|
1999-05-25 19:56:15 +02:00
|
|
|
{
|
|
|
|
const char *string, *s;
|
|
|
|
byte *buf;
|
|
|
|
unsigned n1, n2;
|
|
|
|
|
1999-05-26 14:41:46 +02:00
|
|
|
/* notation data */
|
|
|
|
if( opt.notation_data && sig->version < 4 )
|
1999-05-25 19:56:15 +02:00
|
|
|
log_info("can't put notation data into v3 signatures\n");
|
1999-05-26 14:41:46 +02:00
|
|
|
else if( opt.notation_data ) {
|
|
|
|
STRLIST nd = opt.notation_data;
|
|
|
|
|
|
|
|
for( ; nd; nd = nd->next ) {
|
|
|
|
string = nd->d;
|
|
|
|
s = strchr( string, '=' );
|
|
|
|
if( !s )
|
|
|
|
BUG(); /* we have already parsed this */
|
|
|
|
n1 = s - string;
|
|
|
|
s++;
|
|
|
|
n2 = strlen(s);
|
2000-01-24 12:55:49 +01:00
|
|
|
buf = gcry_xmalloc( 8 + n1 + n2 );
|
1999-05-26 14:41:46 +02:00
|
|
|
buf[0] = 0x80; /* human readable */
|
|
|
|
buf[1] = buf[2] = buf[3] = 0;
|
|
|
|
buf[4] = n1 >> 8;
|
|
|
|
buf[5] = n1;
|
|
|
|
buf[6] = n2 >> 8;
|
|
|
|
buf[7] = n2;
|
|
|
|
memcpy(buf+8, string, n1 );
|
|
|
|
memcpy(buf+8+n1, s, n2 );
|
|
|
|
build_sig_subpkt( sig, SIGSUBPKT_NOTATION
|
|
|
|
| ((nd->flags & 1)? SIGSUBPKT_FLAG_CRITICAL:0),
|
|
|
|
buf, 8+n1+n2 );
|
|
|
|
}
|
1999-05-25 19:56:15 +02:00
|
|
|
}
|
|
|
|
|
1999-05-26 14:41:46 +02:00
|
|
|
/* set policy URL */
|
|
|
|
if( (s=opt.set_policy_url) ) {
|
|
|
|
if( *s == '!' )
|
|
|
|
build_sig_subpkt( sig, SIGSUBPKT_POLICY | SIGSUBPKT_FLAG_CRITICAL,
|
|
|
|
s+1, strlen(s+1) );
|
|
|
|
else
|
|
|
|
build_sig_subpkt( sig, SIGSUBPKT_POLICY, s, strlen(s) );
|
1999-05-25 19:56:15 +02: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,
|
1999-10-26 14:14:37 +02:00
|
|
|
GCRY_MD_HD md, int digest_algo )
|
1998-06-13 08:59:14 +02:00
|
|
|
{
|
|
|
|
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 );
|
2000-07-14 19:34:53 +02:00
|
|
|
if( !opt.ignore_time_conflict )
|
|
|
|
return GPGERR_TIME_CONFLICT;
|
1999-01-12 11:20:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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 )
|
1999-10-26 14:14:37 +02:00
|
|
|
digest_algo = gcry_md_get_algo(md);
|
1998-06-13 08:59:14 +02:00
|
|
|
|
1998-12-10 20:20:47 +01:00
|
|
|
print_digest_algo_note( digest_algo );
|
1999-10-26 14:14:37 +02:00
|
|
|
dp = gcry_md_read( md, digest_algo );
|
1998-06-13 08:59:14 +02:00
|
|
|
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,
|
2000-07-14 19:34:53 +02:00
|
|
|
digest_algo, gcry_mpi_get_nbits(sk->skey[0]), 0 );
|
1999-11-13 17:43:23 +01:00
|
|
|
rc = pk_sign( sk->pubkey_algo, sig->data, frame, sk->skey );
|
1999-12-08 22:03:03 +01:00
|
|
|
mpi_release(frame);
|
1998-06-13 08:59:14 +02:00
|
|
|
if( rc )
|
2000-01-27 17:50:45 +01:00
|
|
|
log_error(_("signing failed: %s\n"), gpg_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"),
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_pk_algo_name(sk->pubkey_algo), ustr );
|
2000-01-24 12:55:49 +01:00
|
|
|
gcry_free(ustr);
|
1998-06-13 08:59:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-12-31 13:32:54 +01:00
|
|
|
|
1998-04-09 13:19:09 +02:00
|
|
|
int
|
1999-10-26 14:14:37 +02:00
|
|
|
complete_sig( PKT_signature *sig, PKT_secret_key *sk, GCRY_MD_HD 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
|
2000-10-04 13:16:19 +02:00
|
|
|
hash_for(int pubkey_algo, int packet_version )
|
1998-05-15 20:49:19 +02:00
|
|
|
{
|
|
|
|
if( opt.def_digest_algo )
|
|
|
|
return opt.def_digest_algo;
|
1999-11-13 17:43:23 +01:00
|
|
|
if( pubkey_algo == GCRY_PK_DSA )
|
1999-12-08 22:03:03 +01:00
|
|
|
return GCRY_MD_SHA1;
|
2000-10-04 13:16:19 +02:00
|
|
|
if( pubkey_algo == GCRY_PK_RSA && packet_version < 4 )
|
1999-12-08 22:03:03 +01:00
|
|
|
return GCRY_MD_MD5;
|
1998-05-15 20:49:19 +02:00
|
|
|
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;
|
1999-11-13 17:43:23 +01:00
|
|
|
if( sk->pubkey_algo == GCRY_PK_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
|
|
|
|
2000-07-14 19:34:53 +02:00
|
|
|
static void
|
|
|
|
print_status_sig_created ( PKT_secret_key *sk, PKT_signature *sig, int what )
|
|
|
|
{
|
|
|
|
byte array[MAX_FINGERPRINT_LEN], *p;
|
|
|
|
char buf[100+MAX_FINGERPRINT_LEN*2];
|
|
|
|
size_t i, n;
|
|
|
|
|
|
|
|
sprintf(buf, "%c %d %d %02x %lu ",
|
|
|
|
what, sig->pubkey_algo, sig->digest_algo, sig->sig_class,
|
|
|
|
(ulong)sig->timestamp );
|
|
|
|
|
|
|
|
fingerprint_from_sk( sk, array, &n );
|
|
|
|
p = buf + strlen(buf);
|
|
|
|
for(i=0; i < n ; i++ )
|
|
|
|
sprintf(p+2*i, "%02X", array[i] );
|
|
|
|
|
|
|
|
write_status_text( STATUS_SIG_CREATED, buf );
|
|
|
|
}
|
|
|
|
|
2000-10-04 13:16:19 +02:00
|
|
|
static int
|
|
|
|
write_one_signature( IOBUF out, PKT_secret_key *sk, int old_style,
|
|
|
|
const char *outfile,
|
|
|
|
GCRY_MD_HD datamd,
|
|
|
|
int sig_class,
|
|
|
|
int status_char )
|
|
|
|
{
|
|
|
|
PKT_signature *sig;
|
|
|
|
GCRY_MD_HD md;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
/* build the signature packet */
|
|
|
|
/* fixme: this code is partly duplicated in make_keysig_packet */
|
|
|
|
sig = gcry_xcalloc( 1, sizeof *sig );
|
|
|
|
sig->version = old_style || opt.force_v3_sigs ? 3 : sk->version;
|
|
|
|
keyid_from_sk( sk, sig->keyid );
|
|
|
|
sig->digest_algo = hash_for(sk->pubkey_algo, sk->version);
|
|
|
|
sig->pubkey_algo = sk->pubkey_algo;
|
|
|
|
sig->timestamp = make_timestamp();
|
|
|
|
sig->sig_class = sig_class;
|
|
|
|
|
|
|
|
md = gcry_md_copy( datamd );
|
|
|
|
if( !md )
|
|
|
|
BUG();
|
|
|
|
if( sig->version >= 4 ) {
|
|
|
|
build_sig_subpkt_from_sig( sig );
|
|
|
|
gcry_md_putc( md, sig->version );
|
|
|
|
}
|
|
|
|
|
|
|
|
mk_notation_and_policy( sig );
|
|
|
|
|
|
|
|
gcry_md_putc( md, sig->sig_class );
|
|
|
|
if( sig->version < 4 ) {
|
|
|
|
u32 a = sig->timestamp;
|
|
|
|
gcry_md_putc( md, (a >> 24) & 0xff );
|
|
|
|
gcry_md_putc( md, (a >> 16) & 0xff );
|
|
|
|
gcry_md_putc( md, (a >> 8) & 0xff );
|
|
|
|
gcry_md_putc( md, a & 0xff );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
byte buf[6];
|
|
|
|
size_t n;
|
|
|
|
|
|
|
|
gcry_md_putc( md, sig->pubkey_algo );
|
|
|
|
gcry_md_putc( md, sig->digest_algo );
|
|
|
|
if( sig->hashed_data ) {
|
|
|
|
n = (sig->hashed_data[0] << 8) | sig->hashed_data[1];
|
|
|
|
gcry_md_write( md, sig->hashed_data, n+2 );
|
|
|
|
n += 6;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gcry_md_putc( md, 0 );/* always hash the length of the subpacket*/
|
|
|
|
gcry_md_putc( md, 0 );
|
|
|
|
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;
|
|
|
|
gcry_md_write( md, buf, 6 );
|
|
|
|
}
|
|
|
|
gcry_md_final( md );
|
|
|
|
|
|
|
|
rc = do_sign( sk, sig, md, hash_for(sig->pubkey_algo, sk->version) );
|
|
|
|
gcry_md_close( md );
|
|
|
|
/* Hmmm: Do we release sig in case of rc != 0? */
|
|
|
|
|
|
|
|
if( !rc ) { /* and write it */
|
|
|
|
PACKET pkt;
|
|
|
|
|
|
|
|
init_packet(&pkt);
|
|
|
|
pkt.pkttype = PKT_SIGNATURE;
|
|
|
|
pkt.pkt.signature = sig;
|
|
|
|
rc = build_packet( out, &pkt );
|
|
|
|
if( !rc && is_status_enabled() ) {
|
|
|
|
print_status_sig_created ( sk, sig, status_char );
|
|
|
|
}
|
|
|
|
free_packet( &pkt );
|
|
|
|
if( rc )
|
|
|
|
log_error("build signature packet failed: %s\n", gpg_errstr(rc) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
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");
|
|
|
|
|
1999-11-13 17:43:23 +01:00
|
|
|
if( (rc=build_sk_list( locusr, &sk_list, 1, GCRY_PK_USAGE_SIGN )) )
|
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 ) {
|
1999-11-13 17:43:23 +01:00
|
|
|
if( (rc=build_pk_list( remusr, &pk_list, GCRY_PK_USAGE_ENCR )) )
|
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) );
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_OPEN_FILE;
|
1997-12-31 13:32:54 +01:00
|
|
|
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) );
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_CREATE_FILE;
|
1998-01-13 20:04:23 +01:00
|
|
|
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 );
|
1999-10-26 14:14:37 +02:00
|
|
|
if( !(mfx.md = gcry_md_open(0, 0)))
|
|
|
|
BUG();
|
1998-05-15 20:49:19 +02:00
|
|
|
|
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;
|
2000-10-04 13:16:19 +02:00
|
|
|
gcry_md_enable(mfx.md, hash_for(sk->pubkey_algo, sk->version ));
|
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
|
|
|
}
|
|
|
|
|
2000-10-04 13:16:19 +02:00
|
|
|
/* Select a compress algorithm */
|
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 {
|
1999-05-25 19:56:15 +02:00
|
|
|
if( old_style
|
|
|
|
|| compr_algo == 1
|
|
|
|
|| (compr_algo == -1 && !encrypt) )
|
|
|
|
zfx.algo = 1; /* use the non optional algorithm */
|
1998-08-05 18:51:59 +02:00
|
|
|
iobuf_push_filter( out, compress_filter, &zfx );
|
|
|
|
}
|
1998-06-25 12:19:08 +02:00
|
|
|
}
|
1998-05-26 15:38:00 +02:00
|
|
|
|
2000-10-04 13:16:19 +02:00
|
|
|
/* Build one-pass signature packets when needed */
|
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;
|
2000-01-24 12:55:49 +01:00
|
|
|
ops = gcry_xcalloc( 1, sizeof *ops );
|
1998-02-27 18:51:28 +01:00
|
|
|
ops->sig_class = opt.textmode && !outfile ? 0x01 : 0x00;
|
2000-10-04 13:16:19 +02:00
|
|
|
ops->digest_algo = hash_for(sk->pubkey_algo, sk->version);
|
1998-06-29 14:30:57 +02:00
|
|
|
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",
|
2000-01-27 17:50:45 +01:00
|
|
|
gpg_errstr(rc));
|
1998-02-27 18:51:28 +01:00
|
|
|
goto leave;
|
|
|
|
}
|
1997-12-31 13:32:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* setup the inner packet */
|
|
|
|
if( detached ) {
|
2000-10-04 13:16:19 +02:00
|
|
|
/* this is pretty much the same for old and new PGP. So no
|
|
|
|
* need to cope with different packet ordering */
|
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) );
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_OPEN_FILE;
|
1998-01-13 20:04:23 +01:00
|
|
|
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 {
|
2000-10-04 13:16:19 +02:00
|
|
|
/* get the filename to be stored into the literal datapacket */
|
1999-08-04 10:45:27 +02:00
|
|
|
if (!opt.no_literal) {
|
1999-07-26 09:44:46 +02:00
|
|
|
if( fname || opt.set_filename ) {
|
2000-10-04 13:16:19 +02:00
|
|
|
char *s = make_basename( opt.set_filename ?
|
|
|
|
opt.set_filename : fname );
|
2000-01-24 12:55:49 +01:00
|
|
|
pt = gcry_xmalloc( sizeof *pt + strlen(s) - 1 );
|
1999-07-26 09:44:46 +02:00
|
|
|
pt->namelen = strlen(s);
|
|
|
|
memcpy(pt->name, s, pt->namelen );
|
2000-01-24 12:55:49 +01:00
|
|
|
gcry_free(s);
|
1999-07-26 09:44:46 +02:00
|
|
|
}
|
|
|
|
else { /* no filename */
|
2000-01-24 12:55:49 +01:00
|
|
|
pt = gcry_xmalloc( sizeof *pt - 1 );
|
1999-07-26 09:44:46 +02:00
|
|
|
pt->namelen = 0;
|
|
|
|
}
|
1999-08-04 10:45:27 +02:00
|
|
|
}
|
1999-07-26 09:44:46 +02:00
|
|
|
|
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 );
|
2000-09-18 16:35:34 +02:00
|
|
|
/* we can't yet encode the length of very large files,
|
|
|
|
* so we switch to partial length encoding in this case */
|
|
|
|
if ( filesize >= IOBUF_FILELENGTH_LIMIT )
|
|
|
|
filesize = 0;
|
1998-04-30 16:06:01 +02:00
|
|
|
|
2000-10-04 13:16:19 +02:00
|
|
|
/* Because the text_filter modifies the length of the
|
1998-04-30 16:06:01 +02:00
|
|
|
* 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
|
1999-07-26 09:44:46 +02:00
|
|
|
filesize = opt.set_filesize ? opt.set_filesize : 0; /* stdin */
|
1999-08-04 10:45:27 +02:00
|
|
|
|
1999-07-26 09:44:46 +02:00
|
|
|
if (!opt.no_literal) {
|
|
|
|
pt->timestamp = make_timestamp();
|
|
|
|
pt->mode = opt.textmode && !outfile ? 't':'b';
|
|
|
|
pt->len = filesize;
|
|
|
|
pt->new_ctb = !pt->len && !opt.rfc1991;
|
|
|
|
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 )) )
|
2000-10-04 13:16:19 +02:00
|
|
|
log_error("build_packet(PLAINTEXT) failed: %s\n",
|
|
|
|
gpg_errstr(rc) );
|
1999-07-26 09:44:46 +02:00
|
|
|
pt->buf = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
byte copy_buffer[4096];
|
|
|
|
int bytes_copied;
|
|
|
|
while ((bytes_copied = iobuf_read(inp, copy_buffer, 4096)) != -1)
|
|
|
|
if (iobuf_write(out, copy_buffer, bytes_copied) == -1) {
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_WRITE_FILE;
|
2000-10-04 13:16:19 +02:00
|
|
|
log_error("copying input to output failed: %s\n",
|
|
|
|
gpg_errstr(rc));
|
1999-07-26 09:44:46 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
memset(copy_buffer, 0, 4096); /* burn buffer */
|
|
|
|
}
|
1997-12-31 13:32:54 +01:00
|
|
|
}
|
|
|
|
|
2000-10-04 13:16:19 +02:00
|
|
|
/* catch errors from above */
|
1999-07-26 09:44:46 +02:00
|
|
|
if (rc)
|
1999-08-04 10:45:27 +02:00
|
|
|
goto leave;
|
1999-07-26 09:44:46 +02:00
|
|
|
|
2000-10-04 13:16:19 +02:00
|
|
|
/* write all the signature packets */
|
|
|
|
for( sk_rover = sk_list; sk_rover && !rc ; sk_rover = sk_rover->next ) {
|
|
|
|
rc = write_one_signature( out, sk_rover->sk,
|
|
|
|
old_style, outfile, mfx.md,
|
|
|
|
opt.textmode && !outfile? 0x01 : 0x00,
|
|
|
|
detached ? 'D':'S' );
|
1997-12-31 13:32:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
leave:
|
|
|
|
if( rc )
|
|
|
|
iobuf_cancel(out);
|
|
|
|
else
|
|
|
|
iobuf_close(out);
|
|
|
|
iobuf_close(inp);
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_close( mfx.md );
|
1998-06-29 14:30:57 +02:00
|
|
|
release_sk_list( sk_list );
|
|
|
|
release_pk_list( pk_list );
|
2000-10-04 13:16:19 +02:00
|
|
|
/* FIXME: Did we release the efx.cfx.dek ? */
|
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;
|
1999-10-26 14:14:37 +02:00
|
|
|
GCRY_MD_HD 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 );
|
|
|
|
|
1999-11-13 17:43:23 +01:00
|
|
|
if( (rc=build_sk_list( locusr, &sk_list, 1, GCRY_PK_USAGE_SIGN )) )
|
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) );
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_OPEN_FILE;
|
1998-02-04 19:54:31 +01:00
|
|
|
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) );
|
2000-01-27 17:50:45 +01:00
|
|
|
rc = GPGERR_CREATE_FILE;
|
1998-02-04 19:54:31 +01:00
|
|
|
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;
|
|
|
|
|
2000-07-14 19:34:53 +02:00
|
|
|
iobuf_writestr(out, "-----BEGIN PGP SIGNED MESSAGE-----" LF );
|
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;
|
2000-10-04 13:16:19 +02:00
|
|
|
if( hash_for(sk->pubkey_algo, sk->version) == GCRY_MD_MD5 )
|
1998-07-06 12:23:57 +02:00
|
|
|
only_md5 = 1;
|
|
|
|
else {
|
|
|
|
only_md5 = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
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
|
|
|
int any = 0;
|
1999-10-26 14:14:37 +02:00
|
|
|
byte hashs_seen[256];
|
1998-07-06 12:23:57 +02:00
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
memset( hashs_seen, 0, sizeof hashs_seen );
|
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;
|
2000-10-04 13:16:19 +02:00
|
|
|
int i = hash_for(sk->pubkey_algo, sk->version);
|
1999-10-26 14:14:37 +02:00
|
|
|
|
|
|
|
if( !hashs_seen[ i & 0xff ] ) {
|
|
|
|
if( !openpgp_md_test_algo( i ) ) {
|
|
|
|
hashs_seen[ i & 0xff ] = 1;
|
|
|
|
if( any )
|
|
|
|
iobuf_put(out, ',' );
|
|
|
|
iobuf_writestr(out, gcry_md_algo_name( i ) );
|
|
|
|
any = 1;
|
|
|
|
}
|
1998-07-06 12:23:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
|
2000-07-14 19:34:53 +02:00
|
|
|
textmd = gcry_md_open(0, 0);
|
|
|
|
if( !textmd )
|
1999-10-26 14:14:37 +02:00
|
|
|
BUG();
|
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;
|
2000-10-04 13:16:19 +02:00
|
|
|
gcry_md_enable(textmd, hash_for(sk->pubkey_algo, sk->version));
|
1998-05-15 20:49:19 +02:00
|
|
|
}
|
2000-07-14 19:34:53 +02:00
|
|
|
if ( DBG_HASHING )
|
|
|
|
gcry_md_start_debug( textmd, "clearsign" );
|
1999-03-02 16:48:37 +01:00
|
|
|
copy_clearsig_text( out, inp, textmd,
|
1999-05-20 14:11:41 +02:00
|
|
|
!opt.not_dash_escaped, opt.escape_from, old_style );
|
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 );
|
|
|
|
|
2000-10-04 13:16:19 +02:00
|
|
|
/* write all the signature packets */
|
|
|
|
for( sk_rover = sk_list; sk_rover && !rc ; sk_rover = sk_rover->next ) {
|
|
|
|
rc = write_one_signature( out, sk_rover->sk,
|
|
|
|
old_style, outfile, textmd,
|
|
|
|
0x01,
|
|
|
|
'C' );
|
1998-02-04 19:54:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
leave:
|
|
|
|
if( rc )
|
|
|
|
iobuf_cancel(out);
|
|
|
|
else
|
|
|
|
iobuf_close(out);
|
|
|
|
iobuf_close(inp);
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_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;
|
1999-10-26 14:14:37 +02:00
|
|
|
GCRY_MD_HD md;
|
1998-07-29 21:35:05 +02:00
|
|
|
|
|
|
|
assert( (sigclass >= 0x10 && sigclass <= 0x13)
|
1999-04-28 13:06:52 +02:00
|
|
|
|| sigclass == 0x20 || sigclass == 0x18
|
|
|
|
|| sigclass == 0x30 || sigclass == 0x28 );
|
1998-07-29 21:35:05 +02:00
|
|
|
if( !digest_algo ) {
|
|
|
|
switch( sk->pubkey_algo ) {
|
1999-12-08 22:03:03 +01:00
|
|
|
case GCRY_PK_DSA: digest_algo = GCRY_MD_SHA1; break;
|
1999-11-13 17:43:23 +01:00
|
|
|
case GCRY_PK_RSA_S:
|
1999-12-08 22:03:03 +01:00
|
|
|
case GCRY_PK_RSA: digest_algo = GCRY_MD_MD5; break;
|
|
|
|
default: digest_algo = GCRY_MD_RMD160; break;
|
1998-07-29 21:35:05 +02:00
|
|
|
}
|
|
|
|
}
|
1999-10-26 14:14:37 +02:00
|
|
|
if( !(md = gcry_md_open( digest_algo, 0 )))
|
|
|
|
BUG();
|
1998-07-29 21:35:05 +02:00
|
|
|
|
|
|
|
/* hash the public key certificate and the user id */
|
|
|
|
hash_public_key( md, pk );
|
1999-04-28 13:06:52 +02:00
|
|
|
if( sigclass == 0x18 || sigclass == 0x28 ) { /* subkey binding/revocation*/
|
1998-07-29 21:35:05 +02:00
|
|
|
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;
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_write( md, buf, 5 );
|
1998-07-29 21:35:05 +02:00
|
|
|
}
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_write( md, uid->name, uid->len );
|
1998-07-29 21:35:05 +02:00
|
|
|
}
|
|
|
|
/* and make the signature packet */
|
2000-01-24 12:55:49 +01:00
|
|
|
sig = gcry_xcalloc( 1, sizeof *sig );
|
1998-07-29 21:35:05 +02:00
|
|
|
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 ) {
|
1999-05-26 14:41:46 +02:00
|
|
|
mk_notation_and_policy( sig );
|
1998-07-29 21:35:05 +02:00
|
|
|
if( sig->version >= 4 )
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_putc( md, sig->version );
|
|
|
|
gcry_md_putc( md, sig->sig_class );
|
1998-07-29 21:35:05 +02:00
|
|
|
if( sig->version < 4 ) {
|
|
|
|
u32 a = sig->timestamp;
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_putc( md, (a >> 24) & 0xff );
|
|
|
|
gcry_md_putc( md, (a >> 16) & 0xff );
|
|
|
|
gcry_md_putc( md, (a >> 8) & 0xff );
|
|
|
|
gcry_md_putc( md, a & 0xff );
|
1998-07-29 21:35:05 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
byte buf[6];
|
|
|
|
size_t n;
|
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_putc( md, sig->pubkey_algo );
|
|
|
|
gcry_md_putc( md, sig->digest_algo );
|
1998-07-29 21:35:05 +02:00
|
|
|
if( sig->hashed_data ) {
|
|
|
|
n = (sig->hashed_data[0] << 8) | sig->hashed_data[1];
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_write( md, sig->hashed_data, n+2 );
|
1998-07-29 21:35:05 +02:00
|
|
|
n += 6;
|
|
|
|
}
|
1999-04-29 12:32:29 +02:00
|
|
|
else {
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_putc( md, 0 ); /* always hash the length of the subpacket*/
|
|
|
|
gcry_md_putc( md, 0 );
|
1998-07-29 21:35:05 +02:00
|
|
|
n = 6;
|
1999-04-29 12:32:29 +02:00
|
|
|
}
|
1998-07-29 21:35:05 +02:00
|
|
|
/* 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;
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_write( md, buf, 6 );
|
1998-07-29 21:35:05 +02:00
|
|
|
|
|
|
|
}
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_final(md);
|
1998-07-29 21:35:05 +02:00
|
|
|
|
|
|
|
rc = complete_sig( sig, sk, md );
|
|
|
|
}
|
|
|
|
|
1999-10-26 14:14:37 +02:00
|
|
|
gcry_md_close( md );
|
1998-07-29 21:35:05 +02:00
|
|
|
if( rc )
|
|
|
|
free_seckey_enc( sig );
|
|
|
|
else
|
|
|
|
*ret_sig = sig;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
1998-02-04 19:54:31 +01:00
|
|
|
|