2 * Copyright (C) 1996-7,2007 Michael R. Elkins <me@mutt.org>
3 * Copyright (c) 1998-2003 Thomas Roessler <roessler@does-not-exist.org>
5 * This program is free software; you can redistribute it
6 * and/or modify it under the terms of the GNU General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later
11 * This program is distributed in the hope that it will be
12 * useful, but WITHOUT ANY WARRANTY; without even the implied
13 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more
17 * You should have received a copy of the GNU General Public
18 * License along with this program; if not, write to the Free
19 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
28 #include "mutt_curses.h"
29 #include "mutt_menu.h"
44 #ifdef CRYPT_BACKEND_CLASSIC_PGP
50 struct pgp_cache *next;
53 static struct pgp_cache *id_defaults = NULL;
55 static char trust_flags[] = "?- +";
57 static char *pgp_key_abilities (int flags)
61 if (!(flags & KEYFLAG_CANENCRYPT))
63 else if (flags & KEYFLAG_PREFER_SIGNING)
68 if (!(flags & KEYFLAG_CANSIGN))
70 else if (flags & KEYFLAG_PREFER_ENCRYPTION)
80 static char pgp_flags (int flags)
82 if (flags & KEYFLAG_REVOKED)
84 else if (flags & KEYFLAG_EXPIRED)
86 else if (flags & KEYFLAG_DISABLED)
88 else if (flags & KEYFLAG_CRITICAL)
94 static pgp_key_t pgp_principal_key (pgp_key_t key)
96 if (key->flags & KEYFLAG_SUBKEY && key->parent)
103 * Format an entry on the PGP key selection menu.
106 * %k key id %K key id of the principal key
108 * %a algorithm %A algorithm of the princ. key
109 * %l length %L length of the princ. key
110 * %f flags %F flags of the princ. key
111 * %c capabilities %C capabilities of the princ. key
112 * %t trust/validity of the key-uid association
113 * %[...] date of key using strftime(3)
116 typedef struct pgp_entry
122 static const char *pgp_entry_fmt (char *dest,
128 const char *ifstring,
129 const char *elsestring,
138 int optional = (flags & M_FORMAT_OPTIONAL);
140 entry = (pgp_entry_t *) data;
143 pkey = pgp_principal_key (key);
145 if (isupper ((unsigned char) op))
148 kflags = key->flags | (pkey->flags & KEYFLAG_RESTRICTIONS)
151 switch (ascii_tolower (op))
157 char buf2[SHORT_STRING], *p;
174 while (len > 0 && *cp != ']')
186 break; /* not enough space */
197 if (do_locales && Locale)
198 setlocale (LC_TIME, Locale);
200 tm = localtime (&key->gen_time);
202 strftime (buf2, sizeof (buf2), dest, tm);
205 setlocale (LC_TIME, "C");
207 snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
208 snprintf (dest, destlen, fmt, buf2);
216 snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
217 snprintf (dest, destlen, fmt, entry->num);
223 snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
224 snprintf (dest, destlen, fmt, _pgp_keyid (key));
230 snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
231 snprintf (dest, destlen, fmt, uid->addr);
237 snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
238 snprintf (dest, destlen, fmt, key->algorithm);
244 snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
245 snprintf (dest, destlen, fmt, key->keylen);
251 snprintf (fmt, sizeof (fmt), "%%%sc", prefix);
252 snprintf (dest, destlen, fmt, pgp_flags (kflags));
254 else if (!(kflags & (KEYFLAG_RESTRICTIONS)))
260 snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
261 snprintf (dest, destlen, fmt, pgp_key_abilities (kflags));
263 else if (!(kflags & (KEYFLAG_ABILITIES)))
269 snprintf (fmt, sizeof (fmt), "%%%sc", prefix);
270 snprintf (dest, destlen, fmt, trust_flags[uid->trust & 0x03]);
272 else if (!(uid->trust & 0x03))
273 /* undefined trust */
281 mutt_FormatString (dest, destlen, col, ifstring, mutt_attach_fmt, data, 0);
282 else if (flags & M_FORMAT_OPTIONAL)
283 mutt_FormatString (dest, destlen, col, elsestring, mutt_attach_fmt, data, 0);
287 static void pgp_entry (char *s, size_t l, MUTTMENU * menu, int num)
289 pgp_uid_t **KeyTable = (pgp_uid_t **) menu->data;
292 entry.uid = KeyTable[num];
295 mutt_FormatString (s, l, 0, NONULL (PgpEntryFormat), pgp_entry_fmt,
296 (unsigned long) &entry, M_FORMAT_ARROWCURSOR);
299 static int _pgp_compare_address (const void *a, const void *b)
303 pgp_uid_t **s = (pgp_uid_t **) a;
304 pgp_uid_t **t = (pgp_uid_t **) b;
306 if ((r = mutt_strcasecmp ((*s)->addr, (*t)->addr)))
309 return (mutt_strcasecmp (_pgp_keyid ((*s)->parent),
310 _pgp_keyid ((*t)->parent)) > 0);
313 static int pgp_compare_address (const void *a, const void *b)
315 return ((PgpSortKeys & SORT_REVERSE) ? !_pgp_compare_address (a, b)
316 : _pgp_compare_address (a, b));
321 static int _pgp_compare_keyid (const void *a, const void *b)
325 pgp_uid_t **s = (pgp_uid_t **) a;
326 pgp_uid_t **t = (pgp_uid_t **) b;
328 if ((r = mutt_strcasecmp (_pgp_keyid ((*s)->parent),
329 _pgp_keyid ((*t)->parent))))
332 return (mutt_strcasecmp ((*s)->addr, (*t)->addr)) > 0;
335 static int pgp_compare_keyid (const void *a, const void *b)
337 return ((PgpSortKeys & SORT_REVERSE) ? !_pgp_compare_keyid (a, b)
338 : _pgp_compare_keyid (a, b));
341 static int _pgp_compare_date (const void *a, const void *b)
344 pgp_uid_t **s = (pgp_uid_t **) a;
345 pgp_uid_t **t = (pgp_uid_t **) b;
347 if ((r = ((*s)->parent->gen_time - (*t)->parent->gen_time)))
349 return (mutt_strcasecmp ((*s)->addr, (*t)->addr)) > 0;
352 static int pgp_compare_date (const void *a, const void *b)
354 return ((PgpSortKeys & SORT_REVERSE) ? !_pgp_compare_date (a, b)
355 : _pgp_compare_date (a, b));
358 static int _pgp_compare_trust (const void *a, const void *b)
362 pgp_uid_t **s = (pgp_uid_t **) a;
363 pgp_uid_t **t = (pgp_uid_t **) b;
365 if ((r = (((*s)->parent->flags & (KEYFLAG_RESTRICTIONS))
366 - ((*t)->parent->flags & (KEYFLAG_RESTRICTIONS)))))
368 if ((r = ((*s)->trust - (*t)->trust)))
370 if ((r = ((*s)->parent->keylen - (*t)->parent->keylen)))
372 if ((r = ((*s)->parent->gen_time - (*t)->parent->gen_time)))
374 if ((r = mutt_strcasecmp ((*s)->addr, (*t)->addr)))
376 return (mutt_strcasecmp (_pgp_keyid ((*s)->parent),
377 _pgp_keyid ((*t)->parent))) > 0;
380 static int pgp_compare_trust (const void *a, const void *b)
382 return ((PgpSortKeys & SORT_REVERSE) ? !_pgp_compare_trust (a, b)
383 : _pgp_compare_trust (a, b));
386 static int pgp_key_is_valid (pgp_key_t k)
388 pgp_key_t pk = pgp_principal_key (k);
389 if (k->flags & KEYFLAG_CANTUSE)
391 if (pk->flags & KEYFLAG_CANTUSE)
397 static int pgp_id_is_strong (pgp_uid_t *uid)
399 if ((uid->trust & 3) < 3)
405 static int pgp_id_is_valid (pgp_uid_t *uid)
407 if (!pgp_key_is_valid (uid->parent))
409 if (uid->flags & KEYFLAG_CANTUSE)
415 #define PGP_KV_VALID 1
416 #define PGP_KV_ADDR 2
417 #define PGP_KV_STRING 4
418 #define PGP_KV_STRONGID 8
420 #define PGP_KV_MATCH (PGP_KV_ADDR|PGP_KV_STRING)
422 static int pgp_id_matches_addr (ADDRESS *addr, ADDRESS *u_addr, pgp_uid_t *uid)
426 if (pgp_id_is_valid (uid))
429 if (pgp_id_is_strong (uid))
430 rv |= PGP_KV_STRONGID;
432 if (addr->mailbox && u_addr->mailbox
433 && mutt_strcasecmp (addr->mailbox, u_addr->mailbox) == 0)
436 if (addr->personal && u_addr->personal
437 && mutt_strcasecmp (addr->personal, u_addr->personal) == 0)
443 static pgp_key_t pgp_select_key (pgp_key_t keys,
444 ADDRESS * p, const char *s)
447 pgp_uid_t **KeyTable;
450 char helpstr[LONG_STRING], buf[LONG_STRING], tmpbuf[STRING];
451 char cmd[LONG_STRING], tempfile[_POSIX_PATH_MAX];
456 int (*f) (const void *, const void *);
463 for (i = 0, kp = keys; kp; kp = kp->next)
465 if (!option (OPTPGPSHOWUNUSABLE) && (kp->flags & KEYFLAG_CANTUSE))
471 for (a = kp->address; a; a = a->next)
473 if (!option (OPTPGPSHOWUNUSABLE) && (a->flags & KEYFLAG_CANTUSE))
482 safe_realloc (&KeyTable, sizeof (pgp_uid_t *) * keymax);
491 mutt_error _("All matching keys are expired, revoked, or disabled.");
496 switch (PgpSortKeys & SORT_MASK)
499 f = pgp_compare_date;
502 f = pgp_compare_keyid;
505 f = pgp_compare_address;
509 f = pgp_compare_trust;
512 qsort (KeyTable, i, sizeof (pgp_uid_t *), f);
515 mutt_make_help (buf, sizeof (buf), _("Exit "), MENU_PGP, OP_EXIT);
516 strcat (helpstr, buf); /* __STRCAT_CHECKED__ */
517 mutt_make_help (buf, sizeof (buf), _("Select "), MENU_PGP,
518 OP_GENERIC_SELECT_ENTRY);
519 strcat (helpstr, buf); /* __STRCAT_CHECKED__ */
520 mutt_make_help (buf, sizeof (buf), _("Check key "), MENU_PGP, OP_VERIFY_KEY);
521 strcat (helpstr, buf); /* __STRCAT_CHECKED__ */
522 mutt_make_help (buf, sizeof (buf), _("Help"), MENU_PGP, OP_HELP);
523 strcat (helpstr, buf); /* __STRCAT_CHECKED__ */
525 menu = mutt_new_menu (MENU_PGP);
527 menu->make_entry = pgp_entry;
528 menu->help = helpstr;
529 menu->data = KeyTable;
532 snprintf (buf, sizeof (buf), _("PGP keys matching <%s>."), p->mailbox);
534 snprintf (buf, sizeof (buf), _("PGP keys matching \"%s\"."), s);
545 switch (mutt_menuLoop (menu))
550 mutt_mktemp (tempfile);
551 if ((devnull = fopen ("/dev/null", "w")) == NULL) /* __FOPEN_CHECKED__ */
553 mutt_perror _("Can't open /dev/null");
556 if ((fp = safe_fopen (tempfile, "w")) == NULL)
558 safe_fclose (&devnull);
559 mutt_perror _("Can't create temporary file");
563 mutt_message _("Invoking PGP...");
565 snprintf (tmpbuf, sizeof (tmpbuf), "0x%s", pgp_keyid (pgp_principal_key (KeyTable[menu->current]->parent)));
567 if ((thepid = pgp_invoke_verify_key (NULL, NULL, NULL, -1,
568 fileno (fp), fileno (devnull), tmpbuf)) == -1)
570 mutt_perror _("Can't create filter");
573 safe_fclose (&devnull);
576 mutt_wait_filter (thepid);
578 safe_fclose (&devnull);
580 snprintf (cmd, sizeof (cmd), _("Key ID: 0x%s"),
581 pgp_keyid (pgp_principal_key (KeyTable[menu->current]->parent)));
582 mutt_do_pager (cmd, tempfile, 0, NULL);
583 menu->redraw = REDRAW_FULL;
589 mutt_message ("%s", KeyTable[menu->current]->addr);
592 case OP_GENERIC_SELECT_ENTRY:
595 /* XXX make error reporting more verbose */
597 if (option (OPTPGPCHECKTRUST))
598 if (!pgp_key_is_valid (KeyTable[menu->current]->parent))
600 mutt_error _("This key can't be used: expired/disabled/revoked.");
604 if (option (OPTPGPCHECKTRUST) &&
605 (!pgp_id_is_valid (KeyTable[menu->current])
606 || !pgp_id_is_strong (KeyTable[menu->current])))
609 char buff[LONG_STRING];
611 if (KeyTable[menu->current]->flags & KEYFLAG_CANTUSE)
612 s = N_("ID is expired/disabled/revoked.");
613 else switch (KeyTable[menu->current]->trust & 0x03)
616 s = N_("ID has undefined validity.");
619 s = N_("ID is not valid.");
622 s = N_("ID is only marginally valid.");
626 snprintf (buff, sizeof (buff), _("%s Do you really want to use the key?"),
629 if (mutt_yesorno (buff, M_NO) != M_YES)
637 kp = pgp_principal_key (KeyTable[menu->current]->parent);
639 kp = KeyTable[menu->current]->parent;
652 mutt_menuDestroy (&menu);
655 set_option (OPTNEEDREDRAW);
660 pgp_key_t pgp_ask_for_key (char *tag, char *whatfor,
661 short abilities, pgp_ring_t keyring)
664 char resp[SHORT_STRING];
665 struct pgp_cache *l = NULL;
673 for (l = id_defaults; l; l = l->next)
674 if (!mutt_strcasecmp (whatfor, l->what))
676 strfcpy (resp, NONULL (l->dflt), sizeof (resp));
685 if (mutt_get_field (tag, resp, sizeof (resp), M_CLEAR) != 0)
691 mutt_str_replace (&l->dflt, resp);
694 l = safe_malloc (sizeof (struct pgp_cache));
695 l->next = id_defaults;
697 l->what = safe_strdup (whatfor);
698 l->dflt = safe_strdup (resp);
702 if ((key = pgp_getkeybystr (resp, abilities, keyring)))
710 /* generate a public key attachment */
712 BODY *pgp_make_key_attachment (char *tempf)
715 char buff[LONG_STRING];
716 char tempfb[_POSIX_PATH_MAX], tmp[STRING];
722 unset_option (OPTPGPCHECKTRUST);
724 key = pgp_ask_for_key (_("Please enter the key ID: "), NULL, 0, PGP_PUBRING);
726 if (!key) return NULL;
728 snprintf (tmp, sizeof (tmp), "0x%s", pgp_keyid (pgp_principal_key (key)));
733 mutt_mktemp (tempfb);
737 if ((tempfp = safe_fopen (tempf, tempf == tempfb ? "w" : "a")) == NULL)
739 mutt_perror _("Can't create temporary file");
743 if ((devnull = fopen ("/dev/null", "w")) == NULL) /* __FOPEN_CHECKED__ */
745 mutt_perror _("Can't open /dev/null");
746 safe_fclose (&tempfp);
752 mutt_message _("Invoking PGP...");
756 pgp_invoke_export (NULL, NULL, NULL, -1,
757 fileno (tempfp), fileno (devnull), tmp)) == -1)
759 mutt_perror _("Can't create filter");
761 safe_fclose (&tempfp);
762 safe_fclose (&devnull);
766 mutt_wait_filter (thepid);
768 safe_fclose (&tempfp);
769 safe_fclose (&devnull);
771 att = mutt_new_body ();
772 att->filename = safe_strdup (tempf);
775 att->type = TYPEAPPLICATION;
776 att->subtype = safe_strdup ("pgp-keys");
777 snprintf (buff, sizeof (buff), _("PGP Key %s."), tmp);
778 att->description = safe_strdup (buff);
779 mutt_update_encoding (att);
782 att->length = sb.st_size;
787 static LIST *pgp_add_string_to_hints (LIST *hints, const char *str)
792 if ((scratch = safe_strdup (str)) == NULL)
795 for (t = strtok (scratch, " ,.:\"()<>\n"); t;
796 t = strtok (NULL, " ,.:\"()<>\n"))
799 hints = mutt_add_list (hints, t);
806 static pgp_key_t *pgp_get_lastp (pgp_key_t p)
808 for (; p; p = p->next)
815 pgp_key_t pgp_getkeybyaddr (ADDRESS * a, short abilities, pgp_ring_t keyring)
823 pgp_key_t keys, k, kn;
824 pgp_key_t the_valid_key = NULL;
825 pgp_key_t matches = NULL;
826 pgp_key_t *last = &matches;
830 hints = pgp_add_string_to_hints (hints, a->mailbox);
831 if (a && a->personal)
832 hints = pgp_add_string_to_hints (hints, a->personal);
834 mutt_message (_("Looking for keys matching \"%s\"..."), a->mailbox);
835 keys = pgp_get_candidates (keyring, hints);
837 mutt_free_list (&hints);
842 dprint (5, (debugfile, "pgp_getkeybyaddr: looking for %s <%s>.",
843 a->personal, a->mailbox));
846 for (k = keys; k; k = kn)
850 dprint (5, (debugfile, " looking at key: %s\n",
853 if (abilities && !(k->flags & abilities))
855 dprint (5, (debugfile, " insufficient abilities: Has %x, want %x\n",
856 k->flags, abilities));
860 match = 0; /* any match */
862 for (q = k->address; q; q = q->next)
864 r = rfc822_parse_adrlist (NULL, q->addr);
866 for (p = r; p; p = p->next)
868 int validity = pgp_id_matches_addr (a, p, q);
870 if (validity & PGP_KV_MATCH) /* something matches */
873 /* is this key a strong candidate? */
874 if ((validity & PGP_KV_VALID) && (validity & PGP_KV_STRONGID)
875 && (validity & PGP_KV_ADDR))
877 if (the_valid_key && the_valid_key != k)
883 rfc822_free_address (&r);
888 *last = pgp_principal_key (k);
889 kn = pgp_remove_key (&keys, *last);
890 last = pgp_get_lastp (k);
894 pgp_free_key (&keys);
898 if (the_valid_key && !multi)
901 * There was precisely one strong match on a valid ID.
903 * Proceed without asking the user.
905 pgp_remove_key (&matches, the_valid_key);
906 pgp_free_key (&matches);
912 * Else: Ask the user.
914 if ((k = pgp_select_key (matches, a, NULL)))
915 pgp_remove_key (&matches, k);
916 pgp_free_key (&matches);
925 pgp_key_t pgp_getkeybystr (char *p, short abilities, pgp_ring_t keyring)
929 pgp_key_t matches = NULL;
930 pgp_key_t *last = &matches;
936 if ((l = mutt_strlen (p)) && p[l-1] == '!')
939 mutt_message (_("Looking for keys matching \"%s\"..."), p);
941 hints = pgp_add_string_to_hints (hints, p);
942 keys = pgp_get_candidates (keyring, hints);
943 mutt_free_list (&hints);
948 for (k = keys; k; k = kn)
951 if (abilities && !(k->flags & abilities))
956 for (a = k->address; a; a = a->next)
958 dprint (5, (debugfile, "pgp_getkeybystr: matching \"%s\" against key %s, \"%s\": ",
959 p, pgp_keyid (k), a->addr));
960 if (!*p || mutt_strcasecmp (p, pgp_keyid (k)) == 0 ||
961 (!mutt_strncasecmp (p, "0x", 2) && !mutt_strcasecmp (p + 2, pgp_keyid (k))) ||
962 (option (OPTPGPLONGIDS) && !mutt_strncasecmp (p, "0x", 2) &&
963 !mutt_strcasecmp (p + 2, k->keyid + 8)) ||
964 mutt_stristr (a->addr, p))
966 dprint (5, (debugfile, "match.\n"));
974 *last = pgp_principal_key (k);
975 kn = pgp_remove_key (&keys, *last);
976 last = pgp_get_lastp (k);
980 pgp_free_key (&keys);
984 if ((k = pgp_select_key (matches, NULL, p)))
985 pgp_remove_key (&matches, k);
987 pgp_free_key (&matches);
999 #endif /* CRYPT_BACKEND_CLASSIC_PGP */