1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
|
/**
* @file
* Wrapper around crypto functions
*
* @authors
* Copyright (C) 2017-2023 Richard Russon <rich@flatcap.org>
* Copyright (C) 2019 Pietro Cerutti <gahr@gahr.ch>
*
* @copyright
* This program 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.
*
* This program 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, see <http://www.gnu.org/licenses/>.
*/
/**
* @page crypt_cryptglue Wrapper around crypto functions
*
* This file dispatches the generic crypto functions to the implemented
* backend or provides dummy stubs.
*
* @note Some generic functions are handled in crypt.c
*
* @note This file has been changed to make use of the new module system.
* Consequently there's a 1:1 mapping between the functions contained in this
* file and the functions implemented by the crypto modules.
*/
#include "config.h"
#include <stdbool.h>
#include <stdio.h>
#include "mutt/lib.h"
#include "core/lib.h"
#include "cryptglue.h"
#include "lib.h"
#include "crypt_mod.h"
#ifndef CRYPT_BACKEND_GPGME
#include "gui/lib.h"
#endif
#if defined(CRYPT_BACKEND_GPGME) || defined(USE_AUTOCRYPT)
#include "config/lib.h"
#endif
#ifdef USE_AUTOCRYPT
#include "email/lib.h"
#include "autocrypt/lib.h"
#include "crypt_gpgme.h"
#include "globals.h"
#else
struct Envelope;
#endif
struct Address;
struct AddressList;
#ifdef CRYPT_BACKEND_CLASSIC_PGP
extern const struct CryptModuleSpecs CryptModPgpClassic;
#endif
#ifdef CRYPT_BACKEND_CLASSIC_SMIME
extern const struct CryptModuleSpecs CryptModSmimeClassic;
#endif
#ifdef CRYPT_BACKEND_GPGME
extern const struct CryptModuleSpecs CryptModPgpGpgme;
extern const struct CryptModuleSpecs CryptModSmimeGpgme;
#endif
/* If the crypto module identifier by IDENTIFIER has been registered,
* call its function FUNC. Do nothing else. This may be used as an
* expression. */
#define CRYPT_MOD_CALL_CHECK(identifier, func) \
(crypto_module_lookup(APPLICATION_##identifier) && \
(crypto_module_lookup(APPLICATION_##identifier))->func)
/* Call the function FUNC in the crypto module identified by
* IDENTIFIER. This may be used as an expression. */
#define CRYPT_MOD_CALL(identifier, func) \
(*(crypto_module_lookup(APPLICATION_##identifier))->func)
/**
* crypt_init - Initialise the crypto backends
*
* This calls CryptModuleSpecs::init()
*/
void crypt_init(void)
{
#ifdef CRYPT_BACKEND_GPGME
const bool c_crypt_use_gpgme = cs_subset_bool(NeoMutt->sub, "crypt_use_gpgme");
#endif
#ifdef CRYPT_BACKEND_CLASSIC_PGP
if (
#ifdef CRYPT_BACKEND_GPGME
(!c_crypt_use_gpgme)
#else
1
#endif
)
crypto_module_register(&CryptModPgpClassic);
#endif
#ifdef CRYPT_BACKEND_CLASSIC_SMIME
if (
#ifdef CRYPT_BACKEND_GPGME
(!c_crypt_use_gpgme)
#else
1
#endif
)
crypto_module_register(&CryptModSmimeClassic);
#endif
#ifdef CRYPT_BACKEND_GPGME
if (c_crypt_use_gpgme)
{
crypto_module_register(&CryptModPgpGpgme);
crypto_module_register(&CryptModSmimeGpgme);
}
#endif
#if defined(CRYPT_BACKEND_CLASSIC_PGP) || \
defined(CRYPT_BACKEND_CLASSIC_SMIME) || defined(CRYPT_BACKEND_GPGME)
if (CRYPT_MOD_CALL_CHECK(PGP, init))
CRYPT_MOD_CALL(PGP, init)();
if (CRYPT_MOD_CALL_CHECK(SMIME, init))
CRYPT_MOD_CALL(SMIME, init)();
#endif
}
/**
* crypt_cleanup - Clean up backend
*/
void crypt_cleanup(void)
{
if (CRYPT_MOD_CALL_CHECK(PGP, cleanup))
(CRYPT_MOD_CALL(PGP, cleanup))();
if (CRYPT_MOD_CALL_CHECK(SMIME, cleanup))
(CRYPT_MOD_CALL(SMIME, cleanup))();
}
/**
* crypt_invoke_message - Display an informative message
* @param type Crypto type, see #SecurityFlags
*
* Show a message that a backend will be invoked.
*/
void crypt_invoke_message(SecurityFlags type)
{
if (((WithCrypto & APPLICATION_PGP) != 0) && (type & APPLICATION_PGP))
mutt_message(_("Invoking PGP..."));
else if (((WithCrypto & APPLICATION_SMIME) != 0) && (type & APPLICATION_SMIME))
mutt_message(_("Invoking S/MIME..."));
}
/**
* crypt_has_module_backend - Is there a crypto backend for a given type?
* @param type Crypto type, see #SecurityFlags
* @retval true Backend is present
* @retval false Backend is not present
*/
bool crypt_has_module_backend(SecurityFlags type)
{
if (((WithCrypto & APPLICATION_PGP) != 0) && (type & APPLICATION_PGP) &&
crypto_module_lookup(APPLICATION_PGP))
{
return true;
}
if (((WithCrypto & APPLICATION_SMIME) != 0) && (type & APPLICATION_SMIME) &&
crypto_module_lookup(APPLICATION_SMIME))
{
return true;
}
return false;
}
/**
* crypt_pgp_void_passphrase - Wrapper for CryptModuleSpecs::void_passphrase()
*/
void crypt_pgp_void_passphrase(void)
{
if (CRYPT_MOD_CALL_CHECK(PGP, void_passphrase))
CRYPT_MOD_CALL(PGP, void_passphrase)();
}
/**
* crypt_pgp_valid_passphrase - Wrapper for CryptModuleSpecs::valid_passphrase()
*/
bool crypt_pgp_valid_passphrase(void)
{
if (CRYPT_MOD_CALL_CHECK(PGP, valid_passphrase))
return CRYPT_MOD_CALL(PGP, valid_passphrase)();
return false;
}
/**
* crypt_pgp_decrypt_mime - Wrapper for CryptModuleSpecs::decrypt_mime()
*/
int crypt_pgp_decrypt_mime(FILE *fp_in, FILE **fp_out, struct Body *b, struct Body **b_dec)
{
#ifdef USE_AUTOCRYPT
const bool c_autocrypt = cs_subset_bool(NeoMutt->sub, "autocrypt");
if (c_autocrypt)
{
OptAutocryptGpgme = true;
int result = pgp_gpgme_decrypt_mime(fp_in, fp_out, b, b_dec);
OptAutocryptGpgme = false;
if (result == 0)
{
b->is_autocrypt = true;
return result;
}
}
#endif
if (CRYPT_MOD_CALL_CHECK(PGP, decrypt_mime))
return CRYPT_MOD_CALL(PGP, decrypt_mime)(fp_in, fp_out, b, b_dec);
return -1;
}
/**
* crypt_pgp_application_handler - Wrapper for CryptModuleSpecs::application_handler() - Implements ::handler_t - @ingroup handler_api
*/
int crypt_pgp_application_handler(struct Body *b_email, struct State *state)
{
if (CRYPT_MOD_CALL_CHECK(PGP, application_handler))
return CRYPT_MOD_CALL(PGP, application_handler)(b_email, state);
return -1;
}
/**
* crypt_pgp_encrypted_handler - Wrapper for CryptModuleSpecs::encrypted_handler() - Implements ::handler_t - @ingroup handler_api
*/
int crypt_pgp_encrypted_handler(struct Body *b_email, struct State *state)
{
#ifdef USE_AUTOCRYPT
const bool c_autocrypt = cs_subset_bool(NeoMutt->sub, "autocrypt");
if (c_autocrypt)
{
OptAutocryptGpgme = true;
int result = pgp_gpgme_encrypted_handler(b_email, state);
OptAutocryptGpgme = false;
if (result == 0)
{
b_email->is_autocrypt = true;
return result;
}
}
#endif
if (CRYPT_MOD_CALL_CHECK(PGP, encrypted_handler))
return CRYPT_MOD_CALL(PGP, encrypted_handler)(b_email, state);
return -1;
}
/**
* crypt_pgp_invoke_getkeys - Wrapper for CryptModuleSpecs::pgp_invoke_getkeys()
*/
void crypt_pgp_invoke_getkeys(struct Address *addr)
{
if (CRYPT_MOD_CALL_CHECK(PGP, pgp_invoke_getkeys))
CRYPT_MOD_CALL(PGP, pgp_invoke_getkeys)(addr);
}
/**
* crypt_pgp_check_traditional - Wrapper for CryptModuleSpecs::pgp_check_traditional()
*/
bool crypt_pgp_check_traditional(FILE *fp, struct Body *b, bool just_one)
{
if (CRYPT_MOD_CALL_CHECK(PGP, pgp_check_traditional))
return CRYPT_MOD_CALL(PGP, pgp_check_traditional)(fp, b, just_one);
return false;
}
/**
* crypt_pgp_traditional_encryptsign - Wrapper for CryptModuleSpecs::pgp_traditional_encryptsign()
*/
struct Body *crypt_pgp_traditional_encryptsign(struct Body *b, SecurityFlags flags, char *keylist)
{
if (CRYPT_MOD_CALL_CHECK(PGP, pgp_traditional_encryptsign))
return CRYPT_MOD_CALL(PGP, pgp_traditional_encryptsign)(b, flags, keylist);
return NULL;
}
/**
* crypt_pgp_make_key_attachment - Wrapper for CryptModuleSpecs::pgp_make_key_attachment()
*/
struct Body *crypt_pgp_make_key_attachment(void)
{
if (CRYPT_MOD_CALL_CHECK(PGP, pgp_make_key_attachment))
return CRYPT_MOD_CALL(PGP, pgp_make_key_attachment)();
return NULL;
}
/**
* crypt_pgp_find_keys - Wrapper for CryptModuleSpecs::find_keys()
*/
char *crypt_pgp_find_keys(struct AddressList *addrlist, bool oppenc_mode)
{
if (CRYPT_MOD_CALL_CHECK(PGP, find_keys))
return CRYPT_MOD_CALL(PGP, find_keys)(addrlist, oppenc_mode);
return NULL;
}
/**
* crypt_pgp_sign_message - Wrapper for CryptModuleSpecs::sign_message()
*/
struct Body *crypt_pgp_sign_message(struct Body *b, const struct AddressList *from)
{
if (CRYPT_MOD_CALL_CHECK(PGP, sign_message))
return CRYPT_MOD_CALL(PGP, sign_message)(b, from);
return NULL;
}
/**
* crypt_pgp_encrypt_message - Wrapper for CryptModuleSpecs::pgp_encrypt_message()
*/
struct Body *crypt_pgp_encrypt_message(struct Email *e, struct Body *b, char *keylist,
int sign, const struct AddressList *from)
{
#ifdef USE_AUTOCRYPT
if (e->security & SEC_AUTOCRYPT)
{
if (mutt_autocrypt_set_sign_as_default_key(e))
return NULL;
OptAutocryptGpgme = true;
struct Body *result = pgp_gpgme_encrypt_message(b, keylist, sign, from);
OptAutocryptGpgme = false;
return result;
}
#endif
if (CRYPT_MOD_CALL_CHECK(PGP, pgp_encrypt_message))
return CRYPT_MOD_CALL(PGP, pgp_encrypt_message)(b, keylist, sign, from);
return NULL;
}
/**
* crypt_pgp_invoke_import - Wrapper for CryptModuleSpecs::pgp_invoke_import()
*/
void crypt_pgp_invoke_import(const char *fname)
{
if (CRYPT_MOD_CALL_CHECK(PGP, pgp_invoke_import))
CRYPT_MOD_CALL(PGP, pgp_invoke_import)(fname);
}
/**
* crypt_pgp_verify_one - Wrapper for CryptModuleSpecs::verify_one()
*/
int crypt_pgp_verify_one(struct Body *b, struct State *state, const char *tempf)
{
if (CRYPT_MOD_CALL_CHECK(PGP, verify_one))
return CRYPT_MOD_CALL(PGP, verify_one)(b, state, tempf);
return -1;
}
/**
* crypt_pgp_send_menu - Wrapper for CryptModuleSpecs::send_menu()
*/
SecurityFlags crypt_pgp_send_menu(struct Email *e)
{
if (CRYPT_MOD_CALL_CHECK(PGP, send_menu))
return CRYPT_MOD_CALL(PGP, send_menu)(e);
return 0;
}
/**
* crypt_pgp_extract_key_from_attachment - Wrapper for CryptModuleSpecs::pgp_extract_key_from_attachment()
*/
void crypt_pgp_extract_key_from_attachment(FILE *fp, struct Body *b)
{
if (CRYPT_MOD_CALL_CHECK(PGP, pgp_extract_key_from_attachment))
CRYPT_MOD_CALL(PGP, pgp_extract_key_from_attachment)(fp, b);
}
/**
* crypt_pgp_set_sender - Wrapper for CryptModuleSpecs::set_sender()
*/
void crypt_pgp_set_sender(const char *sender)
{
if (CRYPT_MOD_CALL_CHECK(PGP, set_sender))
CRYPT_MOD_CALL(PGP, set_sender)(sender);
}
/**
* crypt_smime_void_passphrase - Wrapper for CryptModuleSpecs::void_passphrase()
*/
void crypt_smime_void_passphrase(void)
{
if (CRYPT_MOD_CALL_CHECK(SMIME, void_passphrase))
CRYPT_MOD_CALL(SMIME, void_passphrase)();
}
/**
* crypt_smime_valid_passphrase - Wrapper for CryptModuleSpecs::valid_passphrase()
*/
bool crypt_smime_valid_passphrase(void)
{
if (CRYPT_MOD_CALL_CHECK(SMIME, valid_passphrase))
return CRYPT_MOD_CALL(SMIME, valid_passphrase)();
return false;
}
/**
* crypt_smime_decrypt_mime - Wrapper for CryptModuleSpecs::decrypt_mime()
*/
int crypt_smime_decrypt_mime(FILE *fp_in, FILE **fp_out, struct Body *b, struct Body **b_dec)
{
if (CRYPT_MOD_CALL_CHECK(SMIME, decrypt_mime))
return CRYPT_MOD_CALL(SMIME, decrypt_mime)(fp_in, fp_out, b, b_dec);
return -1;
}
/**
* crypt_smime_application_handler - Wrapper for CryptModuleSpecs::application_handler() - Implements ::handler_t - @ingroup handler_api
*/
int crypt_smime_application_handler(struct Body *b_email, struct State *state)
{
if (CRYPT_MOD_CALL_CHECK(SMIME, application_handler))
return CRYPT_MOD_CALL(SMIME, application_handler)(b_email, state);
return -1;
}
/**
* crypt_smime_getkeys - Wrapper for CryptModuleSpecs::smime_getkeys()
*/
void crypt_smime_getkeys(struct Envelope *env)
{
if (CRYPT_MOD_CALL_CHECK(SMIME, smime_getkeys))
CRYPT_MOD_CALL(SMIME, smime_getkeys)(env);
}
/**
* crypt_smime_verify_sender - Wrapper for CryptModuleSpecs::smime_verify_sender()
*/
int crypt_smime_verify_sender(struct Email *e, struct Message *msg)
{
if (CRYPT_MOD_CALL_CHECK(SMIME, smime_verify_sender))
return CRYPT_MOD_CALL(SMIME, smime_verify_sender)(e, msg);
return 1;
}
/**
* crypt_smime_find_keys - Wrapper for CryptModuleSpecs::find_keys()
*/
char *crypt_smime_find_keys(struct AddressList *addrlist, bool oppenc_mode)
{
if (CRYPT_MOD_CALL_CHECK(SMIME, find_keys))
return CRYPT_MOD_CALL(SMIME, find_keys)(addrlist, oppenc_mode);
return NULL;
}
/**
* crypt_smime_sign_message - Wrapper for CryptModuleSpecs::sign_message()
*/
struct Body *crypt_smime_sign_message(struct Body *b, const struct AddressList *from)
{
if (CRYPT_MOD_CALL_CHECK(SMIME, sign_message))
return CRYPT_MOD_CALL(SMIME, sign_message)(b, from);
return NULL;
}
/**
* crypt_smime_build_smime_entity - Wrapper for CryptModuleSpecs::smime_build_smime_entity()
*/
struct Body *crypt_smime_build_smime_entity(struct Body *b, char *certlist)
{
if (CRYPT_MOD_CALL_CHECK(SMIME, smime_build_smime_entity))
return CRYPT_MOD_CALL(SMIME, smime_build_smime_entity)(b, certlist);
return NULL;
}
/**
* crypt_smime_invoke_import - Wrapper for CryptModuleSpecs::smime_invoke_import()
*/
void crypt_smime_invoke_import(const char *infile, const char *mailbox)
{
if (CRYPT_MOD_CALL_CHECK(SMIME, smime_invoke_import))
CRYPT_MOD_CALL(SMIME, smime_invoke_import)(infile, mailbox);
}
/**
* crypt_smime_verify_one - Wrapper for CryptModuleSpecs::verify_one()
*/
int crypt_smime_verify_one(struct Body *b, struct State *state, const char *tempf)
{
if (CRYPT_MOD_CALL_CHECK(SMIME, verify_one))
return CRYPT_MOD_CALL(SMIME, verify_one)(b, state, tempf);
return -1;
}
/**
* crypt_smime_send_menu - Wrapper for CryptModuleSpecs::send_menu()
*/
SecurityFlags crypt_smime_send_menu(struct Email *e)
{
if (CRYPT_MOD_CALL_CHECK(SMIME, send_menu))
return CRYPT_MOD_CALL(SMIME, send_menu)(e);
return 0;
}
/**
* crypt_smime_set_sender - Wrapper for CryptModuleSpecs::set_sender()
*/
void crypt_smime_set_sender(const char *sender)
{
if (CRYPT_MOD_CALL_CHECK(SMIME, set_sender))
CRYPT_MOD_CALL(SMIME, set_sender)(sender);
}
|