2 * Copyright notice from original mutt:
3 * Copyright (C) 1996,1997 Michael R. Elkins <me@mutt.org>
4 * Copyright (C) 1998,1999 Thomas Roessler <roessler@does-not-exist.org>
5 * Copyright (C) 2004 g10 Code GmbH
7 * This file is part of mutt-ng, see http://www.muttng.org/.
8 * It's licensed under the GNU General Public License,
9 * please see the file GPL in the top level source directory.
13 * This file contains all of the PGP routines necessary to sign, encrypt,
14 * verify and decrypt PGP messages in either the new PGP/MIME format, or
15 * in the older Application/Pgp format. It also contains some code to
16 * cache the user's passphrase for repeat use when decrypting or signing
20 #include <lib-lib/lib-lib.h>
22 #ifdef HAVE_SYS_RESOURCE_H
23 # include <sys/resource.h>
26 #include <lib-mime/mime.h>
27 #include <lib-sys/unix.h>
29 #include <lib-ui/curses.h>
30 #include <lib-ui/enter.h>
31 #include <lib-ui/menu.h>
32 #include <lib-mx/mx.h>
42 char PgpPass[LONG_STRING];
43 time_t PgpExptime = 0; /* when does the cached passphrase expire? */
45 void pgp_void_passphrase (void)
47 p_clear(PgpPass, countof(PgpPass));
51 int pgp_valid_passphrase (void)
53 time_t now = time (NULL);
55 if (pgp_use_gpg_agent ()) {
57 return 1; /* handled by gpg-agent */
61 /* Use cached copy. */
64 pgp_void_passphrase ();
66 if (mutt_get_field_unbuffered (_("Enter PGP passphrase:"), PgpPass,
67 sizeof (PgpPass), M_PASS) == 0) {
68 PgpExptime = time (NULL) + PgpTimeout;
77 void pgp_forget_passphrase (void)
79 pgp_void_passphrase ();
80 mutt_message _("PGP passphrase forgotten.");
83 int pgp_use_gpg_agent (void) {
86 if (!option (OPTUSEGPGAGENT) || !getenv ("GPG_AGENT_INFO"))
89 if ((tty = ttyname(0)))
90 setenv ("GPG_TTY", tty, 0);
95 char *pgp_keyid (pgp_key_t k)
97 if ((k->flags & KEYFLAG_SUBKEY) && k->parent && option (OPTPGPIGNORESUB))
100 return _pgp_keyid (k);
103 char *_pgp_keyid (pgp_key_t k)
105 if (option (OPTPGPLONGIDS))
108 return (k->keyid + 8);
111 /* ----------------------------------------------------------------------------
112 * Routines for handing PGP input.
117 /* Copy PGP output messages and look for signs of a good signature */
119 static int pgp_copy_checksig (FILE * fpin, FILE * fpout)
123 if (PgpGoodSign.pattern) {
128 while ((line = mutt_read_line (line, &linelen, fpin, &lineno)) != NULL) {
129 if (regexec (PgpGoodSign.rx, line, 0, NULL, 0) == 0) {
133 if (m_strncmp (line, "[GNUPG:] ", 9) == 0)
141 mutt_copy_stream (fpin, fpout);
149 * Copy a clearsigned message, and strip the signature and PGP's
152 * XXX - charset handling: We assume that it is safe to do
153 * character set decoding first, dash decoding second here, while
154 * we do it the other way around in the main handler.
156 * (Note that we aren't worse than Outlook &c in this, and also
157 * note that we can successfully handle anything produced by any
158 * existing versions of mutt.)
161 static void pgp_copy_clearsigned (FILE * fpin, STATE * s, char *charset)
163 char buf[HUGE_STRING];
164 short complete, armor_header;
170 fc = fgetconv_open (fpin, charset, Charset, M_ICONV_HOOK_FROM);
172 for (complete = 1, armor_header = 1;
173 fgetconvs (buf, sizeof (buf), fc) != NULL;
174 complete = strchr (buf, '\n') != NULL) {
181 if (m_strcmp(buf, "-----BEGIN PGP SIGNATURE-----\n") == 0)
185 char *p = vskipspaces(buf);
193 state_puts (s->prefix, s);
195 if (buf[0] == '-' && buf[1] == ' ')
196 state_puts (buf + 2, s);
201 fgetconv_close (&fc);
205 /* Support for the Application/PGP Content Type. */
207 int pgp_application_pgp_handler (BODY * m, STATE * s)
209 int could_not_decrypt = 0;
210 int needpass = -1, pgp_keyblock = 0;
212 int clearsign = 0, rv, rc;
215 off_t last_pos, offset;
216 char buf[HUGE_STRING];
217 char outfile[_POSIX_PATH_MAX];
218 char tmpfname[_POSIX_PATH_MAX];
219 FILE *pgpout = NULL, *pgpin = NULL, *pgperr = NULL;
223 short maybe_goodsig = 1;
224 short have_any_sigs = 0;
226 char body_charset[STRING];
228 mutt_get_body_charset (body_charset, sizeof (body_charset), m);
230 rc = 0; /* silence false compiler warning if (s->flags & M_DISPLAY) */
232 fseeko (s->fpin, m->offset, 0);
233 last_pos = m->offset;
235 for (bytes = m->length; bytes > 0;) {
236 if (fgets (buf, sizeof (buf), s->fpin) == NULL)
239 offset = ftello (s->fpin);
240 bytes -= (offset - last_pos); /* don't rely on m_strlen(buf) */
243 if (m_strncmp("-----BEGIN PGP ", buf, 15) == 0) {
245 start_pos = last_pos;
247 if (m_strcmp("MESSAGE-----\n", buf + 15) == 0)
249 else if (m_strcmp("SIGNED MESSAGE-----\n", buf + 15) == 0) {
253 else if (!option (OPTDONTHANDLEPGPKEYS) &&
254 m_strcmp("PUBLIC KEY BLOCK-----\n", buf + 15) == 0) {
259 /* XXX - we may wish to recode here */
261 state_puts (s->prefix, s);
266 have_any_sigs = have_any_sigs || (clearsign && (s->flags & M_VERIFY));
268 /* Copy PGP material to temporary file */
269 tmpfp = m_tempfile(tmpfname, sizeof(tmpfname), NONULL(Tempdir), NULL);
271 mutt_perror (tmpfname);
276 while (bytes > 0 && fgets (buf, sizeof (buf) - 1, s->fpin) != NULL) {
277 offset = ftello (s->fpin);
278 bytes -= (offset - last_pos); /* don't rely on m_strlen(buf) */
284 && m_strcmp("-----END PGP MESSAGE-----\n", buf) == 0)
286 && (m_strcmp("-----END PGP SIGNATURE-----\n", buf) == 0
287 || m_strcmp("-----END PGP PUBLIC KEY BLOCK-----\n",
292 /* leave tmpfp open in case we still need it - but flush it! */
296 /* Invoke PGP if needed */
297 if (!clearsign || (s->flags & M_VERIFY)) {
298 pgpout = m_tempfile(outfile, sizeof(outfile), NONULL(Tempdir), NULL);
299 if (pgpout == NULL) {
300 mutt_perror (outfile);
304 if ((thepid = pgp_invoke_decode (&pgpin, NULL, &pgperr, -1,
305 fileno (pgpout), -1, tmpfname,
312 ("[-- Error: unable to create PGP subprocess! --]\n"),
315 else { /* PGP started successfully */
318 if (!pgp_valid_passphrase ())
319 pgp_void_passphrase ();
320 if (pgp_use_gpg_agent ())
322 fprintf (pgpin, "%s\n", PgpPass);
327 if (s->flags & M_DISPLAY) {
328 crypt_current_time (s, "PGP");
329 rc = pgp_copy_checksig (pgperr, s->fpout);
333 rv = mutt_wait_filter (thepid);
335 if (s->flags & M_DISPLAY) {
341 * gpg_good_sign-pattern did not match || pgp_decode_command returned not 0
342 * Sig _is_ correct if
343 * gpg_good_sign="" && pgp_decode_command returned 0
348 state_attach_puts (_("[-- End of PGP output --]\n\n"), s);
352 /* treat empty result as sign of failure */
353 /* TODO: maybe on failure mutt should include the original undecoded text. */
359 if (!clearsign && (!pgpout || c == EOF)) {
360 could_not_decrypt = 1;
361 pgp_void_passphrase ();
364 if (could_not_decrypt && !(s->flags & M_DISPLAY)) {
365 mutt_error _("Could not decrypt PGP message");
373 * Now, copy cleartext to the screen. NOTE - we expect that PGP
374 * outputs utf-8 cleartext. This may not always be true, but it
375 * seems to be a reasonable guess.
378 if (s->flags & M_DISPLAY) {
380 state_attach_puts (_("[-- BEGIN PGP MESSAGE --]\n\n"), s);
381 else if (pgp_keyblock)
382 state_attach_puts (_("[-- BEGIN PGP PUBLIC KEY BLOCK --]\n"), s);
384 state_attach_puts (_("[-- BEGIN PGP SIGNED MESSAGE --]\n\n"), s);
390 pgp_copy_clearsigned (tmpfp, s, body_charset);
396 state_set_prefix (s);
397 fc = fgetconv_open (pgpout, "utf-8", Charset, 0);
398 while ((c = fgetconv (fc)) != EOF)
399 state_prefix_putc (c, s);
400 fgetconv_close (&fc);
403 if (s->flags & M_DISPLAY) {
404 state_putc ('\n', s);
406 state_attach_puts (_("[-- END PGP MESSAGE --]\n"), s);
407 if (could_not_decrypt)
408 mutt_error _("Could not decrypt PGP message.");
410 mutt_message _("PGP message successfully decrypted.");
412 else if (pgp_keyblock)
413 state_attach_puts (_("[-- END PGP PUBLIC KEY BLOCK --]\n"), s);
415 state_attach_puts (_("[-- END PGP SIGNED MESSAGE --]\n"), s);
420 /* XXX - we may wish to recode here */
422 state_puts (s->prefix, s);
430 m->goodsig = (maybe_goodsig && have_any_sigs);
434 mutt_unlink (tmpfname);
438 mutt_unlink (outfile);
441 if (needpass == -1) {
443 ("[-- Error: could not find beginning of PGP message! --]\n\n"),
451 static int pgp_check_traditional_one_body (FILE * fp, BODY * b,
454 char tempfile[_POSIX_PATH_MAX];
455 char buf[HUGE_STRING];
462 if (b->type != TYPETEXT)
465 if (tagged_only && !b->tagged)
468 mutt_mktemp (tempfile);
469 if (mutt_decode_save_attachment (fp, b, tempfile, 0, 0) != 0) {
474 if ((tfp = fopen (tempfile, "r")) == NULL) {
479 while (fgets (buf, sizeof (buf), tfp)) {
480 if (m_strncmp("-----BEGIN PGP ", buf, 15) == 0) {
481 if (m_strcmp("MESSAGE-----\n", buf + 15) == 0)
483 else if (m_strcmp("SIGNED MESSAGE-----\n", buf + 15) == 0)
485 else if (m_strcmp("PUBLIC KEY BLOCK-----\n", buf + 15) == 0)
492 if (!enc && !sgn && !key)
495 /* fix the content type */
497 parameter_setval(&b->parameter, "format", "fixed");
499 parameter_setval(&b->parameter, "x-action", "pgp-encrypted");
501 parameter_setval(&b->parameter, "x-action", "pgp-signed");
503 parameter_setval(&b->parameter, "x-action", "pgp-keys");
508 int pgp_check_traditional (FILE * fp, BODY * b, int tagged_only)
513 for (; b; b = b->next) {
514 if (is_multipart (b))
515 rv = pgp_check_traditional (fp, b->parts, tagged_only) || rv;
516 else if (b->type == TYPETEXT) {
517 if ((r = mutt_is_application_pgp (b)))
520 rv = pgp_check_traditional_one_body (fp, b, tagged_only) || rv;
531 int pgp_verify_one (BODY * sigbdy, STATE * s, const char *tempfile)
533 char sigfile[_POSIX_PATH_MAX], pgperrfile[_POSIX_PATH_MAX];
534 FILE *fp, *pgpout, *pgperr;
539 snprintf (sigfile, sizeof (sigfile), "%s.asc", tempfile);
541 if (!(fp = safe_fopen (sigfile, "w"))) {
542 mutt_perror (sigfile);
546 fseeko (s->fpin, sigbdy->offset, 0);
547 mutt_copy_bytes (s->fpin, fp, sigbdy->length);
550 pgperr = m_tempfile(pgperrfile, sizeof(pgperrfile), NONULL(Tempdir), NULL);
551 if (pgperr == NULL) {
552 mutt_perror (pgperrfile);
557 crypt_current_time (s, "PGP");
559 if ((thepid = pgp_invoke_verify (NULL, &pgpout, NULL,
560 -1, -1, fileno (pgperr),
561 tempfile, sigfile)) != -1) {
562 if (pgp_copy_checksig (pgpout, s->fpout) >= 0)
570 if (pgp_copy_checksig (pgperr, s->fpout) >= 0)
573 if ((rv = mutt_wait_filter (thepid)))
579 state_attach_puts (_("[-- End of PGP output --]\n\n"), s);
581 mutt_unlink (sigfile);
582 mutt_unlink (pgperrfile);
588 /* Extract pgp public keys from messages or attachments */
590 static void pgp_extract_keys_from_attachment (FILE * fp, BODY * top)
594 char tempfname[_POSIX_PATH_MAX];
596 tempfp = m_tempfile(tempfname, sizeof(tempfname), NONULL(Tempdir), NULL);
597 if (tempfp == NULL) {
598 mutt_perror (_("Can't create temporary file"));
607 mutt_body_handler (top, &s);
611 pgp_invoke_import (tempfname);
612 mutt_any_key_to_continue (NULL);
614 mutt_unlink (tempfname);
617 void pgp_extract_keys_from_attachment_list (FILE * fp, int tag, BODY * top)
620 mutt_error _("Internal error. Inform <roessler@does-not-exist.org>.");
626 set_option (OPTDONTHANDLEPGPKEYS);
628 for (; top; top = top->next) {
629 if (!tag || top->tagged)
630 pgp_extract_keys_from_attachment (fp, top);
636 unset_option (OPTDONTHANDLEPGPKEYS);
639 BODY *pgp_decrypt_part (BODY * a, STATE * s, FILE * fpout, BODY * p)
641 char buf[LONG_STRING];
642 FILE *pgpin, *pgpout, *pgperr, *pgptmp;
646 char pgperrfile[_POSIX_PATH_MAX];
647 char pgptmpfile[_POSIX_PATH_MAX];
651 pgperr = m_tempfile(pgperrfile, sizeof(pgperrfile), NONULL(Tempdir), NULL);
653 mutt_perror (pgperrfile);
658 pgptmp = m_tempfile(pgptmpfile, sizeof(pgptmpfile), NONULL(Tempdir), NULL);
660 mutt_perror (pgptmpfile);
665 /* Position the stream at the beginning of the body, and send the data to
666 * the temporary file.
669 fseeko (s->fpin, a->offset, 0);
670 mutt_copy_bytes (s->fpin, pgptmp, a->length);
673 if ((thepid = pgp_invoke_decrypt (&pgpin, &pgpout, NULL, -1, -1,
674 fileno (pgperr), pgptmpfile)) == -1) {
677 if (s->flags & M_DISPLAY)
679 ("[-- Error: could not create a PGP subprocess! --]\n\n"),
684 /* send the PGP passphrase to the subprocess. Never do this if the
685 agent is active, because this might lead to a passphrase send as
687 if (!pgp_use_gpg_agent ())
688 fputs (PgpPass, pgpin);
692 /* Read the output from PGP, and make sure to change CRLF to LF, otherwise
693 * read_mime_header has a hard time parsing the message.
695 while (fgets (buf, sizeof (buf) - 1, pgpout) != NULL) {
697 if (len > 1 && buf[len - 2] == '\r')
698 strcpy (buf + len - 2, "\n"); /* __STRCPY_CHECKED__ */
703 rv = mutt_wait_filter (thepid);
704 mutt_unlink (pgptmpfile);
706 if (s->flags & M_DISPLAY) {
709 if (pgp_copy_checksig (pgperr, s->fpout) == 0 && !rv && p)
713 state_attach_puts (_("[-- End of PGP output --]\n\n"), s);
720 if (fgetc (fpout) == EOF) {
721 mutt_error (_("Decryption failed."));
722 pgp_void_passphrase ();
728 if ((tattach = mutt_read_mime_header (fpout, 0)) != NULL) {
730 * Need to set the length of this body part.
732 fstat (fileno (fpout), &info);
733 tattach->length = info.st_size - tattach->offset;
735 /* See if we need to recurse on this MIME part. */
737 mutt_parse_part (fpout, tattach);
743 int pgp_decrypt_mime (FILE * fpin, FILE ** fpout, BODY * b, BODY ** cur)
745 char tempfile[_POSIX_PATH_MAX];
749 if (!mutt_is_multipart_encrypted (b))
752 if (!b->parts || !b->parts->next)
759 *fpout = m_tempfile(tempfile, sizeof(tempfile), NONULL(Tempdir), NULL);
760 if (*fpout == NULL) {
761 mutt_perror (_("Can't create temporary file"));
766 *cur = pgp_decrypt_part (b, &s, *fpout, p);
776 int pgp_encrypted_handler (BODY * a, STATE * s)
778 char tempfile[_POSIX_PATH_MAX];
785 if (!a || a->type != TYPEAPPLICATION || !a->subtype ||
786 ascii_strcasecmp ("pgp-encrypted", a->subtype) != 0 ||
787 !a->next || a->next->type != TYPEAPPLICATION || !a->next->subtype ||
788 ascii_strcasecmp ("octet-stream", a->next->subtype) != 0) {
789 if (s->flags & M_DISPLAY)
790 state_attach_puts (_("[-- Error: malformed PGP/MIME message! --]\n\n"),
796 * Move forward to the application/pgp-encrypted body.
800 fpout = m_tempfile(tempfile, sizeof(tempfile), NONULL(Tempdir), NULL);
802 if (s->flags & M_DISPLAY)
804 ("[-- Error: could not create temporary file! --]\n"),
809 if (s->flags & M_DISPLAY)
810 crypt_current_time (s, "PGP");
812 if ((tattach = pgp_decrypt_part (a, s, fpout, p)) != NULL) {
813 if (s->flags & M_DISPLAY)
815 ("[-- The following data is PGP/MIME encrypted --]\n\n"),
820 rc = mutt_body_handler (tattach, s);
824 * if a multipart/signed is the _only_ sub-part of a
825 * multipart/encrypted, cache signature verification
830 if (mutt_is_multipart_signed (tattach) && !tattach->next)
831 p->goodsig |= tattach->goodsig;
833 if (s->flags & M_DISPLAY) {
834 state_puts ("\n", s);
835 state_attach_puts (_("[-- End of PGP/MIME encrypted data --]\n"), s);
838 body_list_wipe(&tattach);
839 /* clear 'Invoking...' message, since there's no error */
840 mutt_message _("PGP message successfully decrypted.");
842 mutt_error _("Could not decrypt PGP message");
843 pgp_void_passphrase ();
848 mutt_unlink (tempfile);
853 /* ----------------------------------------------------------------------------
854 * Routines for sending PGP/MIME messages.
858 BODY *pgp_sign_message (BODY * a)
861 char buffer[LONG_STRING];
862 char sigfile[_POSIX_PATH_MAX], signedfile[_POSIX_PATH_MAX];
863 FILE *pgpin, *pgpout, *pgperr, *fp, *sfp;
868 convert_to_7bit (a); /* Signed data _must_ be in 7-bit format. */
870 fp = m_tempfile(sigfile, sizeof(sigfile), NONULL(Tempdir), NULL);
875 sfp = m_tempfile(signedfile, sizeof(signedfile), NONULL(Tempdir), NULL);
877 mutt_perror (signedfile);
883 mutt_write_mime_header (a, sfp);
885 mutt_write_mime_body (a, sfp);
888 if ((thepid = pgp_invoke_sign (&pgpin, &pgpout, &pgperr,
889 -1, -1, -1, signedfile)) == -1) {
890 mutt_perror (_("Can't open PGP subprocess!"));
898 if (!pgp_use_gpg_agent ())
899 fputs (PgpPass, pgpin);
904 * Read back the PGP signature. Also, change MESSAGE=>SIGNATURE as
905 * recommended for future releases of PGP.
907 while (fgets (buffer, sizeof (buffer) - 1, pgpout) != NULL) {
908 if (m_strcmp("-----BEGIN PGP MESSAGE-----\n", buffer) == 0)
909 fputs ("-----BEGIN PGP SIGNATURE-----\n", fp);
910 else if (m_strcmp("-----END PGP MESSAGE-----\n", buffer) == 0)
911 fputs ("-----END PGP SIGNATURE-----\n", fp);
914 empty = 0; /* got some output, so we're ok */
917 /* check for errors from PGP */
919 while (fgets (buffer, sizeof (buffer) - 1, pgperr) != NULL) {
921 fputs (buffer, stdout);
924 if (mutt_wait_filter (thepid) && option (OPTPGPCHECKEXIT))
931 if (m_fclose(&fp) != 0) {
932 mutt_perror ("fclose");
938 pgp_void_passphrase ();
939 mutt_any_key_to_continue (NULL);
944 return (NULL); /* fatal error while signing */
948 t->type = TYPEMULTIPART;
949 t->subtype = m_strdup("signed");
950 t->encoding = ENC7BIT;
952 t->disposition = DISPINLINE;
954 parameter_set_boundary(&t->parameter);
955 parameter_setval(&t->parameter, "protocol", "application/pgp-signature");
956 parameter_setval(&t->parameter, "micalg", pgp_micalg (sigfile));
961 t->parts->next = body_new();
963 t->type = TYPEAPPLICATION;
964 t->subtype = m_strdup("pgp-signature");
965 t->filename = m_strdup(sigfile);
967 t->disposition = DISPINLINE;
968 t->encoding = ENC7BIT;
969 t->unlink = 1; /* ok to remove this file after sending. */
974 static short is_numerical_keyid (const char *s)
976 /* or should we require the "0x"? */
977 if (m_strncmp (s, "0x", 2) == 0)
982 if (strchr ("0123456789ABCDEFabcdef", *s++) == NULL)
988 /* This routine attempts to find the keyids of the recipients of a message.
989 * It returns NULL if any of the keys can not be found.
991 char *pgp_findKeys (address_t * to, address_t * cc, address_t * bcc)
993 char *keylist = NULL, *t;
995 size_t keylist_size = 0;
996 size_t keylist_used = 0;
997 address_t *tmp = NULL, *addr = NULL;
998 address_t **last = &tmp;
1001 pgp_key_t k_info = NULL, key = NULL;
1003 const char *fqdn = mutt_fqdn (1);
1005 for (i = 0; i < 3; i++) {
1020 *last = address_list_dup (p);
1022 last = &((*last)->next);
1026 rfc822_qualify (tmp, fqdn);
1028 address_list_uniq(tmp);
1030 for (p = tmp; p; p = p->next) {
1031 char buf[LONG_STRING];
1036 if ((keyID = mutt_crypt_hook (p)) != NULL) {
1039 snprintf (buf, sizeof (buf), _("Use keyID = \"%s\" for %s?"), keyID,
1041 if ((r = mutt_yesorno (buf, M_YES)) == M_YES) {
1042 if (is_numerical_keyid (keyID)) {
1043 if (m_strncmp (keyID, "0x", 2) == 0)
1045 goto bypass_selection; /* you don't see this. */
1048 /* check for e-mail address */
1049 if ((t = strchr (keyID, '@')) &&
1050 (addr = rfc822_parse_adrlist (NULL, keyID))) {
1052 rfc822_qualify (addr, fqdn);
1056 k_info = pgp_getkeybystr (keyID, KEYFLAG_CANENCRYPT, PGP_PUBRING);
1060 address_list_wipe(&tmp);
1061 address_list_wipe(&addr);
1067 pgp_invoke_getkeys (q);
1071 pgp_getkeybyaddr (q, KEYFLAG_CANENCRYPT, PGP_PUBRING)) == NULL) {
1072 snprintf (buf, sizeof (buf), _("Enter keyID for %s: "), q->mailbox);
1074 if ((key = pgp_ask_for_key (buf, q->mailbox,
1075 KEYFLAG_CANENCRYPT, PGP_PUBRING)) == NULL) {
1077 address_list_wipe(&tmp);
1078 address_list_wipe(&addr);
1085 keyID = pgp_keyid (key);
1088 keylist_size += m_strlen(keyID) + 4;
1089 p_realloc(&keylist, keylist_size);
1090 sprintf (keylist + keylist_used, "%s0x%s", keylist_used ? " " : "", /* __SPRINTF_CHECKED__ */
1092 keylist_used = m_strlen(keylist);
1094 pgp_free_key (&key);
1095 address_list_wipe(&addr);
1098 address_list_wipe(&tmp);
1102 /* Warning: "a" is no longer freed in this routine, you need
1103 * to free it later. This is necessary for $fcc_attach. */
1105 BODY *pgp_encrypt_message (BODY * a, char *keylist, int sign)
1107 char buf[LONG_STRING];
1108 char tempfile[_POSIX_PATH_MAX], pgperrfile[_POSIX_PATH_MAX];
1109 char pgpinfile[_POSIX_PATH_MAX];
1110 FILE *pgpin, *pgperr, *fpout, *fptmp;
1116 fpout = m_tempfile(tempfile, sizeof(tempfile), NONULL(Tempdir), NULL);
1117 if (fpout == NULL) {
1118 mutt_perror (_("Can't create temporary file"));
1122 pgperr = m_tempfile(pgperrfile, sizeof(pgperrfile), NONULL(Tempdir), NULL);
1123 if (pgperr == NULL) {
1124 mutt_perror (pgperrfile);
1129 unlink (pgperrfile);
1131 fptmp = m_tempfile(pgpinfile, sizeof(pgpinfile), NONULL(Tempdir), NULL);
1132 if (fptmp == NULL) {
1133 mutt_perror (pgpinfile);
1137 unlink (pgperrfile);
1142 convert_to_7bit (a);
1144 mutt_write_mime_header (a, fptmp);
1145 fputc ('\n', fptmp);
1146 mutt_write_mime_body (a, fptmp);
1149 if ((thepid = pgp_invoke_encrypt (&pgpin, NULL, NULL, -1,
1150 fileno (fpout), fileno (pgperr),
1151 pgpinfile, keylist, sign)) == -1) {
1158 if (!pgp_use_gpg_agent ())
1159 fputs (PgpPass, pgpin);
1160 fputc ('\n', pgpin);
1164 if (mutt_wait_filter (thepid) && option (OPTPGPCHECKEXIT))
1172 empty = (fgetc (fpout) == EOF);
1177 while (fgets (buf, sizeof (buf) - 1, pgperr) != NULL) {
1179 fputs (buf, stdout);
1183 /* pause if there is any error output from PGP */
1185 mutt_any_key_to_continue (NULL);
1188 /* fatal error while trying to encrypt message */
1190 pgp_void_passphrase (); /* just in case */
1196 t->type = TYPEMULTIPART;
1197 t->subtype = m_strdup("encrypted");
1198 t->encoding = ENC7BIT;
1200 t->disposition = DISPINLINE;
1202 parameter_set_boundary(&t->parameter);
1203 parameter_setval(&t->parameter, "protocol", "application/pgp-encrypted");
1205 t->parts = body_new();
1206 t->parts->type = TYPEAPPLICATION;
1207 t->parts->subtype = m_strdup("pgp-encrypted");
1208 t->parts->encoding = ENC7BIT;
1210 t->parts->next = body_new();
1211 t->parts->next->type = TYPEAPPLICATION;
1212 t->parts->next->subtype = m_strdup("octet-stream");
1213 t->parts->next->encoding = ENC7BIT;
1214 t->parts->next->filename = m_strdup(tempfile);
1215 t->parts->next->use_disp = 1;
1216 t->parts->next->disposition = DISPINLINE;
1217 t->parts->next->unlink = 1; /* delete after sending the message */
1218 t->parts->next->d_filename = m_strdup("msg.asc"); /* non pgp/mime can save */
1223 BODY *pgp_traditional_encryptsign (BODY * a, int flags, char *keylist)
1227 char pgpoutfile[_POSIX_PATH_MAX];
1228 char pgperrfile[_POSIX_PATH_MAX];
1229 char pgpinfile[_POSIX_PATH_MAX];
1231 char body_charset[STRING];
1233 const char *send_charset;
1235 FILE *pgpout = NULL, *pgperr = NULL, *pgpin = NULL;
1245 if (a->type != TYPETEXT)
1247 if (ascii_strcasecmp (a->subtype, "plain"))
1250 if ((fp = fopen (a->filename, "r")) == NULL) {
1251 mutt_perror (a->filename);
1255 pgpin = m_tempfile(pgpinfile, sizeof(pgpinfile), NONULL(Tempdir), NULL);
1256 if (pgpin == NULL) {
1257 mutt_perror (pgpinfile);
1262 /* The following code is really correct: If noconv is set,
1263 * a's charset parameter contains the on-disk character set, and
1264 * we have to convert from that to utf-8. If noconv is not set,
1265 * we have to convert from $charset to utf-8.
1268 mutt_get_body_charset (body_charset, sizeof (body_charset), a);
1270 from_charset = body_charset;
1272 from_charset = Charset;
1274 if (!charset_is_us_ascii (body_charset)) {
1278 if (flags & ENCRYPT)
1279 send_charset = "us-ascii";
1281 send_charset = "utf-8";
1283 fc = fgetconv_open (fp, from_charset, "utf-8", M_ICONV_HOOK_FROM);
1284 while ((c = fgetconv (fc)) != EOF)
1287 fgetconv_close (&fc);
1290 send_charset = "us-ascii";
1291 mutt_copy_stream (fp, pgpin);
1296 pgpout = m_tempfile(pgpoutfile, sizeof(pgpoutfile), NONULL(Tempdir), NULL);
1297 pgperr = m_tempfile(pgperrfile, sizeof(pgperrfile), NONULL(Tempdir), NULL);
1298 if (pgpout == NULL || pgperr == NULL) {
1299 mutt_perror (pgpout ? pgperrfile : pgpoutfile);
1303 unlink (pgpoutfile);
1309 unlink (pgperrfile);
1311 if ((thepid = pgp_invoke_traditional (&pgpin, NULL, NULL,
1312 -1, fileno (pgpout), fileno (pgperr),
1313 pgpinfile, keylist, flags)) == -1) {
1314 mutt_perror (_("Can't invoke PGP"));
1318 mutt_unlink (pgpinfile);
1319 unlink (pgpoutfile);
1323 if (pgp_use_gpg_agent ())
1326 fprintf (pgpin, "%s\n", PgpPass);
1329 if (mutt_wait_filter (thepid) && option (OPTPGPCHECKEXIT))
1332 mutt_unlink (pgpinfile);
1341 empty = (fgetc (pgpout) == EOF);
1346 while (fgets (buff, sizeof (buff), pgperr)) {
1348 fputs (buff, stdout);
1354 mutt_any_key_to_continue (NULL);
1358 pgp_void_passphrase (); /* just in case */
1359 unlink (pgpoutfile);
1365 b->encoding = ENC7BIT;
1368 b->subtype = m_strdup("plain");
1370 parameter_setval(&b->parameter, "x-action",
1371 flags & ENCRYPT ? "pgp-encrypted" : "pgp-signed");
1372 parameter_setval(&b->parameter, "charset", send_charset);
1374 b->filename = m_strdup(pgpoutfile);
1376 b->disposition = DISPINLINE;
1382 if (!(flags & ENCRYPT))
1383 b->encoding = a->encoding;
1388 int pgp_send_menu (HEADER * msg, int *redraw)
1391 char input_signas[SHORT_STRING];
1393 char prompt[LONG_STRING];
1395 /* If autoinline and no crypto options set, then set inline. */
1396 if (option (OPTPGPAUTOINLINE) && !((msg->security & APPLICATION_PGP)
1397 && (msg->security & (SIGN | ENCRYPT))))
1398 msg->security |= INLINE;
1400 snprintf (prompt, sizeof (prompt),
1401 _("PGP (e)ncrypt, (s)ign, sign (a)s, (b)oth, %s, or (c)lear? "),
1402 (msg->security & INLINE) ? _("PGP/M(i)ME") : _("(i)nline"));
1404 switch (mutt_multi_choice (prompt, _("esabifc"))) {
1405 case 1: /* (e)ncrypt */
1406 msg->security |= ENCRYPT;
1407 msg->security &= ~SIGN;
1410 case 2: /* (s)ign */
1411 msg->security |= SIGN;
1412 msg->security &= ~ENCRYPT;
1415 case 3: /* sign (a)s */
1416 unset_option (OPTPGPCHECKTRUST);
1419 pgp_ask_for_key (_("Sign as: "), NULL, KEYFLAG_CANSIGN,
1421 snprintf (input_signas, sizeof (input_signas), "0x%s", pgp_keyid (p));
1422 m_strreplace(&PgpSignAs, input_signas);
1425 msg->security |= SIGN;
1427 crypt_pgp_void_passphrase (); /* probably need a different passphrase */
1430 *redraw = REDRAW_FULL;
1433 case 4: /* (b)oth */
1434 msg->security |= (ENCRYPT | SIGN);
1437 case 5: /* (i)nline */
1438 if ((msg->security & (ENCRYPT | SIGN)))
1439 msg->security ^= INLINE;
1441 msg->security &= ~INLINE;
1444 case 6: /* (f)orget it */
1445 case 7: /* (c)lear */
1450 if (msg->security) {
1451 if (!(msg->security & (ENCRYPT | SIGN)))
1454 msg->security |= APPLICATION_PGP;
1457 return (msg->security);