2001-11-23 17:12:37 +00:00
|
|
|
|
/* sign.c - Sign a message
|
|
|
|
|
* Copyright (C) 2001 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 <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 14:26:27 +00:00
|
|
|
|
|
2001-11-23 17:12:37 +00: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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static KsbaCert
|
|
|
|
|
get_default_signer (void)
|
|
|
|
|
{
|
2001-12-05 23:48:01 +00:00
|
|
|
|
// const char key[] = "1.2.840.113549.1.9.1=#7472757374407765622E6465#,CN=WEB.DE TrustCenter,OU=TrustCenter,O=WEB.DE AG,L=D-76227 Karlsruhe,C=DE";
|
|
|
|
|
const char key[] =
|
2001-12-14 13:09:51 +00:00
|
|
|
|
"/CN=test cert 1,OU=Aegypten Project,O=g10 Code GmbH,L=Düsseldorf,C=DE";
|
2001-12-05 23:48:01 +00:00
|
|
|
|
|
2001-12-14 13:35:34 +00:00
|
|
|
|
KEYDB_SEARCH_DESC desc;
|
2001-11-23 17:12:37 +00:00
|
|
|
|
KsbaCert cert = NULL;
|
|
|
|
|
KEYDB_HANDLE kh = NULL;
|
|
|
|
|
int rc;
|
|
|
|
|
|
2001-12-14 13:35:34 +00:00
|
|
|
|
rc = keydb_classify_name (key, &desc);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("failed to find default signer: %s\n", gnupg_strerror (rc));
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-23 17:12:37 +00:00
|
|
|
|
kh = keydb_new (0);
|
|
|
|
|
if (!kh)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2001-12-14 13:35:34 +00:00
|
|
|
|
rc = keydb_search (kh, &desc, 1);
|
2001-11-23 17:12:37 +00: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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Perform a sign operation.
|
|
|
|
|
|
|
|
|
|
Sign the data received on DATA-FD in embedded mode or in deatched
|
|
|
|
|
mode when DETACHED is true. Write the signature to OUT_FP The key
|
|
|
|
|
used to sign is the default - we will extend the fucntion to take a
|
|
|
|
|
list of fingerprints in the future. */
|
|
|
|
|
int
|
|
|
|
|
gpgsm_sign (CTRL ctrl, int data_fd, int detached, FILE *out_fp)
|
|
|
|
|
{
|
|
|
|
|
int i, rc;
|
|
|
|
|
KsbaError err;
|
2001-11-27 17:40:09 +00:00
|
|
|
|
Base64Context b64writer = NULL;
|
|
|
|
|
KsbaWriter writer;
|
2001-11-23 17:12:37 +00:00
|
|
|
|
KsbaCMS cms = NULL;
|
|
|
|
|
KsbaStopReason stopreason;
|
2001-12-15 12:36:39 +00:00
|
|
|
|
KsbaCert cert = NULL;
|
2001-11-23 17:12:37 +00:00
|
|
|
|
KEYDB_HANDLE kh = NULL;
|
|
|
|
|
GCRY_MD_HD data_md = NULL;
|
|
|
|
|
int signer;
|
|
|
|
|
const char *algoid;
|
|
|
|
|
int algo;
|
2001-12-15 12:36:39 +00:00
|
|
|
|
time_t signed_at;
|
2001-11-23 17:12:37 +00:00
|
|
|
|
|
|
|
|
|
if (!detached)
|
|
|
|
|
{
|
|
|
|
|
rc = seterr (Not_Implemented);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
kh = keydb_new (0);
|
|
|
|
|
if (!kh)
|
|
|
|
|
{
|
|
|
|
|
log_error (_("failed to allocated keyDB handle\n"));
|
2001-11-24 17:43:43 +00:00
|
|
|
|
rc = GNUPG_General_Error;
|
2001-11-23 17:12:37 +00:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-10 19:47:20 +00:00
|
|
|
|
ctrl->pem_name = "SIGNED MESSAGE";
|
2001-11-27 17:40:09 +00:00
|
|
|
|
rc = gpgsm_create_writer (&b64writer, ctrl, out_fp, &writer);
|
2001-11-23 17:12:37 +00:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
2001-11-27 17:40:09 +00:00
|
|
|
|
log_error ("can't create writer: %s\n", gnupg_strerror (rc));
|
2001-11-23 17:12:37 +00: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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* gather certificates of signers and store in theCMS object */
|
|
|
|
|
/* fixme: process a list of fingerprints and store the certificate of
|
|
|
|
|
each given fingerprint */
|
|
|
|
|
cert = get_default_signer ();
|
|
|
|
|
if (!cert)
|
|
|
|
|
{
|
|
|
|
|
log_error ("no default signer found\n");
|
|
|
|
|
rc = seterr (General_Error);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
err = ksba_cms_add_signer (cms, cert);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("ksba_cms_add_signer failed: %s\n", ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2001-12-11 12:31:04 +00:00
|
|
|
|
ksba_cert_release (cert); cert = NULL;
|
2001-11-23 17:12:37 +00:00
|
|
|
|
|
|
|
|
|
/* fixme: We might want to include a list of certificate which are
|
|
|
|
|
put as info into the signed data object - maybe we should add a
|
|
|
|
|
flag to ksba_cms_add_signer to decider whether this cert should
|
|
|
|
|
be send along with the signature */
|
|
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 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 19:36:33 +00:00
|
|
|
|
if (DBG_HASHING)
|
|
|
|
|
gcry_md_start_debug (data_md, "sign.data");
|
|
|
|
|
|
2001-11-23 17:12:37 +00: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 17:43:43 +00:00
|
|
|
|
rc = GNUPG_Bug;
|
2001-11-23 17:12:37 +00:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
gcry_md_enable (data_md, algo);
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-26 13:08:36 +00:00
|
|
|
|
signer = 0;
|
2001-11-23 17:12:37 +00:00
|
|
|
|
if (detached)
|
2001-11-26 13:08:36 +00: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 17:12:37 +00: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 17:43:43 +00:00
|
|
|
|
rc = GNUPG_Bug;
|
2001-11-23 17:12:37 +00:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
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-12-15 12:36:39 +00:00
|
|
|
|
|
|
|
|
|
signed_at = time (NULL);
|
|
|
|
|
err = ksba_cms_set_signing_time (cms, signer, signed_at);
|
2001-11-26 13:08:36 +00:00
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("ksba_cms_set_signing_time failed: %s\n",
|
|
|
|
|
ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2001-12-15 12:36:39 +00:00
|
|
|
|
|
2001-11-23 17:12:37 +00: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 */
|
|
|
|
|
assert (!detached);
|
|
|
|
|
}
|
|
|
|
|
else if (stopreason == KSBA_SR_NEED_SIG)
|
|
|
|
|
{ /* calculate the signature for all signers */
|
|
|
|
|
GCRY_MD_HD md;
|
|
|
|
|
|
|
|
|
|
algo = GCRY_MD_SHA1;
|
|
|
|
|
signer = 0;
|
|
|
|
|
md = gcry_md_open (algo, 0);
|
2001-12-14 19:36:33 +00:00
|
|
|
|
if (DBG_HASHING)
|
|
|
|
|
gcry_md_start_debug (md, "sign.attr");
|
|
|
|
|
|
2001-11-23 17:12:37 +00:00
|
|
|
|
if (!md)
|
|
|
|
|
{
|
|
|
|
|
log_error ("md_open failed: %s\n", gcry_strerror (-1));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
ksba_cms_set_hash_function (cms, HASH_FNC, 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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{ /* This is all an temporary hack */
|
|
|
|
|
char *sigval;
|
2001-12-15 12:36:39 +00:00
|
|
|
|
|
|
|
|
|
ksba_cert_release (cert);
|
2001-11-23 17:12:37 +00:00
|
|
|
|
cert = get_default_signer ();
|
|
|
|
|
if (!cert)
|
|
|
|
|
{
|
|
|
|
|
log_error ("oops - failed to get cert again\n");
|
|
|
|
|
rc = seterr (General_Error);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sigval = NULL;
|
2001-11-24 14:26:27 +00:00
|
|
|
|
rc = gpgsm_create_cms_signature (cert, md, algo, &sigval);
|
2001-11-23 17:12:37 +00:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
ksba_cert_release (cert);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-24 14:26:27 +00:00
|
|
|
|
err = ksba_cms_set_sig_val (cms, signer, sigval);
|
2001-11-23 17:12:37 +00:00
|
|
|
|
xfree (sigval);
|
2001-11-24 14:26:27 +00:00
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("failed to store the signature: %s\n",
|
|
|
|
|
ksba_strerror (err));
|
|
|
|
|
rc = map_ksba_err (err);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2001-12-15 12:36:39 +00:00
|
|
|
|
|
|
|
|
|
/* And write a status message */
|
|
|
|
|
{
|
|
|
|
|
char *buf, *fpr;
|
|
|
|
|
|
|
|
|
|
fpr = gpgsm_get_fingerprint_hexstring (cert, GCRY_MD_SHA1);
|
|
|
|
|
if (!fpr)
|
|
|
|
|
{
|
|
|
|
|
rc = seterr (Out_Of_Core);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
rc = asprintf (&buf, "%c %d %d 00 %lu %s",
|
|
|
|
|
detached? 'D':'S',
|
|
|
|
|
GCRY_PK_RSA, /* FIXME: get pk algo from cert */
|
|
|
|
|
algo,
|
|
|
|
|
(ulong)signed_at,
|
|
|
|
|
fpr);
|
|
|
|
|
xfree (fpr);
|
|
|
|
|
if (rc < 0)
|
|
|
|
|
{
|
|
|
|
|
rc = seterr (Out_Of_Core);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
rc = 0;
|
|
|
|
|
gpgsm_status (ctrl, STATUS_SIG_CREATED, buf );
|
|
|
|
|
free (buf); /* yes, we must use the regular free() here */
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-23 17:12:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
while (stopreason != KSBA_SR_READY);
|
|
|
|
|
|
2001-11-27 18:38:59 +00:00
|
|
|
|
rc = gpgsm_finish_writer (b64writer);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("write failed: %s\n", gnupg_strerror (rc));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2001-12-15 12:36:39 +00:00
|
|
|
|
|
2001-11-23 17:12:37 +00:00
|
|
|
|
log_info ("signature created\n");
|
|
|
|
|
|
2001-12-15 12:36:39 +00:00
|
|
|
|
|
2001-11-23 17:12:37 +00:00
|
|
|
|
leave:
|
2001-12-15 12:36:39 +00:00
|
|
|
|
ksba_cert_release (cert);
|
2001-11-23 17:12:37 +00:00
|
|
|
|
ksba_cms_release (cms);
|
2001-11-27 17:40:09 +00:00
|
|
|
|
gpgsm_destroy_writer (b64writer);
|
2001-11-23 17:12:37 +00:00
|
|
|
|
keydb_release (kh);
|
|
|
|
|
gcry_md_close (data_md);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|