2003-08-05 19:11:04 +02:00
|
|
|
|
/* decrypt.c - Decrypt a message
|
2010-03-08 13:22:18 +01:00
|
|
|
|
* Copyright (C) 2001, 2003, 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"
|
2017-05-30 14:30:24 +02:00
|
|
|
|
#include "../common/compliance.h"
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
|
struct decrypt_filter_parm_s
|
2010-03-08 13:22:18 +01:00
|
|
|
|
{
|
2003-08-05 19:11:04 +02:00
|
|
|
|
int algo;
|
|
|
|
|
int mode;
|
|
|
|
|
int blklen;
|
|
|
|
|
gcry_cipher_hd_t hd;
|
|
|
|
|
char iv[16];
|
|
|
|
|
size_t ivlen;
|
2017-05-31 12:12:42 +02:00
|
|
|
|
int any_data; /* did we push anything through the filter at all? */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
unsigned char lastblock[16]; /* to strip the padding we have to
|
|
|
|
|
keep this one */
|
|
|
|
|
char helpblock[16]; /* needed because there is no block buffering in
|
|
|
|
|
libgcrypt (yet) */
|
|
|
|
|
int helpblocklen;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-12-16 12:31:46 +01:00
|
|
|
|
/* Decrypt the session key and fill in the parm structure. The
|
2003-08-05 19:11:04 +02:00
|
|
|
|
algo and the IV is expected to be already in PARM. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
static int
|
2004-04-26 15:29:09 +02:00
|
|
|
|
prepare_decryption (ctrl_t ctrl, const char *hexkeygrip, const char *desc,
|
2004-02-13 18:06:50 +01:00
|
|
|
|
ksba_const_sexp_t enc_val,
|
2003-08-05 19:11:04 +02:00
|
|
|
|
struct decrypt_filter_parm_s *parm)
|
|
|
|
|
{
|
|
|
|
|
char *seskey = NULL;
|
|
|
|
|
size_t n, seskeylen;
|
|
|
|
|
int rc;
|
|
|
|
|
|
2004-04-26 15:29:09 +02:00
|
|
|
|
rc = gpgsm_agent_pkdecrypt (ctrl, hexkeygrip, desc, enc_val,
|
2003-08-05 19:11:04 +02:00
|
|
|
|
&seskey, &seskeylen);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error decrypting session key: %s\n", gpg_strerror (rc));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (DBG_CRYPTO)
|
2020-05-12 18:51:47 +02:00
|
|
|
|
log_printhex (seskey, seskeylen, "pkcs1 encoded session key:");
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
n=0;
|
2019-08-05 03:09:41 +02:00
|
|
|
|
if (seskeylen == 32 || seskeylen == 24 || seskeylen == 16)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
2019-08-05 03:09:41 +02:00
|
|
|
|
/* Smells like an AES-128, 3-DES, or AES-256 key. This might
|
|
|
|
|
* happen because a SC has already done the unpacking. A better
|
2016-11-29 19:19:45 +01:00
|
|
|
|
* solution would be to test for this only after we triggered
|
|
|
|
|
* the GPG_ERR_INV_SESSION_KEY. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (n + 7 > seskeylen )
|
|
|
|
|
{
|
|
|
|
|
rc = gpg_error (GPG_ERR_INV_SESSION_KEY);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
goto leave;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
/* FIXME: Actually the leading zero is required but due to the way
|
|
|
|
|
we encode the output in libgcrypt as an MPI we are not able to
|
|
|
|
|
encode that leading zero. However, when using a Smartcard we are
|
2004-06-06 15:00:59 +02:00
|
|
|
|
doing it the right way and therefore we have to skip the zero. This
|
2003-08-05 19:11:04 +02:00
|
|
|
|
should be fixed in gpg-agent of course. */
|
|
|
|
|
if (!seskey[n])
|
|
|
|
|
n++;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2004-06-06 15:00:59 +02:00
|
|
|
|
if (seskey[n] != 2 ) /* Wrong block type version. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
{
|
2003-08-05 19:11:04 +02:00
|
|
|
|
rc = gpg_error (GPG_ERR_INV_SESSION_KEY);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
goto leave;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2004-06-06 15:00:59 +02:00
|
|
|
|
for (n++; n < seskeylen && seskey[n]; n++) /* Skip the random bytes. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
;
|
|
|
|
|
n++; /* and the zero byte */
|
|
|
|
|
if (n >= seskeylen )
|
2011-02-04 12:57:53 +01:00
|
|
|
|
{
|
2003-08-05 19:11:04 +02:00
|
|
|
|
rc = gpg_error (GPG_ERR_INV_SESSION_KEY);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
goto leave;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (DBG_CRYPTO)
|
2020-05-12 18:51:47 +02:00
|
|
|
|
log_printhex (seskey+n, seskeylen-n, "session key:");
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
rc = gcry_cipher_open (&parm->hd, parm->algo, parm->mode, 0);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error creating decryptor: %s\n", gpg_strerror (rc));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
rc = gcry_cipher_setkey (parm->hd, seskey+n, seskeylen-n);
|
|
|
|
|
if (gpg_err_code (rc) == GPG_ERR_WEAK_KEY)
|
|
|
|
|
{
|
|
|
|
|
log_info (_("WARNING: message was encrypted with "
|
|
|
|
|
"a weak key in the symmetric cipher.\n"));
|
|
|
|
|
rc = 0;
|
|
|
|
|
}
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error("key setup failed: %s\n", gpg_strerror(rc) );
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gcry_cipher_setiv (parm->hd, parm->iv, parm->ivlen);
|
|
|
|
|
|
|
|
|
|
leave:
|
|
|
|
|
xfree (seskey);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This function is called by the KSBA writer just before the actual
|
|
|
|
|
write is done. The function must take INLEN bytes from INBUF,
|
|
|
|
|
decrypt it and store it inoutbuf which has a maximum size of
|
|
|
|
|
maxoutlen. The valid bytes in outbuf should be return in outlen.
|
|
|
|
|
Due to different buffer sizes or different length of input and
|
2007-03-08 15:16:15 +01:00
|
|
|
|
output, it may happen that fewer bytes are processed or fewer bytes
|
2003-08-05 19:11:04 +02:00
|
|
|
|
are written. */
|
2003-12-17 13:28:24 +01:00
|
|
|
|
static gpg_error_t
|
2003-08-05 19:11:04 +02:00
|
|
|
|
decrypt_filter (void *arg,
|
|
|
|
|
const void *inbuf, size_t inlen, size_t *inused,
|
|
|
|
|
void *outbuf, size_t maxoutlen, size_t *outlen)
|
|
|
|
|
{
|
|
|
|
|
struct decrypt_filter_parm_s *parm = arg;
|
|
|
|
|
int blklen = parm->blklen;
|
|
|
|
|
size_t orig_inlen = inlen;
|
|
|
|
|
|
|
|
|
|
/* fixme: Should we issue an error when we have not seen one full block? */
|
|
|
|
|
if (!inlen)
|
2003-11-12 16:17:44 +01:00
|
|
|
|
return gpg_error (GPG_ERR_BUG);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
if (maxoutlen < 2*parm->blklen)
|
2003-11-12 16:17:44 +01:00
|
|
|
|
return gpg_error (GPG_ERR_BUG);
|
2007-03-08 15:16:15 +01:00
|
|
|
|
/* Make some space because we will later need an extra block at the end. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
maxoutlen -= blklen;
|
|
|
|
|
|
|
|
|
|
if (parm->helpblocklen)
|
|
|
|
|
{
|
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
|
|
for (i=parm->helpblocklen,j=0; i < blklen && j < inlen; i++, j++)
|
|
|
|
|
parm->helpblock[i] = ((const char*)inbuf)[j];
|
|
|
|
|
inlen -= j;
|
|
|
|
|
if (blklen > maxoutlen)
|
2003-11-12 16:17:44 +01:00
|
|
|
|
return gpg_error (GPG_ERR_BUG);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (i < blklen)
|
|
|
|
|
{
|
|
|
|
|
parm->helpblocklen = i;
|
|
|
|
|
*outlen = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
parm->helpblocklen = 0;
|
|
|
|
|
if (parm->any_data)
|
|
|
|
|
{
|
|
|
|
|
memcpy (outbuf, parm->lastblock, blklen);
|
|
|
|
|
*outlen =blklen;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
*outlen = 0;
|
|
|
|
|
gcry_cipher_decrypt (parm->hd, parm->lastblock, blklen,
|
|
|
|
|
parm->helpblock, blklen);
|
|
|
|
|
parm->any_data = 1;
|
|
|
|
|
}
|
|
|
|
|
*inused = orig_inlen - inlen;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (inlen > maxoutlen)
|
|
|
|
|
inlen = maxoutlen;
|
|
|
|
|
if (inlen % blklen)
|
|
|
|
|
{ /* store the remainder away */
|
|
|
|
|
parm->helpblocklen = inlen%blklen;
|
|
|
|
|
inlen = inlen/blklen*blklen;
|
|
|
|
|
memcpy (parm->helpblock, (const char*)inbuf+inlen, parm->helpblocklen);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*inused = inlen + parm->helpblocklen;
|
|
|
|
|
if (inlen)
|
|
|
|
|
{
|
|
|
|
|
assert (inlen >= blklen);
|
|
|
|
|
if (parm->any_data)
|
|
|
|
|
{
|
|
|
|
|
gcry_cipher_decrypt (parm->hd, (char*)outbuf+blklen, inlen,
|
|
|
|
|
inbuf, inlen);
|
|
|
|
|
memcpy (outbuf, parm->lastblock, blklen);
|
|
|
|
|
memcpy (parm->lastblock,(char*)outbuf+inlen, blklen);
|
|
|
|
|
*outlen = inlen;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
gcry_cipher_decrypt (parm->hd, outbuf, inlen, inbuf, inlen);
|
|
|
|
|
memcpy (parm->lastblock, (char*)outbuf+inlen-blklen, blklen);
|
|
|
|
|
*outlen = inlen - blklen;
|
|
|
|
|
parm->any_data = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
*outlen = 0;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Perform a decrypt operation. */
|
|
|
|
|
int
|
2010-03-08 13:22:18 +01:00
|
|
|
|
gpgsm_decrypt (ctrl_t ctrl, int in_fd, estream_t out_fp)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
|
|
|
|
int rc;
|
2017-02-16 17:11:38 +01:00
|
|
|
|
gnupg_ksba_io_t b64reader = NULL;
|
|
|
|
|
gnupg_ksba_io_t b64writer = NULL;
|
2003-12-17 13:28:24 +01:00
|
|
|
|
ksba_reader_t reader;
|
|
|
|
|
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;
|
|
|
|
|
int recp;
|
2010-03-08 13:22:18 +01:00
|
|
|
|
estream_t in_fp = NULL;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
struct decrypt_filter_parm_s dfparm;
|
|
|
|
|
|
|
|
|
|
memset (&dfparm, 0, sizeof dfparm);
|
|
|
|
|
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_set_type (ctrl->audit, AUDIT_TYPE_DECRYPT);
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-08 13:22:18 +01:00
|
|
|
|
in_fp = es_fdopen_nc (in_fd, "rb");
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (!in_fp)
|
|
|
|
|
{
|
2010-03-08 13:22:18 +01:00
|
|
|
|
rc = gpg_error_from_syserror ();
|
2003-08-05 19:11:04 +02:00
|
|
|
|
log_error ("fdopen() failed: %s\n", strerror (errno));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-16 15:16:48 +01:00
|
|
|
|
rc = gnupg_ksba_create_reader
|
|
|
|
|
(&b64reader, ((ctrl->is_pem? GNUPG_KSBA_IO_PEM : 0)
|
|
|
|
|
| (ctrl->is_base64? GNUPG_KSBA_IO_BASE64 : 0)
|
|
|
|
|
| (ctrl->autodetect_encoding? GNUPG_KSBA_IO_AUTODETECT : 0)),
|
|
|
|
|
in_fp, &reader);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("can't create reader: %s\n", gpg_strerror (rc));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
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-12-17 13:28:24 +01:00
|
|
|
|
rc = ksba_cms_new (&cms);
|
|
|
|
|
if (rc)
|
|
|
|
|
goto leave;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2003-12-17 13:28:24 +01:00
|
|
|
|
rc = ksba_cms_set_reader_writer (cms, reader, writer);
|
|
|
|
|
if (rc)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
|
|
|
|
log_debug ("ksba_cms_set_reader_writer failed: %s\n",
|
2003-12-17 13:28:24 +01:00
|
|
|
|
gpg_strerror (rc));
|
2003-08-05 19:11:04 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log (ctrl->audit, AUDIT_SETUP_READY);
|
|
|
|
|
|
2007-03-08 15:16:15 +01:00
|
|
|
|
/* Parser loop. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
do
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
2003-12-17 13:28:24 +01:00
|
|
|
|
rc = ksba_cms_parse (cms, &stopreason);
|
|
|
|
|
if (rc)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
{
|
2003-12-17 13:28:24 +01:00
|
|
|
|
log_debug ("ksba_cms_parse failed: %s\n", gpg_strerror (rc));
|
2003-08-05 19:11:04 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (stopreason == KSBA_SR_BEGIN_DATA
|
|
|
|
|
|| stopreason == KSBA_SR_DETACHED_DATA)
|
|
|
|
|
{
|
|
|
|
|
int algo, mode;
|
|
|
|
|
const char *algoid;
|
|
|
|
|
int any_key = 0;
|
2017-05-30 14:30:24 +02:00
|
|
|
|
int is_de_vs; /* Computed compliance with CO_DE_VS. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log (ctrl->audit, AUDIT_GOT_DATA);
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
algoid = ksba_cms_get_content_oid (cms, 2/* encryption algo*/);
|
|
|
|
|
algo = gcry_cipher_map_name (algoid);
|
|
|
|
|
mode = gcry_cipher_mode_from_oid (algoid);
|
|
|
|
|
if (!algo || !mode)
|
|
|
|
|
{
|
|
|
|
|
rc = gpg_error (GPG_ERR_UNSUPPORTED_ALGORITHM);
|
2012-06-05 19:29:22 +02:00
|
|
|
|
log_error ("unsupported algorithm '%s'\n", algoid? algoid:"?");
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (algoid && !strcmp (algoid, "1.2.840.113549.3.2"))
|
|
|
|
|
log_info (_("(this is the RC2 algorithm)\n"));
|
|
|
|
|
else if (!algoid)
|
|
|
|
|
log_info (_("(this does not seem to be an encrypted"
|
|
|
|
|
" message)\n"));
|
|
|
|
|
{
|
|
|
|
|
char numbuf[50];
|
|
|
|
|
sprintf (numbuf, "%d", rc);
|
|
|
|
|
gpgsm_status2 (ctrl, STATUS_ERROR, "decrypt.algorithm",
|
|
|
|
|
numbuf, algoid?algoid:"?", NULL);
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log_s (ctrl->audit, AUDIT_BAD_DATA_CIPHER_ALGO, algoid);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2005-01-13 19:00:46 +01:00
|
|
|
|
/* If it seems that this is not an encrypted message we
|
2004-04-08 11:53:32 +02:00
|
|
|
|
return a more sensible error code. */
|
|
|
|
|
if (!algoid)
|
|
|
|
|
rc = gpg_error (GPG_ERR_NO_DATA);
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2009-12-02 19:33:59 +01:00
|
|
|
|
|
2017-06-06 16:01:40 +02:00
|
|
|
|
/* Check compliance. */
|
|
|
|
|
if (! gnupg_cipher_is_allowed (opt.compliance, 0, algo, mode))
|
|
|
|
|
{
|
2017-07-28 17:46:43 +02:00
|
|
|
|
log_error (_("cipher algorithm '%s'"
|
|
|
|
|
" may not be used in %s mode\n"),
|
2017-06-06 16:01:40 +02:00
|
|
|
|
gcry_cipher_algo_name (algo),
|
|
|
|
|
gnupg_compliance_option_string (opt.compliance));
|
|
|
|
|
rc = gpg_error (GPG_ERR_CIPHER_ALGO);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-30 14:30:24 +02:00
|
|
|
|
/* For CMS, CO_DE_VS demands CBC mode. */
|
2017-06-07 16:09:07 +02:00
|
|
|
|
is_de_vs = gnupg_cipher_is_compliant (CO_DE_VS, algo, mode);
|
2017-05-30 14:30:24 +02:00
|
|
|
|
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log_i (ctrl->audit, AUDIT_DATA_CIPHER_ALGO, algo);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
dfparm.algo = algo;
|
|
|
|
|
dfparm.mode = mode;
|
|
|
|
|
dfparm.blklen = gcry_cipher_get_algo_blklen (algo);
|
|
|
|
|
if (dfparm.blklen > sizeof (dfparm.helpblock))
|
|
|
|
|
return gpg_error (GPG_ERR_BUG);
|
|
|
|
|
|
|
|
|
|
rc = ksba_cms_get_content_enc_iv (cms,
|
|
|
|
|
dfparm.iv,
|
|
|
|
|
sizeof (dfparm.iv),
|
|
|
|
|
&dfparm.ivlen);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
2003-12-17 13:28:24 +01:00
|
|
|
|
log_error ("error getting IV: %s\n", gpg_strerror (rc));
|
2003-08-05 19:11:04 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
for (recp=0; !any_key; recp++)
|
|
|
|
|
{
|
|
|
|
|
char *issuer;
|
2003-12-17 13:28:24 +01:00
|
|
|
|
ksba_sexp_t serial;
|
|
|
|
|
ksba_sexp_t enc_val;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
char *hexkeygrip = NULL;
|
2004-02-13 18:06:50 +01:00
|
|
|
|
char *desc = NULL;
|
2009-03-25 17:05:16 +01:00
|
|
|
|
char kidbuf[16+1];
|
|
|
|
|
|
|
|
|
|
*kidbuf = 0;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2003-12-17 13:28:24 +01:00
|
|
|
|
rc = ksba_cms_get_issuer_serial (cms, recp, &issuer, &serial);
|
|
|
|
|
if (rc == -1 && recp)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
break; /* no more recipients */
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log_i (ctrl->audit, AUDIT_NEW_RECP, recp);
|
2003-12-17 13:28:24 +01:00
|
|
|
|
if (rc)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
log_error ("recp %d - error getting info: %s\n",
|
2003-12-17 13:28:24 +01:00
|
|
|
|
recp, gpg_strerror (rc));
|
2003-08-05 19:11:04 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
2003-12-17 13:28:24 +01:00
|
|
|
|
ksba_cert_t cert = NULL;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2012-06-05 19:29:22 +02:00
|
|
|
|
log_debug ("recp %d - issuer: '%s'\n",
|
2003-08-05 19:11:04 +02:00
|
|
|
|
recp, issuer? issuer:"[NONE]");
|
|
|
|
|
log_debug ("recp %d - serial: ", recp);
|
|
|
|
|
gpgsm_dump_serial (serial);
|
|
|
|
|
log_printf ("\n");
|
|
|
|
|
|
2009-12-02 19:33:59 +01:00
|
|
|
|
if (ctrl->audit)
|
|
|
|
|
{
|
|
|
|
|
char *tmpstr = gpgsm_format_sn_issuer (serial, issuer);
|
|
|
|
|
audit_log_s (ctrl->audit, AUDIT_RECP_NAME, tmpstr);
|
|
|
|
|
xfree (tmpstr);
|
|
|
|
|
}
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
keydb_search_reset (kh);
|
2016-11-10 17:01:19 +01:00
|
|
|
|
rc = keydb_search_issuer_sn (ctrl, kh, issuer, serial);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("failed to find the certificate: %s\n",
|
|
|
|
|
gpg_strerror(rc));
|
|
|
|
|
goto oops;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rc = keydb_get_cert (kh, &cert);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
log_error ("failed to get cert: %s\n", gpg_strerror (rc));
|
2011-02-04 12:57:53 +01:00
|
|
|
|
goto oops;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
2009-03-25 17:05:16 +01:00
|
|
|
|
|
|
|
|
|
/* Print the ENC_TO status line. Note that we can
|
|
|
|
|
do so only if we have the certificate. This is
|
|
|
|
|
in contrast to gpg where the keyID is commonly
|
|
|
|
|
included in the encrypted messages. It is too
|
|
|
|
|
cumbersome to retrieve the used algorithm, thus
|
|
|
|
|
we don't print it for now. We also record the
|
|
|
|
|
keyid for later use. */
|
|
|
|
|
{
|
|
|
|
|
unsigned long kid[2];
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2009-03-25 17:05:16 +01:00
|
|
|
|
kid[0] = gpgsm_get_short_fingerprint (cert, kid+1);
|
|
|
|
|
snprintf (kidbuf, sizeof kidbuf, "%08lX%08lX",
|
|
|
|
|
kid[1], kid[0]);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
gpgsm_status2 (ctrl, STATUS_ENC_TO,
|
2009-03-25 17:05:16 +01:00
|
|
|
|
kidbuf, "0", "0", NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-02 19:33:59 +01:00
|
|
|
|
/* Put the certificate into the audit log. */
|
|
|
|
|
audit_log_cert (ctrl->audit, AUDIT_SAVE_CERT, cert, 0);
|
2009-03-25 17:05:16 +01:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
/* Just in case there is a problem with the own
|
|
|
|
|
certificate we print this message - should never
|
|
|
|
|
happen of course */
|
|
|
|
|
rc = gpgsm_cert_use_decrypt_p (cert);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
|
|
|
|
char numbuf[50];
|
|
|
|
|
sprintf (numbuf, "%d", rc);
|
|
|
|
|
gpgsm_status2 (ctrl, STATUS_ERROR, "decrypt.keyusage",
|
|
|
|
|
numbuf, NULL);
|
|
|
|
|
rc = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hexkeygrip = gpgsm_get_keygrip_hexstring (cert);
|
2004-02-13 18:06:50 +01:00
|
|
|
|
desc = gpgsm_format_keydesc (cert);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2017-06-06 16:01:40 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned int nbits;
|
|
|
|
|
int pk_algo = gpgsm_get_key_algo_info (cert, &nbits);
|
|
|
|
|
|
2017-08-01 08:41:47 +02:00
|
|
|
|
/* Check compliance. */
|
|
|
|
|
if (!gnupg_pk_is_allowed (opt.compliance,
|
|
|
|
|
PK_USE_DECRYPTION,
|
2020-07-03 15:47:55 +02:00
|
|
|
|
pk_algo, 0, NULL, nbits, NULL))
|
2017-06-06 16:01:40 +02:00
|
|
|
|
{
|
2017-07-27 13:56:38 +02:00
|
|
|
|
char kidstr[10+1];
|
|
|
|
|
|
|
|
|
|
snprintf (kidstr, sizeof kidstr, "0x%08lX",
|
|
|
|
|
gpgsm_get_short_fingerprint (cert, NULL));
|
|
|
|
|
log_info
|
2017-08-01 08:41:47 +02:00
|
|
|
|
(_("key %s is not suitable for decryption"
|
2017-07-27 13:56:38 +02:00
|
|
|
|
" in %s mode\n"),
|
|
|
|
|
kidstr,
|
|
|
|
|
gnupg_compliance_option_string (opt.compliance));
|
2017-08-01 08:41:47 +02:00
|
|
|
|
rc = gpg_error (GPG_ERR_PUBKEY_ALGO);
|
|
|
|
|
goto oops;
|
2017-06-06 16:01:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check that all certs are compliant with CO_DE_VS. */
|
2017-06-19 17:50:02 +02:00
|
|
|
|
is_de_vs =
|
|
|
|
|
(is_de_vs
|
2020-07-03 15:47:55 +02:00
|
|
|
|
&& gnupg_pk_is_compliant (CO_DE_VS, pk_algo, 0, NULL,
|
2017-06-19 17:50:02 +02:00
|
|
|
|
nbits, NULL));
|
2017-06-06 16:01:40 +02:00
|
|
|
|
}
|
2017-05-30 14:30:24 +02:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
oops:
|
2017-05-30 14:30:24 +02:00
|
|
|
|
if (rc)
|
2017-08-01 08:41:47 +02:00
|
|
|
|
{
|
|
|
|
|
/* We cannot check compliance of certs that we
|
|
|
|
|
* don't have. */
|
|
|
|
|
is_de_vs = 0;
|
|
|
|
|
}
|
2003-08-05 19:11:04 +02:00
|
|
|
|
xfree (issuer);
|
|
|
|
|
xfree (serial);
|
|
|
|
|
ksba_cert_release (cert);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!hexkeygrip)
|
|
|
|
|
;
|
|
|
|
|
else if (!(enc_val = ksba_cms_get_enc_val (cms, recp)))
|
|
|
|
|
log_error ("recp %d - error getting encrypted session key\n",
|
|
|
|
|
recp);
|
|
|
|
|
else
|
|
|
|
|
{
|
2004-04-26 15:29:09 +02:00
|
|
|
|
rc = prepare_decryption (ctrl,
|
|
|
|
|
hexkeygrip, desc, enc_val, &dfparm);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
xfree (enc_val);
|
|
|
|
|
if (rc)
|
|
|
|
|
{
|
2004-02-13 18:06:50 +01:00
|
|
|
|
log_info ("decrypting session key failed: %s\n",
|
|
|
|
|
gpg_strerror (rc));
|
2009-03-25 17:05:16 +01:00
|
|
|
|
if (gpg_err_code (rc) == GPG_ERR_NO_SECKEY && *kidbuf)
|
|
|
|
|
gpgsm_status2 (ctrl, STATUS_NO_SECKEY, kidbuf, NULL);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{ /* setup the bulk decrypter */
|
|
|
|
|
any_key = 1;
|
|
|
|
|
ksba_writer_set_filter (writer,
|
|
|
|
|
decrypt_filter,
|
|
|
|
|
&dfparm);
|
2017-05-30 14:30:24 +02:00
|
|
|
|
|
|
|
|
|
if (is_de_vs)
|
|
|
|
|
gpgsm_status (ctrl, STATUS_DECRYPTION_COMPLIANCE_MODE,
|
|
|
|
|
gnupg_status_compliance_flag (CO_DE_VS));
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log_ok (ctrl->audit, AUDIT_RECP_RESULT, rc);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
2004-02-13 18:06:50 +01:00
|
|
|
|
xfree (hexkeygrip);
|
|
|
|
|
xfree (desc);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
}
|
2009-12-02 19:33:59 +01:00
|
|
|
|
|
|
|
|
|
/* If we write an audit log add the unused recipients to the
|
|
|
|
|
log as well. */
|
|
|
|
|
if (ctrl->audit && any_key)
|
|
|
|
|
{
|
|
|
|
|
for (;; recp++)
|
|
|
|
|
{
|
|
|
|
|
char *issuer;
|
|
|
|
|
ksba_sexp_t serial;
|
|
|
|
|
int tmp_rc;
|
|
|
|
|
|
|
|
|
|
tmp_rc = ksba_cms_get_issuer_serial (cms, recp,
|
|
|
|
|
&issuer, &serial);
|
|
|
|
|
if (tmp_rc == -1)
|
|
|
|
|
break; /* no more recipients */
|
|
|
|
|
audit_log_i (ctrl->audit, AUDIT_NEW_RECP, recp);
|
|
|
|
|
if (tmp_rc)
|
|
|
|
|
log_error ("recp %d - error getting info: %s\n",
|
|
|
|
|
recp, gpg_strerror (rc));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
char *tmpstr = gpgsm_format_sn_issuer (serial, issuer);
|
|
|
|
|
audit_log_s (ctrl->audit, AUDIT_RECP_NAME, tmpstr);
|
|
|
|
|
xfree (tmpstr);
|
|
|
|
|
xfree (issuer);
|
|
|
|
|
xfree (serial);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (!any_key)
|
|
|
|
|
{
|
|
|
|
|
rc = gpg_error (GPG_ERR_NO_SECKEY);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (stopreason == KSBA_SR_END_DATA)
|
|
|
|
|
{
|
|
|
|
|
ksba_writer_set_filter (writer, NULL, NULL);
|
|
|
|
|
if (dfparm.any_data)
|
|
|
|
|
{ /* write the last block with padding removed */
|
|
|
|
|
int i, npadding = dfparm.lastblock[dfparm.blklen-1];
|
|
|
|
|
if (!npadding || npadding > dfparm.blklen)
|
|
|
|
|
{
|
|
|
|
|
log_error ("invalid padding with value %d\n", npadding);
|
|
|
|
|
rc = gpg_error (GPG_ERR_INV_DATA);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
rc = ksba_writer_write (writer,
|
2011-02-04 12:57:53 +01:00
|
|
|
|
dfparm.lastblock,
|
2003-08-05 19:11:04 +02:00
|
|
|
|
dfparm.blklen - npadding);
|
|
|
|
|
if (rc)
|
2009-12-02 19:33:59 +01:00
|
|
|
|
goto leave;
|
2003-11-12 16:17:44 +01:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
for (i=dfparm.blklen - npadding; i < dfparm.blklen; i++)
|
|
|
|
|
{
|
|
|
|
|
if (dfparm.lastblock[i] != npadding)
|
|
|
|
|
{
|
|
|
|
|
log_error ("inconsistent padding\n");
|
|
|
|
|
rc = gpg_error (GPG_ERR_INV_DATA);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
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;
|
|
|
|
|
}
|
|
|
|
|
gpgsm_status (ctrl, STATUS_DECRYPTION_OKAY, NULL);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
leave:
|
2009-12-02 19:33:59 +01:00
|
|
|
|
audit_log_ok (ctrl->audit, AUDIT_DECRYPTION_RESULT, rc);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (rc)
|
2004-01-16 18:42:36 +01:00
|
|
|
|
{
|
|
|
|
|
gpgsm_status (ctrl, STATUS_DECRYPTION_FAILED, NULL);
|
2004-05-11 17:36:48 +02:00
|
|
|
|
log_error ("message decryption failed: %s <%s>\n",
|
|
|
|
|
gpg_strerror (rc), gpg_strsource (rc));
|
2004-01-16 18:42:36 +01:00
|
|
|
|
}
|
2003-08-05 19:11:04 +02:00
|
|
|
|
ksba_cms_release (cms);
|
2017-02-16 17:11:38 +01:00
|
|
|
|
gnupg_ksba_destroy_reader (b64reader);
|
|
|
|
|
gnupg_ksba_destroy_writer (b64writer);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
keydb_release (kh);
|
2010-03-08 13:22:18 +01:00
|
|
|
|
es_fclose (in_fp);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
if (dfparm.hd)
|
2011-02-04 12:57:53 +01:00
|
|
|
|
gcry_cipher_close (dfparm.hd);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
return rc;
|
|
|
|
|
}
|