2 * Copyright notice from original mutt:
3 * Copyright (C) 1996,1997 Michael R. Elkins <me@mutt.org>
4 * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
5 * Copyright (C) 2001 Thomas Roessler <roessler@does-not-exist.org>
6 * Oliver Ehli <elmy@acm.org>
7 * Copyright (C) 2003 Werner Koch <wk@gnupg.org>
8 * Copyright (C) 2004 g10code GmbH
10 * This file is part of mutt-ng, see http://www.muttng.org/.
11 * It's licensed under the GNU General Public License,
12 * please see the file GPL in the top level source directory.
15 #include <lib-lib/lib-lib.h>
20 #ifdef HAVE_SYS_RESOURCE_H
21 # include <sys/resource.h>
24 #include <lib-mime/mime.h>
26 #include <lib-ui/curses.h>
27 #include <lib-mx/mx.h>
35 static int crypt_write_signed (BODY *, STATE *, FILE *);
37 /* print the current time to avoid spoofing of the signature output */
38 void crypt_current_time (STATE * s, const char *app_name)
41 char p[STRING], tmp[STRING];
43 if (option (OPTCRYPTTIMESTAMP)) {
45 setlocale (LC_TIME, "");
46 strftime (p, sizeof (p), _(" (current time: %c)"), localtime (&t));
47 setlocale (LC_TIME, "C");
52 snprintf (tmp, sizeof (tmp), _("[-- %s output follows%s --]\n"),
53 NONULL (app_name), p);
54 state_attach_puts (tmp, s);
59 void crypt_forget_passphrase (void)
61 crypt_pgp_void_passphrase ();
62 crypt_smime_void_passphrase ();
63 mutt_message _("Passphrase(s) forgotten.");
67 #if defined(HAVE_SETRLIMIT)
69 static void disable_coredumps (void)
71 struct rlimit rl = { 0, 0 };
72 static short done = 0;
75 setrlimit (RLIMIT_CORE, &rl);
80 #endif /* HAVE_SETRLIMIT */
83 int crypt_valid_passphrase (int flags)
87 # if defined(HAVE_SETRLIMIT)
91 if (flags & APPLICATION_PGP)
92 ret = crypt_pgp_valid_passphrase ();
94 if (flags & APPLICATION_SMIME)
95 ret = crypt_smime_valid_passphrase ();
102 int mutt_protect (HEADER * msg, char *keylist)
104 BODY *pbody = NULL, *tmp_pbody = NULL;
105 BODY *tmp_smime_pbody = NULL;
106 BODY *tmp_pgp_pbody = NULL;
107 int flags = msg->security;
110 if ((msg->security & SIGN) && !crypt_valid_passphrase (msg->security))
113 if ((msg->security & PGPINLINE) == PGPINLINE) {
114 /* they really want to send it inline... go for it */
116 mutt_endwin _("Invoking PGP...");
118 pbody = crypt_pgp_traditional_encryptsign (msg->content, flags, keylist);
120 msg->content = pbody;
124 /* otherwise inline won't work...ask for revert */
125 if ((i = query_quadoption(OPT_PGPMIMEAUTO,
126 _("Message can't be sent inline. Revert to using PGP/MIME?")))
128 mutt_error _("Mail not sent.");
133 /* go ahead with PGP/MIME */
139 tmp_smime_pbody = msg->content;
140 tmp_pgp_pbody = msg->content;
142 if (msg->security & SIGN) {
143 if (msg->security & APPLICATION_SMIME) {
144 if (!(tmp_pbody = crypt_smime_sign_message (msg->content)))
146 pbody = tmp_smime_pbody = tmp_pbody;
149 if ((msg->security & APPLICATION_PGP)
150 && (!(flags & ENCRYPT) || option (OPTPGPRETAINABLESIG))) {
151 if (!(tmp_pbody = crypt_pgp_sign_message (msg->content)))
155 pbody = tmp_pgp_pbody = tmp_pbody;
158 if ((msg->security & APPLICATION_SMIME)
159 && (msg->security & APPLICATION_PGP)) {
160 /* here comes the draft ;-) */
165 if (msg->security & ENCRYPT) {
166 if ((msg->security & APPLICATION_SMIME)) {
167 if (!(tmp_pbody = crypt_smime_build_smime_entity (tmp_smime_pbody,
169 /* signed ? free it! */
172 /* free tmp_body if messages was signed AND encrypted ... */
173 if (tmp_smime_pbody != msg->content && tmp_smime_pbody != tmp_pbody) {
174 /* detatch and dont't delete msg->content,
175 which tmp_smime_pbody->parts after signing. */
176 tmp_smime_pbody->parts = tmp_smime_pbody->parts->next;
177 msg->content->next = NULL;
178 body_list_wipe(&tmp_smime_pbody);
183 if ((msg->security & APPLICATION_PGP)) {
184 if (!(pbody = crypt_pgp_encrypt_message (tmp_pgp_pbody, keylist,
187 /* did we perform a retainable signature? */
188 if (flags != msg->security) {
189 /* remove the outer multipart layer */
190 tmp_pgp_pbody = mutt_remove_multipart (tmp_pgp_pbody);
191 /* get rid of the signature */
192 body_list_wipe(&tmp_pgp_pbody->next);
198 /* destroy temporary signature envelope when doing retainable
202 if (flags != msg->security) {
203 tmp_pgp_pbody = mutt_remove_multipart (tmp_pgp_pbody);
204 body_list_wipe(&tmp_pgp_pbody->next);
210 msg->content = pbody;
216 int crypt_query (BODY * m)
223 if (m->type == TYPEAPPLICATION) {
224 t |= mutt_is_application_pgp (m);
226 t |= mutt_is_application_smime (m);
232 else if (m->type == TYPETEXT) {
233 t |= mutt_is_application_pgp (m);
238 if (m->type == TYPEMULTIPART) {
239 t |= mutt_is_multipart_encrypted (m);
240 t |= mutt_is_multipart_signed (m);
246 if (m->type == TYPEMULTIPART || m->type == TYPEMESSAGE) {
250 u = m->parts ? 0xffffffff : 0; /* Bits set in all parts */
251 w = 0; /* Bits set in any part */
253 for (p = m->parts; p; p = p->next) {
258 t |= u | (w & ~GOODSIGN);
260 if ((w & GOODSIGN) && !(u & GOODSIGN))
268 static int crypt_write_signed (BODY * a, STATE * s, FILE *fp)
274 fseeko (s->fpin, a->hdr_offset, 0);
275 bytes = a->length + a->offset - a->hdr_offset;
278 if ((c = fgetc (s->fpin)) == EOF)
286 if (c == '\n' && !hadcr)
301 void convert_to_7bit (BODY * a)
304 if (a->type == TYPEMULTIPART) {
305 if (a->encoding != ENC7BIT) {
306 a->encoding = ENC7BIT;
307 convert_to_7bit (a->parts);
309 else if (option (OPTPGPSTRICTENC))
310 convert_to_7bit (a->parts);
312 else if (a->type == TYPEMESSAGE &&
313 m_strcasecmp(a->subtype, "delivery-status")) {
314 if (a->encoding != ENC7BIT)
315 mutt_message_to_7bit (a, NULL);
317 else if (a->encoding == ENC8BIT)
318 a->encoding = ENCQUOTEDPRINTABLE;
319 else if (a->encoding == ENCBINARY)
320 a->encoding = ENCBASE64;
321 else if (a->content && a->encoding != ENCBASE64 &&
322 (a->content->from || (a->content->space &&
323 option (OPTPGPSTRICTENC))))
324 a->encoding = ENCQUOTEDPRINTABLE;
330 void crypt_extract_keys_from_messages (HEADER * h)
333 char tempfname[_POSIX_PATH_MAX], *mbox;
334 address_t *tmp = NULL;
337 fpout = m_tempfile(tempfname, sizeof(tempfname), NONULL(Tempdir), NULL);
339 mutt_error(_("Could not create temporary file"));
343 set_option (OPTDONTHANDLEPGPKEYS);
346 for (i = 0; i < Context->vcount; i++) {
347 if (Context->hdrs[Context->v2r[i]]->tagged) {
348 mutt_parse_mime_message (Context, Context->hdrs[Context->v2r[i]]);
349 if (Context->hdrs[Context->v2r[i]]->security & ENCRYPT &&
350 !crypt_valid_passphrase (Context->hdrs[Context->v2r[i]]->
356 if (Context->hdrs[Context->v2r[i]]->security & APPLICATION_PGP) {
357 mutt_copy_message (fpout, Context, Context->hdrs[Context->v2r[i]],
358 M_CM_DECODE | M_CM_CHARCONV, 0);
361 mutt_endwin (_("Trying to extract PGP keys...\n"));
362 crypt_pgp_invoke_import (tempfname);
365 if (Context->hdrs[Context->v2r[i]]->security & APPLICATION_SMIME) {
366 if (Context->hdrs[Context->v2r[i]]->security & ENCRYPT)
367 mutt_copy_message (fpout, Context, Context->hdrs[Context->v2r[i]],
368 M_CM_NOHEADER | M_CM_DECODE_CRYPT
369 | M_CM_DECODE_SMIME, 0);
371 mutt_copy_message (fpout, Context,
372 Context->hdrs[Context->v2r[i]], 0, 0);
375 if (Context->hdrs[Context->v2r[i]]->env->from)
376 tmp = mutt_expand_aliases (h->env->from);
377 else if (Context->hdrs[Context->v2r[i]]->env->sender)
378 tmp = mutt_expand_aliases (Context->hdrs[Context->v2r[i]]
380 mbox = tmp ? tmp->mailbox : NULL;
382 mutt_endwin (_("Trying to extract S/MIME certificates...\n"));
383 crypt_smime_invoke_import (tempfname, mbox);
393 mutt_parse_mime_message (Context, h);
394 if (!(h->security & ENCRYPT && !crypt_valid_passphrase (h->security))) {
395 if (h->security & APPLICATION_PGP) {
396 mutt_copy_message (fpout, Context, h, M_CM_DECODE | M_CM_CHARCONV, 0);
398 mutt_endwin (_("Trying to extract PGP keys...\n"));
399 crypt_pgp_invoke_import (tempfname);
402 if (h->security & APPLICATION_SMIME) {
403 if (h->security & ENCRYPT)
404 mutt_copy_message (fpout, Context, h, M_CM_NOHEADER
405 | M_CM_DECODE_CRYPT | M_CM_DECODE_SMIME, 0);
407 mutt_copy_message (fpout, Context, h, 0, 0);
411 tmp = mutt_expand_aliases (h->env->from);
412 else if (h->env->sender)
413 tmp = mutt_expand_aliases (h->env->sender);
414 mbox = tmp ? tmp->mailbox : NULL;
415 if (mbox) { /* else ? */
416 mutt_message (_("Trying to extract S/MIME certificates...\n"));
417 crypt_smime_invoke_import (tempfname, mbox);
425 mutt_any_key_to_continue (NULL);
427 mutt_unlink (tempfname);
429 unset_option (OPTDONTHANDLEPGPKEYS);
434 int crypt_get_keys (HEADER * msg, char **keylist)
436 /* Do a quick check to make sure that we can find all of the encryption
437 * keys if the user has requested this service.
440 set_option (OPTPGPCHECKTRUST);
444 if (msg->security & ENCRYPT) {
445 if (msg->security & APPLICATION_PGP) {
446 if ((*keylist = crypt_pgp_findkeys (msg->env->to, msg->env->cc,
447 msg->env->bcc)) == NULL)
449 unset_option (OPTPGPCHECKTRUST);
451 if (msg->security & APPLICATION_SMIME) {
452 if ((*keylist = crypt_smime_findkeys (msg->env->to, msg->env->cc,
453 msg->env->bcc)) == NULL)
463 static void crypt_fetch_signatures (BODY ***signatures, BODY * a, int *n)
465 for (; a; a = a->next) {
466 if (a->type == TYPEMULTIPART)
467 crypt_fetch_signatures (signatures, a->parts, n);
470 p_realloc(signatures, *n + 6);
472 (*signatures)[(*n)++] = a;
479 * This routine verifies a "multipart/signed" body.
482 int mutt_signed_handler (BODY * a, STATE * s)
484 char tempfile[_POSIX_PATH_MAX];
487 int protocol_major = TYPEOTHER;
488 char *protocol_minor = NULL;
491 BODY **signatures = NULL;
497 protocol = parameter_getval(a->parameter, "protocol");
500 /* extract the protocol information */
506 if ((protocol_minor = strchr (protocol, '/')))
509 m_strcpy(major, sizeof(major), protocol);
510 if ((t = strchr (major, '/')))
513 protocol_major = mutt_check_mime_type (major);
516 /* consistency check */
518 if (!(a && a->next && a->next->type == protocol_major &&
519 !m_strcasecmp(a->next->subtype, protocol_minor))) {
520 state_attach_puts (_("[-- Error: "
521 "Inconsistent multipart/signed structure! --]\n\n"),
523 return mutt_body_handler (a, s);
527 if (protocol_major == TYPEAPPLICATION
528 && !m_strcasecmp(protocol_minor, "pgp-signature"));
529 else if (protocol_major == TYPEAPPLICATION
530 && !(m_strcasecmp(protocol_minor, "x-pkcs7-signature")
531 && m_strcasecmp(protocol_minor, "pkcs7-signature")));
532 else if (protocol_major == TYPEMULTIPART
533 && !m_strcasecmp(protocol_minor, "mixed"));
535 state_printf (s, _("[-- Error: "
536 "Unknown multipart/signed protocol %s! --]\n\n"),
538 return mutt_body_handler (a, s);
541 if (s->flags & M_DISPLAY) {
543 crypt_fetch_signatures (&signatures, a->next, &sigcnt);
546 tempfp = m_tempfile(tempfile, sizeof(tempfile), NONULL(Tempdir), NULL);
548 mutt_error(_("Could not create temporary file"));
550 if (crypt_write_signed (a, s, tempfp) == 0) {
551 for (i = 0; i < sigcnt; i++) {
552 if (signatures[i]->type == TYPEAPPLICATION
553 && !m_strcasecmp(signatures[i]->subtype, "pgp-signature")) {
554 if (crypt_pgp_verify_one (signatures[i], s, tempfile) != 0)
560 if (signatures[i]->type == TYPEAPPLICATION
561 && (!m_strcasecmp(signatures[i]->subtype, "x-pkcs7-signature")
562 || !m_strcasecmp(signatures[i]->subtype, "pkcs7-signature")))
564 if (crypt_smime_verify_one (signatures[i], s, tempfile) != 0)
570 state_printf (s, _("[-- Warning: "
571 "We can't verify %s/%s signatures. --]\n\n"),
572 TYPE (signatures[i]), signatures[i]->subtype);
578 mutt_unlink (tempfile);
580 b->goodsig = goodsig;
581 b->badsig = !goodsig;
583 /* Now display the signed body */
584 state_attach_puts (_("[-- The following data is signed --]\n\n"), s);
587 p_delete(&signatures);
590 state_attach_puts (_("[-- Warning: Can't find any signatures. --]\n\n"),
594 rc = mutt_body_handler (a, s);
596 if (s->flags & M_DISPLAY && sigcnt)
597 state_attach_puts (_("\n[-- End of signed data --]\n"), s);