2003-08-05 19:11:04 +02:00
|
|
|
|
/* sign.c - Sign a message
|
2010-03-08 13:22:18 +01:00
|
|
|
|
* Copyright (C) 2001, 2002, 2003, 2008,
|
|
|
|
|
* 2010 Free Software Foundation, Inc.
|
2003-08-05 19:11:04 +02: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
|
2007-07-04 21:49:40 +02:00
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-08-05 19:11:04 +02:00
|
|
|
|
* (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
|
2016-11-05 12:02:19 +01:00
|
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2003-08-05 19:11:04 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
2011-02-04 12:57:53 +01:00
|
|
|
|
#include <unistd.h>
|
2003-08-05 19:11:04 +02:00
|
|
|
|
#include <time.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
|
|
#include "gpgsm.h"
|
|
|
|
|
#include <gcrypt.h>
|
|
|
|
|
#include <ksba.h>
|
|
|
|
|
|
|
|
|
|
#include "keydb.h"
|
2017-03-07 12:21:23 +01:00
|
|
|
|
#include "../common/i18n.h"
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
|
2009-12-02 19:33:59 +01:00
|
|
|
|
/* Hash the data and return if something was hashed. Return -1 on error. */
|
|
|
|
|
static int
|
2003-08-05 19:11:04 +02:00
|
|
|
|
hash_data (int fd, gcry_md_hd_t md)
|
|
|
|
|
{
|
2010-03-08 13:22:18 +01:00
|
|
|
|
estream_t fp;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
char buffer[4096];
|
|
|
|
|
int nread;
|
2009-12-02 19:33:59 +01:00
|
|
|
|
int rc = 0;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2010-03-08 13:22:18 +01:00
|
|
|
|
fp = es_fdopen_nc (fd, "rb");
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (!fp)
|
|
|
|
|
{
|
|
|
|
|
log_error ("fdopen(%d) failed: %s\n", fd, strerror (errno));
|
2009-12-02 19:33:59 +01:00
|
|
|
|
return -1;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
|
do
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
2010-03-08 13:22:18 +01:00
|
|
|
|
nread = es_fread (buffer, 1, DIM(buffer), fp);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
gcry_md_write (md, buffer, nread);
|
|
|
|
|
}
|
|
|
|
|
while (nread);
|
2010-03-08 13:22:18 +01:00
|
|
|
|
if (es_ferror (fp))
|
2009-12-02 19:33:59 +01:00
|
|
|
|
{
|
2003-08-05 19:11:04 +02:00
|
|
|
|
log_error ("read error on fd %d: %s\n", fd, strerror (errno));
|
2009-12-02 19:33:59 +01:00
|
|
|
|
rc = -1;
|
|
|
|
|
}
|
2010-03-08 13:22:18 +01:00
|
|
|
|
es_fclose (fp);
|
2009-12-02 19:33:59 +01:00
|
|
|
|
return rc;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-08 13:22:18 +01:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
static int
|
2003-12-17 13:28:24 +01:00
|
|
|
|
hash_and_copy_data (int fd, gcry_md_hd_t md, ksba_writer_t writer)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
2003-12-17 13:28:24 +01:00
|
|
|
|
gpg_error_t err;
|
2010-03-08 13:22:18 +01:00
|
|
|
|
estream_t fp;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
char buffer[4096];
|
|
|
|
|
int nread;
|
|
|
|
|
int rc = 0;
|
|
|
|
|
int any = 0;
|
|
|
|
|
|
2010-03-08 13:22:18 +01:00
|
|
|
|
fp = es_fdopen_nc (fd, "rb");
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (!fp)
|
|
|
|
|
{
|
2010-03-08 13:22:18 +01:00
|
|
|
|
gpg_error_t tmperr = gpg_error_from_syserror ();
|
2003-08-05 19:11:04 +02:00
|
|
|
|
log_error ("fdopen(%d) failed: %s\n", fd, strerror (errno));
|
|
|
|
|
return tmperr;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
|
do
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
2010-03-08 13:22:18 +01:00
|
|
|
|
nread = es_fread (buffer, 1, DIM(buffer), fp);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (nread)
|
|
|
|
|
{
|
|
|
|
|
any = 1;
|
|
|
|
|
gcry_md_write (md, buffer, nread);
|
|
|
|
|
err = ksba_writer_write_octet_string (writer, buffer, nread, 0);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
2003-11-12 16:17:44 +01:00
|
|
|
|
log_error ("write failed: %s\n", gpg_strerror (err));
|
|
|
|
|
rc = err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
while (nread && !rc);
|
2010-03-08 13:22:18 +01:00
|
|
|
|
if (es_ferror (fp))
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
2010-03-08 13:22:18 +01:00
|
|
|
|
rc = gpg_error_from_syserror ();
|
2003-08-05 19:11:04 +02:00
|
|
|
|
log_error ("read error on fd %d: %s\n", fd, strerror (errno));
|
|
|
|
|
}
|
2010-03-08 13:22:18 +01:00
|
|
|
|
es_fclose (fp);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (!any)
|
|
|
|
|
{
|
More cleanup of "allow to".
* README, agent/command.c, agent/keyformat.txt, common/i18n.c,
common/iobuf.c, common/keyserver.h, dirmngr/cdblib.c,
dirmngr/ldap-wrapper.c, doc/DETAILS, doc/TRANSLATE,
doc/announce-2.1.txt, doc/gpg.texi, doc/gpgsm.texi,
doc/scdaemon.texi, doc/tools.texi, doc/whats-new-in-2.1.txt,
g10/export.c, g10/getkey.c, g10/import.c, g10/keyedit.c, m4/ksba.m4,
m4/libgcrypt.m4, m4/ntbtls.m4, po/ca.po, po/cs.po, po/da.po,
po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po,
po/fr.po, po/gl.po, po/hu.po, po/id.po, po/it.po, po/ja.po,
po/nb.po, po/pl.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po,
po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po,
scd/app-p15.c, scd/ccid-driver.c, scd/command.c, sm/gpgsm.c,
sm/sign.c, tools/gpgconf-comp.c, tools/gpgtar.h: replace "Allow to"
with clearer text.
In standard English, the normal construction is "${XXX} allows ${YYY}
to" -- that is, the subject (${XXX}) of the sentence is allowing the
object (${YYY}) to do something. When the object is missing, the
phrasing sounds awkward, even if the object is implied by context.
There's almost always a better construction that isn't as awkward.
These changes should make the language a bit clearer.
Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
2016-08-02 04:19:17 +02:00
|
|
|
|
/* We can't allow signing an empty message because it does not
|
2010-03-08 13:22:18 +01:00
|
|
|
|
make much sense and more seriously, ksba_cms_build has
|
2003-08-05 19:11:04 +02:00
|
|
|
|
already written the tag for data and now expects an octet
|
2010-03-08 13:22:18 +01:00
|
|
|
|
string and an octet string of size 0 is illegal. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
log_error ("cannot sign an empty message\n");
|
|
|
|
|
rc = gpg_error (GPG_ERR_NO_DATA);
|
|
|
|
|
}
|
|
|
|
|
if (!rc)
|
|
|
|
|
{
|
|
|
|
|
err = ksba_writer_write_octet_string (writer, NULL, 0, 1);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
2003-11-12 16:17:44 +01:00
|
|
|
|
log_error ("write failed: %s\n", gpg_strerror (err));
|
|
|
|
|
rc = err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-07-17 20:11:24 +02:00
|
|
|
|
/* Get the default certificate which is defined as the first
|
|
|
|
|
certificate capable of signing returned by the keyDB and has a
|
|
|
|
|
secret key available. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
int
|
2004-04-26 15:29:09 +02:00
|
|
|
|
gpgsm_get_default_cert (ctrl_t ctrl, ksba_cert_t *r_cert)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
|
|
|
|
KEYDB_HANDLE hd;
|
2003-12-17 13:28:24 +01:00
|
|
|
|
ksba_cert_t cert = NULL;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
int rc;
|
|
|
|
|
char *p;
|
|
|
|
|
|
2016-11-10 15:38:14 +01:00
|
|
|
|
hd = keydb_new ();
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (!hd)
|
|
|
|
|
return gpg_error (GPG_ERR_GENERAL);
|
2016-11-10 17:01:19 +01:00
|
|
|
|
rc = keydb_search_first (ctrl, hd);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
keydb_release (hd);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
rc = keydb_get_cert (hd, &cert);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if (rc)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
|
|
|
|
log_error ("keydb_get_cert failed: %s\n", gpg_strerror (rc));
|
|
|
|
|
keydb_release (hd);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
2006-10-17 09:39:21 +02:00
|
|
|
|
|
|
|
|
|
if (!gpgsm_cert_use_sign_p (cert))
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
2006-10-17 09:39:21 +02:00
|
|
|
|
p = gpgsm_get_keygrip_hexstring (cert);
|
|
|
|
|
if (p)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
2006-10-17 09:39:21 +02:00
|
|
|
|
if (!gpgsm_agent_havekey (ctrl, p))
|
|
|
|
|
{
|
|
|
|
|
xfree (p);
|
|
|
|
|
keydb_release (hd);
|
|
|
|
|
*r_cert = cert;
|
|
|
|
|
return 0; /* got it */
|
|
|
|
|
}
|
2003-08-05 19:11:04 +02:00
|
|
|
|
xfree (p);
|
|
|
|
|
}
|
|
|
|
|
}
|
2006-10-17 09:39:21 +02:00
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ksba_cert_release (cert);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
cert = NULL;
|
|
|
|
|
}
|
2016-11-10 17:01:19 +01:00
|
|
|
|
while (!(rc = keydb_search_next (ctrl, hd)));
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (rc && rc != -1)
|
|
|
|
|
log_error ("keydb_search_next failed: %s\n", gpg_strerror (rc));
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
ksba_cert_release (cert);
|
|
|
|
|
keydb_release (hd);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-12-17 13:28:24 +01:00
|
|
|
|
static ksba_cert_t
|
2004-04-26 15:29:09 +02:00
|
|
|
|
get_default_signer (ctrl_t ctrl)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
|
|
|
|
KEYDB_SEARCH_DESC desc;
|
2003-12-17 13:28:24 +01:00
|
|
|
|
ksba_cert_t cert = NULL;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
KEYDB_HANDLE kh = NULL;
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
|
|
if (!opt.local_user)
|
|
|
|
|
{
|
2004-04-26 15:29:09 +02:00
|
|
|
|
rc = gpgsm_get_default_cert (ctrl, &cert);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
if (rc != -1)
|
|
|
|
|
log_debug ("failed to find default certificate: %s\n",
|
|
|
|
|
gpg_strerror (rc));
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
return cert;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-25 23:56:47 +02:00
|
|
|
|
rc = classify_user_id (opt.local_user, &desc, 0);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("failed to find default signer: %s\n", gpg_strerror (rc));
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-10 15:38:14 +01:00
|
|
|
|
kh = keydb_new ();
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (!kh)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2016-11-10 17:01:19 +01:00
|
|
|
|
rc = keydb_search (ctrl, kh, &desc, 1);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("failed to find default certificate: rc=%d\n", rc);
|
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
else
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
|
|
|
|
rc = keydb_get_cert (kh, &cert);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("failed to get cert: rc=%d\n", rc);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
keydb_release (kh);
|
|
|
|
|
return cert;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Depending on the options in CTRL add the certificate CERT as well as
|
|
|
|
|
other certificate up in the chain to the Root-CA to the CMS
|
|
|
|
|
object. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
static int
|
2006-09-06 18:35:52 +02:00
|
|
|
|
add_certificate_list (ctrl_t ctrl, ksba_cms_t cms, ksba_cert_t cert)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
2003-12-17 13:28:24 +01:00
|
|
|
|
gpg_error_t err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
int rc = 0;
|
2003-12-17 13:28:24 +01:00
|
|
|
|
ksba_cert_t next = NULL;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
int n;
|
|
|
|
|
int not_root = 0;
|
|
|
|
|
|
|
|
|
|
ksba_cert_ref (cert);
|
|
|
|
|
|
|
|
|
|
n = ctrl->include_certs;
|
2004-01-30 10:12:36 +01:00
|
|
|
|
log_debug ("adding certificates at level %d\n", n);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (n == -2)
|
|
|
|
|
{
|
|
|
|
|
not_root = 1;
|
|
|
|
|
n = -1;
|
|
|
|
|
}
|
|
|
|
|
if (n < 0 || n > 50)
|
|
|
|
|
n = 50; /* We better apply an upper bound */
|
|
|
|
|
|
2004-01-30 10:12:36 +01:00
|
|
|
|
/* First add my own certificate unless we don't want any certificate
|
|
|
|
|
included at all. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (n)
|
|
|
|
|
{
|
|
|
|
|
if (not_root && gpgsm_is_root_cert (cert))
|
|
|
|
|
err = 0;
|
|
|
|
|
else
|
|
|
|
|
err = ksba_cms_add_cert (cms, cert);
|
|
|
|
|
if (err)
|
|
|
|
|
goto ksba_failure;
|
2004-01-30 10:12:36 +01:00
|
|
|
|
if (n>0)
|
|
|
|
|
n--;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
2004-01-30 10:12:36 +01:00
|
|
|
|
/* Walk the chain to include all other certificates. Note that a -1
|
|
|
|
|
used for N makes sure that there is no limit and all certs get
|
|
|
|
|
included. */
|
2008-02-13 17:47:14 +01:00
|
|
|
|
while ( n-- && !(rc = gpgsm_walk_cert_chain (ctrl, cert, &next)) )
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
|
|
|
|
if (not_root && gpgsm_is_root_cert (next))
|
|
|
|
|
err = 0;
|
|
|
|
|
else
|
|
|
|
|
err = ksba_cms_add_cert (cms, next);
|
|
|
|
|
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);
|
2003-11-12 16:17:44 +01:00
|
|
|
|
log_error ("ksba_cms_add_cert failed: %s\n", gpg_strerror (err));
|
|
|
|
|
return err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-04-30 08:25:59 +02:00
|
|
|
|
#if KSBA_VERSION_NUMBER >= 0x010400 && 0 /* 1.4.0 */
|
|
|
|
|
static gpg_error_t
|
|
|
|
|
add_signed_attribute (ksba_cms_t cms, const char *attrstr)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
char **fields = NULL;
|
|
|
|
|
const char *s;
|
|
|
|
|
int i;
|
|
|
|
|
unsigned char *der = NULL;
|
|
|
|
|
size_t derlen;
|
|
|
|
|
|
|
|
|
|
fields = strtokenize (attrstr, ":");
|
|
|
|
|
if (!fields)
|
|
|
|
|
{
|
|
|
|
|
err = gpg_error_from_syserror ();
|
|
|
|
|
log_error ("strtokenize failed: %s\n", gpg_strerror (err));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i=0; fields[i]; i++)
|
|
|
|
|
;
|
|
|
|
|
if (i != 3)
|
|
|
|
|
{
|
|
|
|
|
err = gpg_error (GPG_ERR_SYNTAX);
|
|
|
|
|
log_error ("invalid attribute specification '%s': %s\n",
|
|
|
|
|
attrstr, i < 3 ? "not enough fields":"too many fields");
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
if (!ascii_strcasecmp (fields[1], "u"))
|
|
|
|
|
{
|
|
|
|
|
err = 0;
|
|
|
|
|
goto leave; /* Skip unsigned attruibutes. */
|
|
|
|
|
}
|
|
|
|
|
if (ascii_strcasecmp (fields[1], "s"))
|
|
|
|
|
{
|
|
|
|
|
err = gpg_error (GPG_ERR_SYNTAX);
|
|
|
|
|
log_error ("invalid attribute specification '%s': %s\n",
|
|
|
|
|
attrstr, "type is not 's' or 'u'");
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
/* Check that the OID is valid. */
|
|
|
|
|
err = ksba_oid_from_str (fields[0], &der, &derlen);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("invalid attribute specification '%s': %s\n",
|
|
|
|
|
attrstr, gpg_strerror (err));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
xfree (der);
|
|
|
|
|
der = NULL;
|
|
|
|
|
|
|
|
|
|
if (strchr (fields[2], '/'))
|
|
|
|
|
{
|
|
|
|
|
/* FIXME: read from file. */
|
|
|
|
|
}
|
|
|
|
|
else /* Directly given in hex. */
|
|
|
|
|
{
|
|
|
|
|
for (i=0, s = fields[2]; hexdigitp (s); s++, i++)
|
|
|
|
|
;
|
|
|
|
|
if (*s || !i || (i&1))
|
|
|
|
|
{
|
|
|
|
|
log_error ("invalid attribute specification '%s': %s\n",
|
|
|
|
|
attrstr, "invalid hex encoding of the data");
|
|
|
|
|
err = gpg_error (GPG_ERR_SYNTAX);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
der = xtrystrdup (fields[2]);
|
|
|
|
|
if (!der)
|
|
|
|
|
{
|
|
|
|
|
err = gpg_error_from_syserror ();
|
|
|
|
|
log_error ("malloc failed: %s\n", gpg_strerror (err));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
for (s=fields[2], derlen=0; s[0] && s[1]; s += 2)
|
|
|
|
|
der[derlen++] = xtoi_2 (s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Store the data in the CMS object for all signers. */
|
|
|
|
|
err = ksba_cms_add_attribute (cms, -1, fields[0], 0, der, derlen);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("invalid attribute specification '%s': %s\n",
|
|
|
|
|
attrstr, gpg_strerror (err));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
leave:
|
|
|
|
|
xfree (der);
|
|
|
|
|
xfree (fields);
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
#endif /*ksba >= 1.4.0 */
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
|
/* Perform a sign operation.
|
2003-08-05 19:11:04 +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
|
|
|
|
|
keys used to sign are taken from SIGNERLIST or the default one will
|
|
|
|
|
be used if the value of this argument is NULL. */
|
|
|
|
|
int
|
2006-09-06 18:35:52 +02:00
|
|
|
|
gpgsm_sign (ctrl_t ctrl, certlist_t signerlist,
|
2010-03-08 13:22:18 +01:00
|
|
|
|
int data_fd, int detached, estream_t out_fp)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
|
|
|
|
int i, rc;
|
2003-12-17 13:28:24 +01:00
|
|
|
|
gpg_error_t err;
|
2017-02-16 17:11:38 +01:00
|
|
|
|
gnupg_ksba_io_t b64writer = NULL;
|
2003-12-17 13:28:24 +01:00
|
|
|
|
ksba_writer_t writer;
|
|
|
|
|
ksba_cms_t cms = NULL;
|
|
|
|
|
ksba_stop_reason_t stopreason;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
KEYDB_HANDLE kh = NULL;
|
|
|
|
|
gcry_md_hd_t data_md = NULL;
|
|
|
|
|
int signer;
|
|
|
|
|
const char *algoid;
|
|
|
|
|
int algo;
|
2003-10-31 13:12:47 +01:00
|
|
|
|
ksba_isotime_t signed_at;
|
2006-09-06 18:35:52 +02:00
|
|
|
|
certlist_t cl;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
int release_signerlist = 0;
|
|
|
|
|
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_set_type (ctrl->audit, AUDIT_TYPE_SIGN);
|
|
|
|
|
|
2016-11-10 15:38:14 +01:00
|
|
|
|
kh = keydb_new ();
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (!kh)
|
|
|
|
|
{
|
2012-08-22 18:54:38 +02:00
|
|
|
|
log_error (_("failed to allocate keyDB handle\n"));
|
2003-08-05 19:11:04 +02:00
|
|
|
|
rc = gpg_error (GPG_ERR_GENERAL);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-17 15:52:26 +02:00
|
|
|
|
if (!gnupg_rng_is_compliant (opt.compliance))
|
|
|
|
|
{
|
|
|
|
|
rc = gpg_error (GPG_ERR_FORBIDDEN);
|
|
|
|
|
log_error (_("%s is not compliant with %s mode\n"),
|
|
|
|
|
"RNG",
|
|
|
|
|
gnupg_compliance_option_string (opt.compliance));
|
|
|
|
|
gpgsm_status_with_error (ctrl, STATUS_ERROR,
|
|
|
|
|
"random-compliance", rc);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
ctrl->pem_name = "SIGNED MESSAGE";
|
2017-02-16 15:16:48 +01:00
|
|
|
|
rc = gnupg_ksba_create_writer
|
|
|
|
|
(&b64writer, ((ctrl->create_pem? GNUPG_KSBA_IO_PEM : 0)
|
|
|
|
|
| (ctrl->create_base64? GNUPG_KSBA_IO_BASE64 : 0)),
|
|
|
|
|
ctrl->pem_name, out_fp, &writer);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("can't create writer: %s\n", gpg_strerror (rc));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-12 16:17:44 +01:00
|
|
|
|
err = ksba_cms_new (&cms);
|
|
|
|
|
if (err)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
2003-11-12 16:17:44 +01:00
|
|
|
|
rc = err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
err = ksba_cms_set_reader_writer (cms, NULL, writer);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("ksba_cms_set_reader_writer failed: %s\n",
|
2003-11-12 16:17:44 +01:00
|
|
|
|
gpg_strerror (err));
|
|
|
|
|
rc = err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-30 08:25:59 +02:00
|
|
|
|
/* We are going to create signed data with data as encap. content.
|
|
|
|
|
* In authenticode mode we use spcIndirectDataContext instead. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
err = ksba_cms_set_content_type (cms, 0, KSBA_CT_SIGNED_DATA);
|
|
|
|
|
if (!err)
|
2019-04-30 08:25:59 +02:00
|
|
|
|
err = ksba_cms_set_content_type
|
|
|
|
|
(cms, 1,
|
|
|
|
|
#if KSBA_VERSION_NUMBER >= 0x010400 && 0
|
|
|
|
|
opt.authenticode? KSBA_CT_SPC_IND_DATA_CTX :
|
|
|
|
|
#endif
|
|
|
|
|
KSBA_CT_DATA
|
|
|
|
|
);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("ksba_cms_set_content_type failed: %s\n",
|
2003-11-12 16:17:44 +01:00
|
|
|
|
gpg_strerror (err));
|
|
|
|
|
rc = err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-17 20:11:24 +02:00
|
|
|
|
/* If no list of signers is given, use the default certificate. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (!signerlist)
|
|
|
|
|
{
|
2004-04-26 15:29:09 +02:00
|
|
|
|
ksba_cert_t cert = get_default_signer (ctrl);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (!cert)
|
|
|
|
|
{
|
|
|
|
|
log_error ("no default signer found\n");
|
2011-02-04 12:57:53 +01:00
|
|
|
|
gpgsm_status2 (ctrl, STATUS_INV_SGNR,
|
2009-08-06 22:12:00 +02:00
|
|
|
|
get_inv_recpsgnr_code (GPG_ERR_NO_SECKEY), NULL);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
rc = gpg_error (GPG_ERR_GENERAL);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2003-12-16 17:31:16 +01:00
|
|
|
|
|
2017-04-28 03:06:33 +02:00
|
|
|
|
/* Although we don't check for ambiguous specification we will
|
2007-07-17 20:11:24 +02:00
|
|
|
|
check that the signer's certificate is usable and valid. */
|
2003-12-16 17:31:16 +01:00
|
|
|
|
rc = gpgsm_cert_use_sign_p (cert);
|
|
|
|
|
if (!rc)
|
2007-08-10 18:52:05 +02:00
|
|
|
|
rc = gpgsm_validate_chain (ctrl, cert, "", NULL, 0, NULL, 0, NULL);
|
2003-12-16 17:31:16 +01:00
|
|
|
|
if (rc)
|
2009-08-06 22:12:00 +02:00
|
|
|
|
{
|
|
|
|
|
char *tmpfpr;
|
|
|
|
|
|
|
|
|
|
tmpfpr = gpgsm_get_fingerprint_hexstring (cert, 0);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
gpgsm_status2 (ctrl, STATUS_INV_SGNR,
|
2009-08-06 22:12:00 +02:00
|
|
|
|
get_inv_recpsgnr_code (rc), tmpfpr, NULL);
|
|
|
|
|
xfree (tmpfpr);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2003-12-16 17:31:16 +01:00
|
|
|
|
|
|
|
|
|
/* That one is fine - create signerlist. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
signerlist = xtrycalloc (1, sizeof *signerlist);
|
|
|
|
|
if (!signerlist)
|
|
|
|
|
{
|
2006-09-06 18:35:52 +02:00
|
|
|
|
rc = out_of_core ();
|
2003-08-05 19:11:04 +02:00
|
|
|
|
ksba_cert_release (cert);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
signerlist->cert = cert;
|
|
|
|
|
release_signerlist = 1;
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-26 21:09:07 +02:00
|
|
|
|
/* Figure out the hash algorithm to use. We do not want to use the
|
|
|
|
|
one for the certificate but if possible an OID for the plain
|
|
|
|
|
algorithm. */
|
2009-03-26 20:27:04 +01:00
|
|
|
|
if (opt.forced_digest_algo && opt.verbose)
|
|
|
|
|
log_info ("user requested hash algorithm %d\n", opt.forced_digest_algo);
|
2008-06-26 21:09:07 +02:00
|
|
|
|
for (i=0, cl=signerlist; cl; cl = cl->next, i++)
|
|
|
|
|
{
|
2009-06-24 16:03:09 +02:00
|
|
|
|
const char *oid;
|
2008-06-26 21:09:07 +02:00
|
|
|
|
|
2009-03-26 20:27:04 +01:00
|
|
|
|
if (opt.forced_digest_algo)
|
|
|
|
|
{
|
|
|
|
|
oid = NULL;
|
|
|
|
|
cl->hash_algo = opt.forced_digest_algo;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
oid = ksba_cert_get_digest_algo (cl->cert);
|
|
|
|
|
cl->hash_algo = oid ? gcry_md_map_name (oid) : 0;
|
|
|
|
|
}
|
2008-06-26 21:09:07 +02:00
|
|
|
|
switch (cl->hash_algo)
|
|
|
|
|
{
|
|
|
|
|
case GCRY_MD_SHA1: oid = "1.3.14.3.2.26"; break;
|
|
|
|
|
case GCRY_MD_RMD160: oid = "1.3.36.3.2.1"; break;
|
2008-09-29 17:02:55 +02:00
|
|
|
|
case GCRY_MD_SHA224: oid = "2.16.840.1.101.3.4.2.4"; break;
|
2008-06-26 21:09:07 +02:00
|
|
|
|
case GCRY_MD_SHA256: oid = "2.16.840.1.101.3.4.2.1"; break;
|
|
|
|
|
case GCRY_MD_SHA384: oid = "2.16.840.1.101.3.4.2.2"; break;
|
|
|
|
|
case GCRY_MD_SHA512: oid = "2.16.840.1.101.3.4.2.3"; break;
|
|
|
|
|
/* case GCRY_MD_WHIRLPOOL: oid = "No OID yet"; break; */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2008-06-26 21:09:07 +02:00
|
|
|
|
case GCRY_MD_MD5: /* We don't want to use MD5. */
|
|
|
|
|
case 0: /* No algorithm found in cert. */
|
|
|
|
|
default: /* Other algorithms. */
|
|
|
|
|
log_info (_("hash algorithm %d (%s) for signer %d not supported;"
|
|
|
|
|
" using %s\n"),
|
2011-02-04 12:57:53 +01:00
|
|
|
|
cl->hash_algo, oid? oid: "?", i,
|
2008-06-26 21:09:07 +02:00
|
|
|
|
gcry_md_algo_name (GCRY_MD_SHA1));
|
|
|
|
|
cl->hash_algo = GCRY_MD_SHA1;
|
|
|
|
|
oid = "1.3.14.3.2.26";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
cl->hash_algo_oid = oid;
|
2017-06-06 16:01:40 +02:00
|
|
|
|
|
|
|
|
|
/* Check compliance. */
|
|
|
|
|
if (! gnupg_digest_is_allowed (opt.compliance, 1, cl->hash_algo))
|
|
|
|
|
{
|
2017-07-28 17:46:43 +02:00
|
|
|
|
log_error (_("digest algorithm '%s' may not be used in %s mode\n"),
|
2017-06-06 16:01:40 +02:00
|
|
|
|
gcry_md_algo_name (cl->hash_algo),
|
|
|
|
|
gnupg_compliance_option_string (opt.compliance));
|
|
|
|
|
err = gpg_error (GPG_ERR_DIGEST_ALGO);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
unsigned int nbits;
|
|
|
|
|
int pk_algo = gpgsm_get_key_algo_info (cl->cert, &nbits);
|
|
|
|
|
|
|
|
|
|
if (! gnupg_pk_is_allowed (opt.compliance, PK_USE_SIGNING, pk_algo,
|
|
|
|
|
NULL, nbits, NULL))
|
|
|
|
|
{
|
2017-07-28 17:46:43 +02:00
|
|
|
|
char kidstr[10+1];
|
|
|
|
|
|
|
|
|
|
snprintf (kidstr, sizeof kidstr, "0x%08lX",
|
|
|
|
|
gpgsm_get_short_fingerprint (cl->cert, NULL));
|
|
|
|
|
log_error (_("key %s may not be used for signing in %s mode\n"),
|
|
|
|
|
kidstr,
|
2017-06-06 16:01:40 +02:00
|
|
|
|
gnupg_compliance_option_string (opt.compliance));
|
|
|
|
|
err = gpg_error (GPG_ERR_PUBKEY_ALGO);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-06-26 21:09:07 +02:00
|
|
|
|
}
|
2009-03-26 20:27:04 +01:00
|
|
|
|
|
2008-06-26 21:09:07 +02:00
|
|
|
|
if (opt.verbose)
|
|
|
|
|
{
|
|
|
|
|
for (i=0, cl=signerlist; cl; cl = cl->next, i++)
|
2011-02-04 12:57:53 +01:00
|
|
|
|
log_info (_("hash algorithm used for signer %d: %s (%s)\n"),
|
2008-06-26 21:09:07 +02:00
|
|
|
|
i, gcry_md_algo_name (cl->hash_algo), cl->hash_algo_oid);
|
|
|
|
|
}
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
/* Gather certificates of signers and store them in the CMS object. */
|
|
|
|
|
for (cl=signerlist; cl; cl = cl->next)
|
|
|
|
|
{
|
|
|
|
|
rc = gpgsm_cert_use_sign_p (cl->cert);
|
|
|
|
|
if (rc)
|
|
|
|
|
goto leave;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
err = ksba_cms_add_signer (cms, cl->cert);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
2003-11-12 16:17:44 +01:00
|
|
|
|
log_error ("ksba_cms_add_signer failed: %s\n", gpg_strerror (err));
|
|
|
|
|
rc = err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
rc = add_certificate_list (ctrl, cms, cl->cert);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("failed to store list of certificates: %s\n",
|
|
|
|
|
gpg_strerror(rc));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
/* Set the hash algorithm we are going to use */
|
2008-06-26 21:09:07 +02:00
|
|
|
|
err = ksba_cms_add_digest_algo (cms, cl->hash_algo_oid);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("ksba_cms_add_digest_algo failed: %s\n",
|
2003-11-12 16:17:44 +01:00
|
|
|
|
gpg_strerror (err));
|
|
|
|
|
rc = err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-11-13 20:07:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Check whether one of the certificates is qualified. Note that we
|
|
|
|
|
already validated the certificate and thus the user data stored
|
|
|
|
|
flag must be available. */
|
2010-04-14 13:24:02 +02:00
|
|
|
|
if (!opt.no_chain_validation)
|
2005-11-13 20:07:06 +01:00
|
|
|
|
{
|
2010-04-14 13:24:02 +02:00
|
|
|
|
for (cl=signerlist; cl; cl = cl->next)
|
2005-11-13 20:07:06 +01:00
|
|
|
|
{
|
2010-04-14 13:24:02 +02:00
|
|
|
|
size_t buflen;
|
|
|
|
|
char buffer[1];
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
|
|
|
|
err = ksba_cert_get_user_data (cl->cert, "is_qualified",
|
2010-04-14 13:24:02 +02:00
|
|
|
|
&buffer, sizeof (buffer), &buflen);
|
|
|
|
|
if (err || !buflen)
|
|
|
|
|
{
|
|
|
|
|
log_error (_("checking for qualified certificate failed: %s\n"),
|
2011-02-04 12:57:53 +01:00
|
|
|
|
gpg_strerror (err));
|
2010-04-14 13:24:02 +02:00
|
|
|
|
rc = err;
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
if (*buffer)
|
|
|
|
|
err = gpgsm_qualified_consent (ctrl, cl->cert);
|
|
|
|
|
else
|
|
|
|
|
err = gpgsm_not_qualified_warning (ctrl, cl->cert);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
rc = err;
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2005-11-13 20:07:06 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-04-14 13:24:02 +02:00
|
|
|
|
|
2008-06-26 21:09:07 +02:00
|
|
|
|
/* Prepare hashing (actually we are figuring out what we have set
|
|
|
|
|
above). */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
rc = gcry_md_open (&data_md, 0, 0);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("md_open failed: %s\n", gpg_strerror (rc));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
if (DBG_HASHING)
|
2011-09-20 09:54:27 +02:00
|
|
|
|
gcry_md_debug (data_md, "sign.data");
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
for (i=0; (algoid=ksba_cms_get_digest_algo_list (cms, i)); i++)
|
|
|
|
|
{
|
|
|
|
|
algo = gcry_md_map_name (algoid);
|
|
|
|
|
if (!algo)
|
|
|
|
|
{
|
2012-06-05 19:29:22 +02:00
|
|
|
|
log_error ("unknown hash algorithm '%s'\n", algoid? algoid:"?");
|
2003-08-05 19:11:04 +02:00
|
|
|
|
rc = gpg_error (GPG_ERR_BUG);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
gcry_md_enable (data_md, algo);
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log_i (ctrl->audit, AUDIT_DATA_HASH_ALGO, algo);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log (ctrl->audit, AUDIT_SETUP_READY);
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (detached)
|
2008-06-26 21:09:07 +02:00
|
|
|
|
{ /* We hash the data right now so that we can store the message
|
2003-08-05 19:11:04 +02:00
|
|
|
|
digest. ksba_cms_build() takes this as an flag that detached
|
|
|
|
|
data is expected. */
|
|
|
|
|
unsigned char *digest;
|
|
|
|
|
size_t digest_len;
|
2008-06-26 21:09:07 +02:00
|
|
|
|
|
2009-12-02 19:33:59 +01:00
|
|
|
|
if (!hash_data (data_fd, data_md))
|
|
|
|
|
audit_log (ctrl->audit, AUDIT_GOT_DATA);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
for (cl=signerlist,signer=0; cl; cl = cl->next, signer++)
|
|
|
|
|
{
|
2008-06-26 21:09:07 +02:00
|
|
|
|
digest = gcry_md_read (data_md, cl->hash_algo);
|
|
|
|
|
digest_len = gcry_md_get_algo_dlen (cl->hash_algo);
|
|
|
|
|
if ( !digest || !digest_len )
|
|
|
|
|
{
|
|
|
|
|
log_error ("problem getting the hash of the data\n");
|
|
|
|
|
rc = gpg_error (GPG_ERR_BUG);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2003-08-05 19:11:04 +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",
|
2003-11-12 16:17:44 +01:00
|
|
|
|
gpg_strerror (err));
|
|
|
|
|
rc = err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-10-31 13:12:47 +01:00
|
|
|
|
gnupg_get_isotime (signed_at);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
for (cl=signerlist,signer=0; cl; cl = cl->next, signer++)
|
|
|
|
|
{
|
|
|
|
|
err = ksba_cms_set_signing_time (cms, signer, signed_at);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("ksba_cms_set_signing_time failed: %s\n",
|
2003-11-12 16:17:44 +01:00
|
|
|
|
gpg_strerror (err));
|
|
|
|
|
rc = err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-30 08:25:59 +02:00
|
|
|
|
/* We can add signed attributes only when build against libksba 1.4. */
|
|
|
|
|
#if KSBA_VERSION_NUMBER >= 0x010400 && 0 /* 1.4.0 */
|
|
|
|
|
{
|
|
|
|
|
strlist_t sl;
|
|
|
|
|
|
|
|
|
|
for (sl = opt.attributes; sl; sl = sl->next)
|
|
|
|
|
if ((err = add_signed_attribute (cms, sl->d)))
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
log_info ("Note: option --attribute is ignored by this version\n");
|
|
|
|
|
#endif /*ksba >= 1.4.0 */
|
|
|
|
|
|
|
|
|
|
|
2004-03-24 15:28:18 +01:00
|
|
|
|
/* We need to write at least a minimal list of our capabilities to
|
2007-12-13 16:45:40 +01:00
|
|
|
|
try to convince some MUAs to use 3DES and not the crippled
|
2004-03-24 15:28:18 +01:00
|
|
|
|
RC2. Our list is:
|
|
|
|
|
|
|
|
|
|
aes128-CBC
|
|
|
|
|
des-EDE3-CBC
|
|
|
|
|
*/
|
|
|
|
|
err = ksba_cms_add_smime_capability (cms, "2.16.840.1.101.3.4.1.2", NULL, 0);
|
|
|
|
|
if (!err)
|
|
|
|
|
err = ksba_cms_add_smime_capability (cms, "1.2.840.113549.3.7", NULL, 0);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("ksba_cms_add_smime_capability failed: %s\n",
|
|
|
|
|
gpg_strerror (err));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Main building loop. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
do
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
|
|
|
|
err = ksba_cms_build (cms, &stopreason);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
2003-11-12 16:17:44 +01:00
|
|
|
|
log_debug ("ksba_cms_build failed: %s\n", gpg_strerror (err));
|
|
|
|
|
rc = err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (stopreason == KSBA_SR_BEGIN_DATA)
|
2011-02-04 12:57:53 +01:00
|
|
|
|
{
|
2008-06-26 21:09:07 +02:00
|
|
|
|
/* Hash the data and store the message digest. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
unsigned char *digest;
|
|
|
|
|
size_t digest_len;
|
|
|
|
|
|
|
|
|
|
assert (!detached);
|
|
|
|
|
|
|
|
|
|
rc = hash_and_copy_data (data_fd, data_md, writer);
|
|
|
|
|
if (rc)
|
|
|
|
|
goto leave;
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log (ctrl->audit, AUDIT_GOT_DATA);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
for (cl=signerlist,signer=0; cl; cl = cl->next, signer++)
|
|
|
|
|
{
|
2008-06-26 21:09:07 +02:00
|
|
|
|
digest = gcry_md_read (data_md, cl->hash_algo);
|
|
|
|
|
digest_len = gcry_md_get_algo_dlen (cl->hash_algo);
|
|
|
|
|
if ( !digest || !digest_len )
|
|
|
|
|
{
|
|
|
|
|
log_error ("problem getting the hash of the data\n");
|
|
|
|
|
rc = gpg_error (GPG_ERR_BUG);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2003-08-05 19:11:04 +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",
|
2003-11-12 16:17:44 +01:00
|
|
|
|
gpg_strerror (err));
|
|
|
|
|
rc = err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (stopreason == KSBA_SR_NEED_SIG)
|
2011-02-04 12:57:53 +01:00
|
|
|
|
{
|
2008-06-26 21:09:07 +02:00
|
|
|
|
/* Compute the signature for all signers. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
gcry_md_hd_t md;
|
|
|
|
|
|
2008-06-26 21:09:07 +02:00
|
|
|
|
rc = gcry_md_open (&md, 0, 0);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("md_open failed: %s\n", gpg_strerror (rc));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
if (DBG_HASHING)
|
2011-09-20 09:54:27 +02:00
|
|
|
|
gcry_md_debug (md, "sign.attr");
|
2003-08-05 19:11:04 +02:00
|
|
|
|
ksba_cms_set_hash_function (cms, HASH_FNC, md);
|
|
|
|
|
for (cl=signerlist,signer=0; cl; cl = cl->next, signer++)
|
|
|
|
|
{
|
2005-06-16 10:12:03 +02:00
|
|
|
|
unsigned char *sigval = NULL;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
char *buf, *fpr;
|
|
|
|
|
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log_i (ctrl->audit, AUDIT_NEW_SIG, signer);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (signer)
|
|
|
|
|
gcry_md_reset (md);
|
2008-06-26 21:09:07 +02:00
|
|
|
|
{
|
|
|
|
|
certlist_t cl_tmp;
|
|
|
|
|
|
|
|
|
|
for (cl_tmp=signerlist; cl_tmp; cl_tmp = cl_tmp->next)
|
2009-12-02 19:33:59 +01:00
|
|
|
|
{
|
|
|
|
|
gcry_md_enable (md, cl_tmp->hash_algo);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
audit_log_i (ctrl->audit, AUDIT_ATTR_HASH_ALGO,
|
2009-12-02 19:33:59 +01:00
|
|
|
|
cl_tmp->hash_algo);
|
|
|
|
|
}
|
2008-06-26 21:09:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
rc = ksba_cms_hash_signed_attrs (cms, signer);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_debug ("hashing signed attrs failed: %s\n",
|
2003-11-12 16:17:44 +01:00
|
|
|
|
gpg_strerror (rc));
|
2003-08-05 19:11:04 +02:00
|
|
|
|
gcry_md_close (md);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2004-04-26 15:29:09 +02:00
|
|
|
|
rc = gpgsm_create_cms_signature (ctrl, cl->cert,
|
2008-06-26 21:09:07 +02:00
|
|
|
|
md, cl->hash_algo, &sigval);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log_cert (ctrl->audit, AUDIT_SIGNED_BY, cl->cert, rc);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
gcry_md_close (md);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
err = ksba_cms_set_sig_val (cms, signer, sigval);
|
|
|
|
|
xfree (sigval);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log_cert (ctrl->audit, AUDIT_SIGNED_BY, cl->cert, err);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
log_error ("failed to store the signature: %s\n",
|
2003-11-12 16:17:44 +01:00
|
|
|
|
gpg_strerror (err));
|
|
|
|
|
rc = err;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
gcry_md_close (md);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* write a status message */
|
|
|
|
|
fpr = gpgsm_get_fingerprint_hexstring (cl->cert, GCRY_MD_SHA1);
|
|
|
|
|
if (!fpr)
|
|
|
|
|
{
|
|
|
|
|
rc = gpg_error (GPG_ERR_ENOMEM);
|
|
|
|
|
gcry_md_close (md);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2009-12-02 19:33:59 +01:00
|
|
|
|
rc = 0;
|
2004-05-11 17:36:48 +02:00
|
|
|
|
{
|
|
|
|
|
int pkalgo = gpgsm_get_key_algo_info (cl->cert, NULL);
|
2009-12-02 19:33:59 +01:00
|
|
|
|
buf = xtryasprintf ("%c %d %d 00 %s %s",
|
|
|
|
|
detached? 'D':'S',
|
2011-02-04 12:57:53 +01:00
|
|
|
|
pkalgo,
|
|
|
|
|
cl->hash_algo,
|
2009-12-02 19:33:59 +01:00
|
|
|
|
signed_at,
|
|
|
|
|
fpr);
|
|
|
|
|
if (!buf)
|
|
|
|
|
rc = gpg_error_from_syserror ();
|
2004-05-11 17:36:48 +02:00
|
|
|
|
}
|
2003-08-05 19:11:04 +02:00
|
|
|
|
xfree (fpr);
|
2009-12-02 19:33:59 +01:00
|
|
|
|
if (rc)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
|
|
|
|
gcry_md_close (md);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
gpgsm_status (ctrl, STATUS_SIG_CREATED, buf);
|
2009-12-02 19:33:59 +01:00
|
|
|
|
xfree (buf);
|
|
|
|
|
audit_log_cert (ctrl->audit, AUDIT_SIGNED_BY, cl->cert, 0);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
|
|
|
|
gcry_md_close (md);
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
while (stopreason != KSBA_SR_READY);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2017-02-16 17:11:38 +01:00
|
|
|
|
rc = gnupg_ksba_finish_writer (b64writer);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if (rc)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
|
|
|
|
log_error ("write failed: %s\n", gpg_strerror (rc));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log (ctrl->audit, AUDIT_SIGNING_DONE);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
log_info ("signature created\n");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
leave:
|
2004-01-16 18:42:36 +01:00
|
|
|
|
if (rc)
|
2004-05-11 17:36:48 +02:00
|
|
|
|
log_error ("error creating signature: %s <%s>\n",
|
|
|
|
|
gpg_strerror (rc), gpg_strsource (rc) );
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (release_signerlist)
|
|
|
|
|
gpgsm_release_certlist (signerlist);
|
|
|
|
|
ksba_cms_release (cms);
|
2017-02-16 17:11:38 +01:00
|
|
|
|
gnupg_ksba_destroy_writer (b64writer);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
keydb_release (kh);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
gcry_md_close (data_md);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|