2001-11-23 18:12:37 +01:00
|
|
|
|
/* sign.c - Sign a message
|
2002-08-09 20:12:22 +02:00
|
|
|
|
* Copyright (C) 2001, 2002 Free Software Foundation, Inc.
|
2001-11-23 18:12:37 +01:00
|
|
|
|
*
|
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
|
*
|
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* 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 <unistd.h>
|
|
|
|
|
#include <time.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
|
|
#include <gcrypt.h>
|
|
|
|
|
#include <ksba.h>
|
|
|
|
|
|
|
|
|
|
#include "gpgsm.h"
|
|
|
|
|
#include "keydb.h"
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
2001-11-24 15:26:27 +01:00
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
static void
|
|
|
|
|
hash_data (int fd, GCRY_MD_HD md)
|
|
|
|
|
{
|
|
|
|
|
FILE *fp;
|
|
|
|
|
char buffer[4096];
|
|
|
|
|
int nread;
|
|
|
|
|
|
|
|
|
|
fp = fdopen ( dup (fd), "rb");
|
|
|
|
|
if (!fp)
|
|
|
|
|
{
|
|
|
|
|
log_error ("fdopen(%d) failed: %s\n", fd, strerror (errno));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
nread = fread (buffer, 1, DIM(buffer), fp);
|
|
|
|
|
gcry_md_write (md, buffer, nread);
|
|
|
|
|
}
|
|
|
|
|
while (nread);
|
|
|
|
|
if (ferror (fp))
|
|
|
|
|
log_error ("read error on fd %d: %s\n", fd, strerror (errno));
|
|
|
|
|
fclose (fp);
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-12 11:54:57 +02:00
|
|
|
|
static int
|
|
|
|
|
hash_and_copy_data (int fd, GCRY_MD_HD md, KsbaWriter writer)
|
|
|
|
|
{
|
|
|
|
|
KsbaError err;
|
|
|
|
|
FILE *fp;
|
|
|
|
|
char buffer[4096];
|
|
|
|
|
int nread;
|
|
|
|
|
int rc = 0;
|
|
|
|
|
int any = 0;
|
|
|
|
|
|
|
|
|
|
fp = fdopen ( dup (fd), "rb");
|
|
|
|
|
if (!fp)
|
|
|
|
|
{
|
|
|
|
|
log_error ("fdopen(%d) failed: %s\n", fd, strerror (errno));
|
|
|
|
|
return GNUPG_File_Open_Error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
nread = fread (buffer, 1, DIM(buffer), fp);
|
|
|
|
|
if (nread)
|
|
|
|
|
{
|
|
|
|
|
any = 1;
|
|
|
|
|
gcry_md_write (md, buffer, nread);
|
|
|
|
|
err = ksba_writer_write_octet_string (writer, buffer, nread, 0);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("write failed: %s\n", ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
while (nread && !rc);
|
|
|
|
|
if (ferror (fp))
|
|
|
|
|
{
|
|
|
|
|
log_error ("read error on fd %d: %s\n", fd, strerror (errno));
|
|
|
|
|
rc = GNUPG_Read_Error;
|
|
|
|
|
}
|
|
|
|
|
fclose (fp);
|
|
|
|
|
if (!any)
|
|
|
|
|
{
|
|
|
|
|
/* We can't allow to sign an empty message becuase it does not
|
|
|
|
|
make mnuch sense and more seriously, ksba-cms_build has
|
|
|
|
|
already written the tag for data and now expects an octet
|
|
|
|
|
string but an octet string of zeize 0 is illegal. */
|
|
|
|
|
log_error ("cannot sign an empty message\n");
|
|
|
|
|
rc = GNUPG_No_Data;
|
|
|
|
|
}
|
|
|
|
|
if (!rc)
|
|
|
|
|
{
|
|
|
|
|
err = ksba_writer_write_octet_string (writer, NULL, 0, 1);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("write failed: %s\n", ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
|
2002-03-05 16:56:46 +01:00
|
|
|
|
/* Get the default certificate which is defined as the first one our
|
|
|
|
|
keyDB retruns and has a secret key available */
|
|
|
|
|
int
|
|
|
|
|
gpgsm_get_default_cert (KsbaCert *r_cert)
|
|
|
|
|
{
|
|
|
|
|
KEYDB_HANDLE hd;
|
|
|
|
|
KsbaCert cert = NULL;
|
|
|
|
|
int rc;
|
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
|
|
hd = keydb_new (0);
|
|
|
|
|
if (!hd)
|
|
|
|
|
return GNUPG_General_Error;
|
|
|
|
|
rc = keydb_search_first (hd);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
keydb_release (hd);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
rc = keydb_get_cert (hd, &cert);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("keydb_get_cert failed: %s\n", gnupg_strerror (rc));
|
|
|
|
|
keydb_release (hd);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p = gpgsm_get_keygrip_hexstring (cert);
|
|
|
|
|
if (p)
|
|
|
|
|
{
|
|
|
|
|
if (!gpgsm_agent_havekey (p))
|
|
|
|
|
{
|
|
|
|
|
xfree (p);
|
|
|
|
|
keydb_release (hd);
|
|
|
|
|
*r_cert = cert;
|
|
|
|
|
return 0; /* got it */
|
|
|
|
|
}
|
|
|
|
|
xfree (p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ksba_cert_release (cert);
|
|
|
|
|
cert = NULL;
|
|
|
|
|
}
|
|
|
|
|
while (!(rc = keydb_search_next (hd)));
|
|
|
|
|
if (rc && rc != -1)
|
|
|
|
|
log_error ("keydb_search_next failed: %s\n", gnupg_strerror (rc));
|
|
|
|
|
|
|
|
|
|
ksba_cert_release (cert);
|
|
|
|
|
keydb_release (hd);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
static KsbaCert
|
|
|
|
|
get_default_signer (void)
|
|
|
|
|
{
|
2001-12-14 14:35:34 +01:00
|
|
|
|
KEYDB_SEARCH_DESC desc;
|
2001-11-23 18:12:37 +01:00
|
|
|
|
KsbaCert cert = NULL;
|
|
|
|
|
KEYDB_HANDLE kh = NULL;
|
|
|
|
|
int rc;
|
|
|
|
|
|
2002-03-05 16:56:46 +01:00
|
|
|
|
if (!opt.local_user)
|
|
|
|
|
{
|
|
|
|
|
rc = gpgsm_get_default_cert (&cert);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
if (rc != -1)
|
|
|
|
|
log_debug ("failed to find default certificate: %s\n",
|
|
|
|
|
gnupg_strerror (rc));
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
return cert;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rc = keydb_classify_name (opt.local_user, &desc);
|
2001-12-14 14:35:34 +01:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("failed to find default signer: %s\n", gnupg_strerror (rc));
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
kh = keydb_new (0);
|
|
|
|
|
if (!kh)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2001-12-14 14:35:34 +01:00
|
|
|
|
rc = keydb_search (kh, &desc, 1);
|
2001-11-23 18:12:37 +01:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("failed to find default certificate: rc=%d\n", rc);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
rc = keydb_get_cert (kh, &cert);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("failed to get cert: rc=%d\n", rc);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
keydb_release (kh);
|
|
|
|
|
return cert;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-25 19:18:40 +01:00
|
|
|
|
/* Depending on the options in CTRL add the certificate CERT as well as
|
2002-01-25 17:41:13 +01:00
|
|
|
|
other certificate up in the chain to the Root-CA to the CMS
|
|
|
|
|
object. */
|
|
|
|
|
static int
|
|
|
|
|
add_certificate_list (CTRL ctrl, KsbaCMS cms, KsbaCert cert)
|
|
|
|
|
{
|
|
|
|
|
KsbaError err;
|
|
|
|
|
int rc = 0;
|
|
|
|
|
KsbaCert next = NULL;
|
|
|
|
|
int n;
|
2002-02-25 19:18:40 +01:00
|
|
|
|
int not_root = 0;
|
2002-01-25 17:41:13 +01:00
|
|
|
|
|
|
|
|
|
ksba_cert_ref (cert);
|
|
|
|
|
|
|
|
|
|
n = ctrl->include_certs;
|
2002-02-25 19:18:40 +01:00
|
|
|
|
if (n == -2)
|
|
|
|
|
{
|
|
|
|
|
not_root = 1;
|
|
|
|
|
n = -1;
|
|
|
|
|
}
|
2002-01-25 17:41:13 +01:00
|
|
|
|
if (n < 0 || n > 50)
|
|
|
|
|
n = 50; /* We better apply an upper bound */
|
|
|
|
|
|
|
|
|
|
if (n)
|
|
|
|
|
{
|
2002-02-25 19:18:40 +01:00
|
|
|
|
if (not_root && gpgsm_is_root_cert (cert))
|
|
|
|
|
err = 0;
|
|
|
|
|
else
|
|
|
|
|
err = ksba_cms_add_cert (cms, cert);
|
2002-01-25 17:41:13 +01:00
|
|
|
|
if (err)
|
|
|
|
|
goto ksba_failure;
|
|
|
|
|
}
|
|
|
|
|
while ( n-- && !(rc = gpgsm_walk_cert_chain (cert, &next)) )
|
|
|
|
|
{
|
2002-02-25 19:18:40 +01:00
|
|
|
|
if (not_root && gpgsm_is_root_cert (next))
|
|
|
|
|
err = 0;
|
|
|
|
|
else
|
|
|
|
|
err = ksba_cms_add_cert (cms, next);
|
2002-01-25 17:41:13 +01:00
|
|
|
|
ksba_cert_release (cert);
|
|
|
|
|
cert = next; next = NULL;
|
|
|
|
|
if (err)
|
|
|
|
|
goto ksba_failure;
|
|
|
|
|
}
|
|
|
|
|
ksba_cert_release (cert);
|
|
|
|
|
|
|
|
|
|
return rc == -1? 0: rc;
|
|
|
|
|
|
|
|
|
|
ksba_failure:
|
|
|
|
|
ksba_cert_release (cert);
|
|
|
|
|
log_error ("ksba_cms_add_cert failed: %s\n", ksba_strerror (err));
|
|
|
|
|
return map_ksba_err (err);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
|
|
|
|
|
/* Perform a sign operation.
|
|
|
|
|
|
2002-06-12 11:54:57 +02:00
|
|
|
|
Sign the data received on DATA-FD in embedded mode or in detached
|
|
|
|
|
mode when DETACHED is true. Write the signature to OUT_FP. The
|
2002-08-09 20:12:22 +02:00
|
|
|
|
keys used to sign are taken from SIGNERLIST or the default one will
|
|
|
|
|
be used if the value of this argument is NULL. */
|
2001-11-23 18:12:37 +01:00
|
|
|
|
int
|
2002-08-09 20:12:22 +02:00
|
|
|
|
gpgsm_sign (CTRL ctrl, CERTLIST signerlist,
|
|
|
|
|
int data_fd, int detached, FILE *out_fp)
|
2001-11-23 18:12:37 +01:00
|
|
|
|
{
|
|
|
|
|
int i, rc;
|
|
|
|
|
KsbaError err;
|
2001-11-27 18:40:09 +01:00
|
|
|
|
Base64Context b64writer = NULL;
|
|
|
|
|
KsbaWriter writer;
|
2001-11-23 18:12:37 +01:00
|
|
|
|
KsbaCMS cms = NULL;
|
|
|
|
|
KsbaStopReason stopreason;
|
|
|
|
|
KEYDB_HANDLE kh = NULL;
|
|
|
|
|
GCRY_MD_HD data_md = NULL;
|
|
|
|
|
int signer;
|
|
|
|
|
const char *algoid;
|
|
|
|
|
int algo;
|
2001-12-15 13:36:39 +01:00
|
|
|
|
time_t signed_at;
|
2002-08-09 20:12:22 +02:00
|
|
|
|
CERTLIST cl;
|
|
|
|
|
int release_signerlist = 0;
|
2001-11-23 18:12:37 +01:00
|
|
|
|
|
|
|
|
|
kh = keydb_new (0);
|
|
|
|
|
if (!kh)
|
|
|
|
|
{
|
|
|
|
|
log_error (_("failed to allocated keyDB handle\n"));
|
2001-11-24 18:43:43 +01:00
|
|
|
|
rc = GNUPG_General_Error;
|
2001-11-23 18:12:37 +01:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-10 20:47:20 +01:00
|
|
|
|
ctrl->pem_name = "SIGNED MESSAGE";
|
2001-11-27 18:40:09 +01:00
|
|
|
|
rc = gpgsm_create_writer (&b64writer, ctrl, out_fp, &writer);
|
2001-11-23 18:12:37 +01:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
2001-11-27 18:40:09 +01:00
|
|
|
|
log_error ("can't create writer: %s\n", gnupg_strerror (rc));
|
2001-11-23 18:12:37 +01:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cms = ksba_cms_new ();
|
|
|
|
|
if (!cms)
|
|
|
|
|
{
|
|
|
|
|
rc = seterr (Out_Of_Core);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
err = ksba_cms_set_reader_writer (cms, NULL, writer);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("ksba_cms_set_reader_writer failed: %s\n",
|
|
|
|
|
ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We are going to create signed data with data as encap. content */
|
|
|
|
|
err = ksba_cms_set_content_type (cms, 0, KSBA_CT_SIGNED_DATA);
|
|
|
|
|
if (!err)
|
|
|
|
|
err = ksba_cms_set_content_type (cms, 1, KSBA_CT_DATA);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("ksba_cms_set_content_type failed: %s\n",
|
|
|
|
|
ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-09 20:12:22 +02:00
|
|
|
|
/* If no list of signers is given, use a default one. */
|
|
|
|
|
if (!signerlist)
|
2001-11-23 18:12:37 +01:00
|
|
|
|
{
|
2002-08-09 20:12:22 +02:00
|
|
|
|
KsbaCert cert = get_default_signer ();
|
|
|
|
|
if (!cert)
|
|
|
|
|
{
|
|
|
|
|
log_error ("no default signer found\n");
|
|
|
|
|
rc = seterr (General_Error);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
signerlist = xtrycalloc (1, sizeof *signerlist);
|
|
|
|
|
if (!signerlist)
|
|
|
|
|
{
|
|
|
|
|
rc = GNUPG_Out_Of_Core;
|
|
|
|
|
ksba_cert_release (cert);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
signerlist->cert = cert;
|
|
|
|
|
release_signerlist = 1;
|
2001-11-23 18:12:37 +01:00
|
|
|
|
}
|
2002-04-12 20:54:34 +02:00
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
|
2002-08-09 20:12:22 +02:00
|
|
|
|
/* Gather certificates of signers and store them in the CMS object. */
|
|
|
|
|
for (cl=signerlist; cl; cl = cl->next)
|
2001-11-23 18:12:37 +01:00
|
|
|
|
{
|
2002-08-09 20:12:22 +02:00
|
|
|
|
rc = gpgsm_cert_use_sign_p (cl->cert);
|
|
|
|
|
if (rc)
|
|
|
|
|
goto leave;
|
|
|
|
|
|
|
|
|
|
err = ksba_cms_add_signer (cms, cl->cert);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("ksba_cms_add_signer failed: %s\n", ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
rc = add_certificate_list (ctrl, cms, cl->cert);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("failed to store list of certificates: %s\n",
|
|
|
|
|
gnupg_strerror(rc));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
/* Set the hash algorithm we are going to use */
|
|
|
|
|
err = ksba_cms_add_digest_algo (cms, "1.3.14.3.2.26" /*SHA-1*/);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("ksba_cms_add_digest_algo failed: %s\n",
|
|
|
|
|
ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2001-11-23 18:12:37 +01:00
|
|
|
|
}
|
2002-08-09 20:12:22 +02:00
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
/* Prepare hashing (actually we are figuring out what we have set above)*/
|
|
|
|
|
data_md = gcry_md_open (0, 0);
|
|
|
|
|
if (!data_md)
|
|
|
|
|
{
|
|
|
|
|
rc = map_gcry_err (gcry_errno());
|
|
|
|
|
log_error ("md_open failed: %s\n", gcry_strerror (-1));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2001-12-14 20:36:33 +01:00
|
|
|
|
if (DBG_HASHING)
|
|
|
|
|
gcry_md_start_debug (data_md, "sign.data");
|
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
for (i=0; (algoid=ksba_cms_get_digest_algo_list (cms, i)); i++)
|
|
|
|
|
{
|
|
|
|
|
algo = gcry_md_map_name (algoid);
|
|
|
|
|
if (!algo)
|
|
|
|
|
{
|
|
|
|
|
log_error ("unknown hash algorithm `%s'\n", algoid? algoid:"?");
|
2001-11-24 18:43:43 +01:00
|
|
|
|
rc = GNUPG_Bug;
|
2001-11-23 18:12:37 +01:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
gcry_md_enable (data_md, algo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (detached)
|
2001-11-26 14:08:36 +01:00
|
|
|
|
{ /* we hash the data right now so that we can store the message
|
|
|
|
|
digest. ksba_cms_build() takes this as an flag that detached
|
2001-11-23 18:12:37 +01:00
|
|
|
|
data is expected. */
|
|
|
|
|
unsigned char *digest;
|
|
|
|
|
size_t digest_len;
|
|
|
|
|
/* Fixme do this for all signers and get the algo to use from
|
|
|
|
|
the signer's certificate - does not make mich sense, bu we
|
|
|
|
|
should do this consistent as we have already done it above */
|
|
|
|
|
algo = GCRY_MD_SHA1;
|
|
|
|
|
hash_data (data_fd, data_md);
|
|
|
|
|
digest = gcry_md_read (data_md, algo);
|
|
|
|
|
digest_len = gcry_md_get_algo_dlen (algo);
|
|
|
|
|
if ( !digest || !digest_len)
|
|
|
|
|
{
|
|
|
|
|
log_error ("problem getting the hash of the data\n");
|
2001-11-24 18:43:43 +01:00
|
|
|
|
rc = GNUPG_Bug;
|
2001-11-23 18:12:37 +01:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2002-08-09 20:12:22 +02:00
|
|
|
|
for (cl=signerlist,signer=0; cl; cl = cl->next, signer++)
|
2001-11-23 18:12:37 +01:00
|
|
|
|
{
|
2002-08-09 20:12:22 +02:00
|
|
|
|
err = ksba_cms_set_message_digest (cms, signer, digest, digest_len);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("ksba_cms_set_message_digest failed: %s\n",
|
|
|
|
|
ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2001-11-23 18:12:37 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2001-12-15 13:36:39 +01:00
|
|
|
|
|
2002-05-14 18:51:00 +02:00
|
|
|
|
signed_at = gnupg_get_time ();
|
2002-08-09 20:12:22 +02:00
|
|
|
|
for (cl=signerlist,signer=0; cl; cl = cl->next, signer++)
|
2001-11-26 14:08:36 +01:00
|
|
|
|
{
|
2002-08-09 20:12:22 +02:00
|
|
|
|
err = ksba_cms_set_signing_time (cms, signer, signed_at);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("ksba_cms_set_signing_time failed: %s\n",
|
|
|
|
|
ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2001-11-26 14:08:36 +01:00
|
|
|
|
}
|
2001-12-15 13:36:39 +01:00
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
err = ksba_cms_build (cms, &stopreason);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("ksba_cms_build failed: %s\n", ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (stopreason == KSBA_SR_BEGIN_DATA)
|
|
|
|
|
{ /* hash the data and store the message digest */
|
2002-06-12 11:54:57 +02:00
|
|
|
|
unsigned char *digest;
|
|
|
|
|
size_t digest_len;
|
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
assert (!detached);
|
2002-08-09 20:12:22 +02:00
|
|
|
|
/* Fixme: get the algo to use from the signer's certificate
|
|
|
|
|
- does not make much sense, but we should do this
|
|
|
|
|
consistent as we have already done it above. Code is
|
|
|
|
|
mostly duplicated above. */
|
2002-06-12 11:54:57 +02:00
|
|
|
|
|
|
|
|
|
algo = GCRY_MD_SHA1;
|
|
|
|
|
rc = hash_and_copy_data (data_fd, data_md, writer);
|
|
|
|
|
if (rc)
|
|
|
|
|
goto leave;
|
|
|
|
|
digest = gcry_md_read (data_md, algo);
|
|
|
|
|
digest_len = gcry_md_get_algo_dlen (algo);
|
|
|
|
|
if ( !digest || !digest_len)
|
|
|
|
|
{
|
|
|
|
|
log_error ("problem getting the hash of the data\n");
|
|
|
|
|
rc = GNUPG_Bug;
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2002-08-09 20:12:22 +02:00
|
|
|
|
for (cl=signerlist,signer=0; cl; cl = cl->next, signer++)
|
2002-06-12 11:54:57 +02:00
|
|
|
|
{
|
2002-08-09 20:12:22 +02:00
|
|
|
|
err = ksba_cms_set_message_digest (cms, signer,
|
|
|
|
|
digest, digest_len);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("ksba_cms_set_message_digest failed: %s\n",
|
|
|
|
|
ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2002-06-12 11:54:57 +02:00
|
|
|
|
}
|
2001-11-23 18:12:37 +01:00
|
|
|
|
}
|
|
|
|
|
else if (stopreason == KSBA_SR_NEED_SIG)
|
|
|
|
|
{ /* calculate the signature for all signers */
|
|
|
|
|
GCRY_MD_HD md;
|
|
|
|
|
|
|
|
|
|
algo = GCRY_MD_SHA1;
|
|
|
|
|
md = gcry_md_open (algo, 0);
|
2001-12-14 20:36:33 +01:00
|
|
|
|
if (DBG_HASHING)
|
|
|
|
|
gcry_md_start_debug (md, "sign.attr");
|
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
if (!md)
|
|
|
|
|
{
|
|
|
|
|
log_error ("md_open failed: %s\n", gcry_strerror (-1));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
ksba_cms_set_hash_function (cms, HASH_FNC, md);
|
2002-08-09 20:12:22 +02:00
|
|
|
|
for (cl=signerlist,signer=0; cl; cl = cl->next, signer++)
|
2001-12-15 13:36:39 +01:00
|
|
|
|
{
|
2002-08-09 20:12:22 +02:00
|
|
|
|
char *sigval = NULL;
|
2001-12-15 13:36:39 +01:00
|
|
|
|
char *buf, *fpr;
|
2002-08-09 20:12:22 +02:00
|
|
|
|
|
|
|
|
|
if (signer)
|
|
|
|
|
gcry_md_reset (md);
|
|
|
|
|
rc = ksba_cms_hash_signed_attrs (cms, signer);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("hashing signed attrs failed: %s\n",
|
|
|
|
|
ksba_strerror (rc));
|
|
|
|
|
gcry_md_close (md);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rc = gpgsm_create_cms_signature (cl->cert, md, algo, &sigval);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
gcry_md_close (md);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
err = ksba_cms_set_sig_val (cms, signer, sigval);
|
|
|
|
|
xfree (sigval);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("failed to store the signature: %s\n",
|
|
|
|
|
ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
gcry_md_close (md);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* write a status message */
|
|
|
|
|
fpr = gpgsm_get_fingerprint_hexstring (cl->cert, GCRY_MD_SHA1);
|
2001-12-15 13:36:39 +01:00
|
|
|
|
if (!fpr)
|
|
|
|
|
{
|
|
|
|
|
rc = seterr (Out_Of_Core);
|
2002-08-09 20:12:22 +02:00
|
|
|
|
gcry_md_close (md);
|
2001-12-15 13:36:39 +01:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
rc = asprintf (&buf, "%c %d %d 00 %lu %s",
|
2002-08-09 20:12:22 +02:00
|
|
|
|
detached? 'D':'S',
|
|
|
|
|
GCRY_PK_RSA, /* FIXME: get pk algo from cert */
|
|
|
|
|
algo,
|
|
|
|
|
(ulong)signed_at,
|
|
|
|
|
fpr);
|
2001-12-15 13:36:39 +01:00
|
|
|
|
xfree (fpr);
|
|
|
|
|
if (rc < 0)
|
|
|
|
|
{
|
|
|
|
|
rc = seterr (Out_Of_Core);
|
2002-08-09 20:12:22 +02:00
|
|
|
|
gcry_md_close (md);
|
2001-12-15 13:36:39 +01:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
rc = 0;
|
2002-08-09 20:12:22 +02:00
|
|
|
|
gpgsm_status (ctrl, STATUS_SIG_CREATED, buf);
|
2001-12-15 13:36:39 +01:00
|
|
|
|
free (buf); /* yes, we must use the regular free() here */
|
|
|
|
|
}
|
2002-08-09 20:12:22 +02:00
|
|
|
|
gcry_md_close (md);
|
2001-12-15 13:36:39 +01:00
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
while (stopreason != KSBA_SR_READY);
|
|
|
|
|
|
2001-11-27 19:38:59 +01:00
|
|
|
|
rc = gpgsm_finish_writer (b64writer);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("write failed: %s\n", gnupg_strerror (rc));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2001-12-15 13:36:39 +01:00
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
log_info ("signature created\n");
|
|
|
|
|
|
2001-12-15 13:36:39 +01:00
|
|
|
|
|
2001-11-23 18:12:37 +01:00
|
|
|
|
leave:
|
2002-08-09 20:12:22 +02:00
|
|
|
|
if (release_signerlist)
|
|
|
|
|
gpgsm_release_certlist (signerlist);
|
2001-11-23 18:12:37 +01:00
|
|
|
|
ksba_cms_release (cms);
|
2001-11-27 18:40:09 +01:00
|
|
|
|
gpgsm_destroy_writer (b64writer);
|
2001-11-23 18:12:37 +01:00
|
|
|
|
keydb_release (kh);
|
|
|
|
|
gcry_md_close (data_md);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|