]> git.llucax.com Git - software/mutt-debian.git/blob - pgp.c
Switch to tokyocabinet (Closes: #530670)
[software/mutt-debian.git] / pgp.c
1 /*
2  * Copyright (C) 1996-7,2000 Michael R. Elkins <me@mutt.org>
3  * Copyright (C) 1998-2005 Thomas Roessler <roessler@does-not-exist.org>
4  * Copyright (C) 2004 g10 Code GmbH
5  *
6  *     This program is free software; you can redistribute it and/or modify
7  *     it under the terms of the GNU General Public License as published by
8  *     the Free Software Foundation; either version 2 of the License, or
9  *     (at your option) any later version.
10  * 
11  *     This program is distributed in the hope that it will be useful,
12  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *     GNU General Public License for more details.
15  * 
16  *     You should have received a copy of the GNU General Public License
17  *     along with this program; if not, write to the Free Software
18  *     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */ 
20
21 /*
22  * This file contains all of the PGP routines necessary to sign, encrypt,
23  * verify and decrypt PGP messages in either the new PGP/MIME format, or
24  * in the older Application/Pgp format.  It also contains some code to
25  * cache the user's passphrase for repeat use when decrypting or signing
26  * a message.
27  */
28
29 #if HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include "mutt.h"
34 #include "mutt_curses.h"
35 #include "pgp.h"
36 #include "mime.h"
37 #include "copy.h"
38
39 #include <sys/wait.h>
40 #include <string.h>
41 #include <stdlib.h>
42 #include <unistd.h>
43 #include <sys/stat.h>
44 #include <errno.h>
45 #include <ctype.h>
46
47 #ifdef HAVE_LOCALE_H
48 #include <locale.h>
49 #endif
50
51 #ifdef HAVE_SYS_TIME_H
52 # include <sys/time.h>
53 #endif
54
55 #ifdef HAVE_SYS_RESOURCE_H
56 # include <sys/resource.h>
57 #endif
58
59 #ifdef CRYPT_BACKEND_CLASSIC_PGP
60
61 #include "mutt_crypt.h"
62 #include "mutt_menu.h"
63
64
65 char PgpPass[LONG_STRING];
66 time_t PgpExptime = 0; /* when does the cached passphrase expire? */
67
68 void pgp_void_passphrase (void)
69 {
70   memset (PgpPass, 0, sizeof (PgpPass));
71   PgpExptime = 0;
72 }
73
74 int pgp_valid_passphrase (void)
75 {
76   time_t now = time (NULL);
77
78   if (pgp_use_gpg_agent())
79     {
80       *PgpPass = 0;
81       return 1; /* handled by gpg-agent */
82     }
83
84   if (now < PgpExptime)
85     /* Use cached copy.  */
86     return 1;
87   
88   pgp_void_passphrase ();
89
90   if (mutt_get_password (_("Enter PGP passphrase:"), PgpPass, sizeof (PgpPass)) == 0)
91     {
92       PgpExptime = time (NULL) + PgpTimeout;
93       return (1);
94     }
95   else
96     PgpExptime = 0;
97
98   return 0;
99 }
100
101 void pgp_forget_passphrase (void)
102 {
103   pgp_void_passphrase ();
104   mutt_message _("PGP passphrase forgotten.");
105 }
106
107 int pgp_use_gpg_agent (void)
108 {
109   char *tty;
110
111   if (!option (OPTUSEGPGAGENT) || !getenv ("GPG_AGENT_INFO"))
112     return 0;
113
114   if ((tty = ttyname(0)))
115     setenv("GPG_TTY", tty, 0);
116
117   return 1;
118 }
119
120 char *pgp_keyid(pgp_key_t k)
121 {
122   if((k->flags & KEYFLAG_SUBKEY) && k->parent && option(OPTPGPIGNORESUB))
123     k = k->parent;
124
125   return _pgp_keyid(k);
126 }
127
128 char *_pgp_keyid(pgp_key_t k)
129 {
130   if(option(OPTPGPLONGIDS))
131     return k->keyid;
132   else
133     return (k->keyid + 8);
134 }
135
136 /* ----------------------------------------------------------------------------
137  * Routines for handing PGP input.
138  */
139
140
141
142 /* Copy PGP output messages and look for signs of a good signature */
143
144 static int pgp_copy_checksig (FILE *fpin, FILE *fpout)
145 {
146   int rv = -1;
147
148   if (PgpGoodSign.pattern)
149   {
150     char *line = NULL;
151     int lineno = 0;
152     size_t linelen;
153     
154     while ((line = mutt_read_line (line, &linelen, fpin, &lineno, 0)) != NULL)
155     {
156       if (regexec (PgpGoodSign.rx, line, 0, NULL, 0) == 0)
157       {
158         dprint (2, (debugfile, "pgp_copy_checksig: \"%s\" matches regexp.\n",
159                     line));
160         rv = 0;
161       }
162       else
163         dprint (2, (debugfile, "pgp_copy_checksig: \"%s\" doesn't match regexp.\n",
164                     line));
165       
166       if (strncmp (line, "[GNUPG:] ", 9) == 0)
167         continue;
168       fputs (line, fpout);
169       fputc ('\n', fpout);
170     }
171     FREE (&line);
172   }
173   else
174   {
175     dprint (2, (debugfile, "pgp_copy_checksig: No pattern.\n"));
176     mutt_copy_stream (fpin, fpout);
177     rv = 1;
178   }
179
180   return rv;
181 }
182
183 /* 
184  * Copy a clearsigned message, and strip the signature and PGP's
185  * dash-escaping.
186  * 
187  * XXX - charset handling: We assume that it is safe to do
188  * character set decoding first, dash decoding second here, while
189  * we do it the other way around in the main handler.
190  * 
191  * (Note that we aren't worse than Outlook &c in this, and also
192  * note that we can successfully handle anything produced by any
193  * existing versions of mutt.) 
194  */
195
196 static void pgp_copy_clearsigned (FILE *fpin, STATE *s, char *charset)
197 {
198   char buf[HUGE_STRING];
199   short complete, armor_header;
200   
201   FGETCONV *fc;
202   
203   rewind (fpin);
204
205   /* fromcode comes from the MIME Content-Type charset label. It might
206    * be a wrong label, so we want the ability to do corrections via
207    * charset-hooks. Therefore we set flags to M_ICONV_HOOK_FROM.
208    */
209   fc = fgetconv_open (fpin, charset, Charset, M_ICONV_HOOK_FROM);
210   
211   for (complete = 1, armor_header = 1;
212        fgetconvs (buf, sizeof (buf), fc) != NULL;
213        complete = strchr (buf, '\n') != NULL)
214   {
215     if (!complete)
216     {
217       if (!armor_header)
218         state_puts (buf, s);
219       continue;
220     }
221
222     if (mutt_strcmp (buf, "-----BEGIN PGP SIGNATURE-----\n") == 0)
223       break;
224     
225     if (armor_header)
226     {
227       char *p = mutt_skip_whitespace (buf);
228       if (*p == '\0') 
229         armor_header = 0;
230       continue;
231     }
232     
233     if (s->prefix) 
234       state_puts (s->prefix, s);
235     
236     if (buf[0] == '-' && buf[1] == ' ')
237       state_puts (buf + 2, s);
238     else
239       state_puts (buf, s);
240   }
241   
242   fgetconv_close (&fc);
243 }
244
245
246 /* Support for the Application/PGP Content Type. */
247
248 int pgp_application_pgp_handler (BODY *m, STATE *s)
249 {
250   int could_not_decrypt = 0;
251   int needpass = -1, pgp_keyblock = 0;
252   int clearsign = 0, rv, rc;
253   int c = 1; /* silence GCC warning */
254   long start_pos = 0;
255   long bytes;
256   LOFF_T last_pos, offset;
257   char buf[HUGE_STRING];
258   char outfile[_POSIX_PATH_MAX];
259   char tmpfname[_POSIX_PATH_MAX];
260   FILE *pgpout = NULL, *pgpin = NULL, *pgperr = NULL;
261   FILE *tmpfp = NULL;
262   pid_t thepid;
263
264   short maybe_goodsig = 1;
265   short have_any_sigs = 0;
266
267   char *gpgcharset = NULL;
268   char body_charset[STRING];
269   mutt_get_body_charset (body_charset, sizeof (body_charset), m);
270
271   rc = 0;       /* silence false compiler warning if (s->flags & M_DISPLAY) */
272
273   fseeko (s->fpin, m->offset, 0);
274   last_pos = m->offset;
275   
276   for (bytes = m->length; bytes > 0;)
277   {
278     if (fgets (buf, sizeof (buf), s->fpin) == NULL)
279       break;
280     
281     offset = ftello (s->fpin);
282     bytes -= (offset - last_pos); /* don't rely on mutt_strlen(buf) */
283     last_pos = offset;
284     
285     if (mutt_strncmp ("-----BEGIN PGP ", buf, 15) == 0)
286     {
287       clearsign = 0;
288       start_pos = last_pos;
289
290       if (mutt_strcmp ("MESSAGE-----\n", buf + 15) == 0)
291         needpass = 1;
292       else if (mutt_strcmp ("SIGNED MESSAGE-----\n", buf + 15) == 0)
293       {
294         clearsign = 1;
295         needpass = 0;
296       }
297       else if (!mutt_strcmp ("PUBLIC KEY BLOCK-----\n", buf + 15))
298       {
299         needpass = 0;
300         pgp_keyblock = 1;
301       } 
302       else
303       {
304         /* XXX - we may wish to recode here */
305         if (s->prefix)
306           state_puts (s->prefix, s);
307         state_puts (buf, s);
308         continue;
309       }
310
311       have_any_sigs = have_any_sigs || (clearsign && (s->flags & M_VERIFY));
312
313       /* Copy PGP material to temporary file */
314       mutt_mktemp (tmpfname);
315       if ((tmpfp = safe_fopen (tmpfname, "w+")) == NULL)
316       {
317         mutt_perror (tmpfname);
318         return -1;
319       }
320       
321       fputs (buf, tmpfp);
322       while (bytes > 0 && fgets (buf, sizeof (buf) - 1, s->fpin) != NULL)
323       {
324         offset = ftello (s->fpin);
325         bytes -= (offset - last_pos); /* don't rely on mutt_strlen(buf) */
326         last_pos = offset;
327         
328         fputs (buf, tmpfp);
329
330         if ((needpass && mutt_strcmp ("-----END PGP MESSAGE-----\n", buf) == 0) ||
331             (!needpass 
332              && (mutt_strcmp ("-----END PGP SIGNATURE-----\n", buf) == 0
333                  || mutt_strcmp ("-----END PGP PUBLIC KEY BLOCK-----\n",buf) == 0)))
334           break;
335         /* remember optional Charset: armor header as defined by RfC4880 */
336         if (mutt_strncmp ("Charset: ", buf, 9) == 0)
337         {
338           size_t l = 0;
339           gpgcharset = safe_strdup (buf + 9);
340           if ((l = mutt_strlen (gpgcharset)) > 0 && gpgcharset[l-1] == '\n')
341             gpgcharset[l-1] = 0;
342           if (mutt_check_charset (gpgcharset, 0) < 0)
343             mutt_str_replace (&gpgcharset, "UTF-8");
344         }
345       }
346
347       /* leave tmpfp open in case we still need it - but flush it! */
348       fflush (tmpfp);
349
350       /* Invoke PGP if needed */
351       if (!clearsign || (s->flags & M_VERIFY))
352       {
353         mutt_mktemp (outfile);
354         if ((pgpout = safe_fopen (outfile, "w+")) == NULL)
355         {
356           mutt_perror (tmpfname);
357           return -1;
358         }
359         
360         if ((thepid = pgp_invoke_decode (&pgpin, NULL, &pgperr, -1,
361                                          fileno (pgpout), -1, tmpfname,
362                                          needpass)) == -1)
363         {
364           safe_fclose (&pgpout);
365           maybe_goodsig = 0;
366           pgpin = NULL;
367           pgperr = NULL;
368           state_attach_puts (_("[-- Error: unable to create PGP subprocess! --]\n"), s);
369         }
370         else /* PGP started successfully */
371         {
372           if (needpass)
373           {
374             if (!pgp_valid_passphrase ()) pgp_void_passphrase();
375             if (pgp_use_gpg_agent())
376               *PgpPass = 0;
377             fprintf (pgpin, "%s\n", PgpPass);
378           }
379           
380           safe_fclose (&pgpin);
381
382           if (s->flags & M_DISPLAY)
383           {
384             crypt_current_time (s, "PGP");
385             rc = pgp_copy_checksig (pgperr, s->fpout);
386           }
387           
388           safe_fclose (&pgperr);
389           rv = mutt_wait_filter (thepid);
390           
391           if (s->flags & M_DISPLAY)
392           {
393             if (rc == 0) have_any_sigs = 1;
394             /*
395              * Sig is bad if
396              * gpg_good_sign-pattern did not match || pgp_decode_command returned not 0
397              * Sig _is_ correct if
398              *  gpg_good_sign="" && pgp_decode_command returned 0
399              */
400             if (rc == -1 || rv) maybe_goodsig = 0;
401             
402             state_attach_puts (_("[-- End of PGP output --]\n\n"), s);
403           }
404           if (pgp_use_gpg_agent())
405             mutt_need_hard_redraw ();
406         }
407         
408         /* treat empty result as sign of failure */
409         /* TODO: maybe on failure mutt should include the original undecoded text. */
410         if (pgpout)
411         {
412           rewind (pgpout);
413           c = fgetc (pgpout);
414           ungetc (c, pgpout);
415         }
416         if (!clearsign && (!pgpout || c == EOF))
417         {
418           could_not_decrypt = 1;
419           pgp_void_passphrase ();
420         }
421         
422         if (could_not_decrypt && !(s->flags & M_DISPLAY))
423         {
424           mutt_error _("Could not decrypt PGP message");
425           mutt_sleep (1);
426           rc = -1;
427           goto out;
428         }
429       }
430       
431       /*
432        * Now, copy cleartext to the screen.
433        */
434
435       if(s->flags & M_DISPLAY)
436       {
437         if (needpass)
438           state_attach_puts (_("[-- BEGIN PGP MESSAGE --]\n\n"), s);
439         else if (pgp_keyblock)
440           state_attach_puts (_("[-- BEGIN PGP PUBLIC KEY BLOCK --]\n"), s);
441         else
442           state_attach_puts (_("[-- BEGIN PGP SIGNED MESSAGE --]\n\n"), s);
443       }
444
445       if (clearsign)
446       {
447         rewind (tmpfp);
448         if (tmpfp) 
449           pgp_copy_clearsigned (tmpfp, s, body_charset);
450       }
451       else if (pgpout)
452       {
453         FGETCONV *fc;
454         int c;
455         char *expected_charset = gpgcharset && *gpgcharset ? gpgcharset : "utf-8";
456
457         dprint(4,(debugfile,"pgp: recoding inline from [%s] to [%s]\n",
458                   expected_charset, Charset));
459
460         rewind (pgpout);
461         state_set_prefix (s);
462         fc = fgetconv_open (pgpout, expected_charset, Charset, M_ICONV_HOOK_FROM);
463         while ((c = fgetconv (fc)) != EOF)
464           state_prefix_putc (c, s);
465         fgetconv_close (&fc);
466       }
467
468       if (s->flags & M_DISPLAY)
469       {
470         state_putc ('\n', s);
471         if (needpass)
472         {
473           state_attach_puts (_("[-- END PGP MESSAGE --]\n"), s);
474           if (could_not_decrypt)
475             mutt_error _("Could not decrypt PGP message");
476           else
477             mutt_message _("PGP message successfully decrypted.");
478         }
479         else if (pgp_keyblock)
480           state_attach_puts (_("[-- END PGP PUBLIC KEY BLOCK --]\n"), s);
481         else
482           state_attach_puts (_("[-- END PGP SIGNED MESSAGE --]\n"), s);
483       }
484     }
485 #if 0
486     else
487     {
488       /* why would we want to display this at all? */
489       /* XXX - we may wish to recode here */
490       if (s->prefix)
491         state_puts (s->prefix, s);
492       state_puts (buf, s);
493     }
494 #endif
495   }
496
497   rc = 0;
498
499 out:
500   m->goodsig = (maybe_goodsig && have_any_sigs);
501
502   if (tmpfp)
503   {
504     safe_fclose (&tmpfp);
505     mutt_unlink (tmpfname);
506   }
507   if (pgpout)
508   {
509     safe_fclose (&pgpout);
510     mutt_unlink (outfile);
511   }
512
513   FREE(&gpgcharset);
514
515   if (needpass == -1)
516   {
517     state_attach_puts (_("[-- Error: could not find beginning of PGP message! --]\n\n"), s);
518     return -1;
519   }
520   
521   return rc;
522 }
523
524 static int pgp_check_traditional_one_body (FILE *fp, BODY *b, int tagged_only)
525 {
526   char tempfile[_POSIX_PATH_MAX];
527   char buf[HUGE_STRING];
528   FILE *tfp;
529   
530   short sgn = 0;
531   short enc = 0;
532   short key = 0;
533   
534   if (b->type != TYPETEXT)
535     return 0;
536
537   if (tagged_only && !b->tagged)
538     return 0;
539
540   mutt_mktemp (tempfile);
541   if (mutt_decode_save_attachment (fp, b, tempfile, 0, 0) != 0)
542   {
543     unlink (tempfile);
544     return 0;
545   }
546   
547   if ((tfp = fopen (tempfile, "r")) == NULL)
548   {
549     unlink (tempfile);
550     return 0;
551   }
552   
553   while (fgets (buf, sizeof (buf), tfp))
554   {
555     if (mutt_strncmp ("-----BEGIN PGP ", buf, 15) == 0)
556     {
557       if (mutt_strcmp ("MESSAGE-----\n", buf + 15) == 0)
558         enc = 1;
559       else if (mutt_strcmp ("SIGNED MESSAGE-----\n", buf + 15) == 0)
560         sgn = 1;
561       else if (mutt_strcmp ("PUBLIC KEY BLOCK-----\n", buf + 15) == 0)
562         key = 1;
563     }
564   }
565   safe_fclose (&tfp);
566   unlink (tempfile);
567
568   if (!enc && !sgn && !key)
569     return 0;
570
571   /* fix the content type */
572   
573   mutt_set_parameter ("format", "fixed", &b->parameter);
574   if (enc)
575     mutt_set_parameter ("x-action", "pgp-encrypted", &b->parameter);
576   else if (sgn)
577     mutt_set_parameter ("x-action", "pgp-signed", &b->parameter);
578   else if (key)
579     mutt_set_parameter ("x-action", "pgp-keys", &b->parameter);
580   
581   return 1;
582 }
583
584 int pgp_check_traditional (FILE *fp, BODY *b, int tagged_only)
585 {
586   int rv = 0;
587   int r;
588   for (; b; b = b->next)
589   {
590     if (is_multipart (b))
591       rv = pgp_check_traditional (fp, b->parts, tagged_only) || rv;
592     else if (b->type == TYPETEXT)
593     {
594       if ((r = mutt_is_application_pgp (b)))
595         rv = rv || r;
596       else
597         rv = pgp_check_traditional_one_body (fp, b, tagged_only) || rv;
598     }
599   }
600
601   return rv;
602 }
603
604      
605
606
607
608 int pgp_verify_one (BODY *sigbdy, STATE *s, const char *tempfile)
609 {
610   char sigfile[_POSIX_PATH_MAX], pgperrfile[_POSIX_PATH_MAX];
611   FILE *fp, *pgpout, *pgperr;
612   pid_t thepid;
613   int badsig = -1;
614   int rv;
615   
616   snprintf (sigfile, sizeof (sigfile), "%s.asc", tempfile);
617   
618   if(!(fp = safe_fopen (sigfile, "w")))
619   {
620     mutt_perror(sigfile);
621     return -1;
622   }
623         
624   fseeko (s->fpin, sigbdy->offset, 0);
625   mutt_copy_bytes (s->fpin, fp, sigbdy->length);
626   safe_fclose (&fp);
627   
628   mutt_mktemp(pgperrfile);
629   if(!(pgperr = safe_fopen(pgperrfile, "w+")))
630   {
631     mutt_perror(pgperrfile);
632     unlink(sigfile);
633     return -1;
634   }
635   
636   crypt_current_time (s, "PGP");
637   
638   if((thepid = pgp_invoke_verify (NULL, &pgpout, NULL, 
639                                    -1, -1, fileno(pgperr),
640                                    tempfile, sigfile)) != -1)
641   {
642     if (pgp_copy_checksig (pgpout, s->fpout) >= 0)
643       badsig = 0;
644     
645     
646     safe_fclose (&pgpout);
647     fflush (pgperr);
648     rewind (pgperr);
649     
650     if (pgp_copy_checksig  (pgperr, s->fpout) >= 0)
651       badsig = 0;
652
653     if ((rv = mutt_wait_filter (thepid)))
654       badsig = -1;
655     
656      dprint (1, (debugfile, "pgp_verify_one: mutt_wait_filter returned %d.\n", rv));
657   }
658
659   safe_fclose (&pgperr);
660
661   state_attach_puts (_("[-- End of PGP output --]\n\n"), s);
662
663   mutt_unlink (sigfile);
664   mutt_unlink (pgperrfile);
665
666   dprint (1, (debugfile, "pgp_verify_one: returning %d.\n", badsig));
667   
668   return badsig;
669 }
670
671
672 /* Extract pgp public keys from messages or attachments */
673
674 void pgp_extract_keys_from_messages (HEADER *h)
675 {
676   int i;
677   char tempfname[_POSIX_PATH_MAX];
678   FILE *fpout;
679
680   if (h)
681   {
682     mutt_parse_mime_message (Context, h);
683     if(h->security & PGPENCRYPT && !pgp_valid_passphrase ())
684       return;
685   }
686
687   mutt_mktemp (tempfname);
688   if (!(fpout = safe_fopen (tempfname, "w")))
689   {
690     mutt_perror (tempfname);
691     return;
692   }
693
694   set_option (OPTDONTHANDLEPGPKEYS);
695   
696   if (!h)
697   {
698     for (i = 0; i < Context->vcount; i++)
699     {
700       if (Context->hdrs[Context->v2r[i]]->tagged)
701       {
702         mutt_parse_mime_message (Context, Context->hdrs[Context->v2r[i]]);
703         if (Context->hdrs[Context->v2r[i]]->security & PGPENCRYPT
704            && !pgp_valid_passphrase())
705         {
706           safe_fclose (&fpout);
707           goto bailout;
708         }
709         mutt_copy_message (fpout, Context, Context->hdrs[Context->v2r[i]], 
710                            M_CM_DECODE|M_CM_CHARCONV, 0);
711       }
712     }
713   } 
714   else
715   {
716     mutt_parse_mime_message (Context, h);
717     if (h->security & PGPENCRYPT && !pgp_valid_passphrase())
718     {
719       safe_fclose (&fpout);
720       goto bailout;
721     }
722     mutt_copy_message (fpout, Context, h, M_CM_DECODE|M_CM_CHARCONV, 0);
723   }
724       
725   safe_fclose (&fpout);
726   mutt_endwin (NULL);
727   pgp_invoke_import (tempfname);
728   mutt_any_key_to_continue (NULL);
729
730   bailout:
731   
732   mutt_unlink (tempfname);
733   unset_option (OPTDONTHANDLEPGPKEYS);
734   
735 }
736
737 static void pgp_extract_keys_from_attachment (FILE *fp, BODY *top)
738 {
739   STATE s;
740   FILE *tempfp;
741   char tempfname[_POSIX_PATH_MAX];
742
743   mutt_mktemp (tempfname);
744   if (!(tempfp = safe_fopen (tempfname, "w")))
745   {
746     mutt_perror (tempfname);
747     return;
748   }
749
750   memset (&s, 0, sizeof (STATE));
751   
752   s.fpin = fp;
753   s.fpout = tempfp;
754   
755   mutt_body_handler (top, &s);
756
757   safe_fclose (&tempfp);
758
759   pgp_invoke_import (tempfname);
760   mutt_any_key_to_continue (NULL);
761
762   mutt_unlink (tempfname);
763 }
764
765 void pgp_extract_keys_from_attachment_list (FILE *fp, int tag, BODY *top)
766 {
767   if(!fp)
768   {
769     mutt_error _("Internal error. Inform <roessler@does-not-exist.org>.");
770     return;
771   }
772
773   mutt_endwin (NULL);
774   set_option(OPTDONTHANDLEPGPKEYS);
775   
776   for(; top; top = top->next)
777   {
778     if(!tag || top->tagged)
779       pgp_extract_keys_from_attachment (fp, top);
780     
781     if(!tag)
782       break;
783   }
784   
785   unset_option(OPTDONTHANDLEPGPKEYS);
786 }
787
788 BODY *pgp_decrypt_part (BODY *a, STATE *s, FILE *fpout, BODY *p)
789 {
790   char buf[LONG_STRING];
791   FILE *pgpin, *pgpout, *pgperr, *pgptmp;
792   struct stat info;
793   BODY *tattach;
794   int len;
795   char pgperrfile[_POSIX_PATH_MAX];
796   char pgptmpfile[_POSIX_PATH_MAX];
797   pid_t thepid;
798   int rv;
799   
800   mutt_mktemp (pgperrfile);
801   if ((pgperr = safe_fopen (pgperrfile, "w+")) == NULL)
802   {
803     mutt_perror (pgperrfile);
804     return NULL;
805   }
806   unlink (pgperrfile);
807
808   mutt_mktemp (pgptmpfile);
809   if((pgptmp = safe_fopen (pgptmpfile, "w")) == NULL)
810   {
811     mutt_perror (pgptmpfile);
812     safe_fclose (&pgperr);
813     return NULL;
814   }
815
816   /* Position the stream at the beginning of the body, and send the data to
817    * the temporary file.
818    */
819
820   fseeko (s->fpin, a->offset, 0);
821   mutt_copy_bytes (s->fpin, pgptmp, a->length);
822   safe_fclose (&pgptmp);
823
824   if ((thepid = pgp_invoke_decrypt (&pgpin, &pgpout, NULL, -1, -1,
825                                     fileno (pgperr), pgptmpfile)) == -1)
826   {
827     safe_fclose (&pgperr);
828     unlink (pgptmpfile);
829     if (s->flags & M_DISPLAY)
830       state_attach_puts (_("[-- Error: could not create a PGP subprocess! --]\n\n"), s);
831     return (NULL);
832   }
833
834   /* send the PGP passphrase to the subprocess.  Never do this if the
835      agent is active, because this might lead to a passphrase send as
836      the message. */
837   if (!pgp_use_gpg_agent())
838     fputs (PgpPass, pgpin);
839   fputc ('\n', pgpin);
840   safe_fclose (&pgpin);
841   
842   /* Read the output from PGP, and make sure to change CRLF to LF, otherwise
843    * read_mime_header has a hard time parsing the message.
844    */
845   while (fgets (buf, sizeof (buf) - 1, pgpout) != NULL)
846   {
847     len = mutt_strlen (buf);
848     if (len > 1 && buf[len - 2] == '\r')
849       strcpy (buf + len - 2, "\n");     /* __STRCPY_CHECKED__ */
850     fputs (buf, fpout);
851   }
852
853   safe_fclose (&pgpout);
854   rv = mutt_wait_filter (thepid);
855   mutt_unlink(pgptmpfile);
856   
857   if (s->flags & M_DISPLAY)
858   {
859     fflush (pgperr);
860     rewind (pgperr);
861     if (pgp_copy_checksig (pgperr, s->fpout) == 0 && !rv && p)
862       p->goodsig = 1;
863     else
864       p->goodsig = 0;
865     state_attach_puts (_("[-- End of PGP output --]\n\n"), s);
866   }
867   safe_fclose (&pgperr);
868
869   fflush (fpout);
870   rewind (fpout);
871
872   if (pgp_use_gpg_agent())
873     mutt_need_hard_redraw ();
874
875   if (fgetc (fpout) == EOF)
876   {
877     mutt_error _("Decryption failed");
878     pgp_void_passphrase ();
879     return NULL;
880   }
881
882   rewind (fpout);
883   
884   if ((tattach = mutt_read_mime_header (fpout, 0)) != NULL)
885   {
886     /*
887      * Need to set the length of this body part.
888      */
889     fstat (fileno (fpout), &info);
890     tattach->length = info.st_size - tattach->offset;
891
892     /* See if we need to recurse on this MIME part.  */
893
894     mutt_parse_part (fpout, tattach);
895   }
896
897   return (tattach);
898 }
899
900 int pgp_decrypt_mime (FILE *fpin, FILE **fpout, BODY *b, BODY **cur)
901 {
902   char tempfile[_POSIX_PATH_MAX];
903   STATE s;
904   BODY *p = b;
905   
906   if(!mutt_is_multipart_encrypted(b))
907     return -1;
908
909   if(!b->parts || !b->parts->next)
910     return -1;
911   
912   b = b->parts->next;
913   
914   memset (&s, 0, sizeof (s));
915   s.fpin = fpin;
916   mutt_mktemp (tempfile);
917   if ((*fpout = safe_fopen (tempfile, "w+")) == NULL)
918   {
919     mutt_perror (tempfile);
920     return (-1);
921   }
922   unlink (tempfile);
923
924   *cur = pgp_decrypt_part (b, &s, *fpout, p);
925
926   rewind (*fpout);
927   
928   if (!*cur)
929     return -1;
930   
931   return (0);
932 }
933
934 int pgp_encrypted_handler (BODY *a, STATE *s)
935 {
936   char tempfile[_POSIX_PATH_MAX];
937   FILE *fpout, *fpin;
938   BODY *tattach;
939   BODY *p = a;
940   int rc = 0;
941   
942   a = a->parts;
943   if (!a || a->type != TYPEAPPLICATION || !a->subtype || 
944       ascii_strcasecmp ("pgp-encrypted", a->subtype) != 0 ||
945       !a->next || a->next->type != TYPEAPPLICATION || !a->next->subtype ||
946       ascii_strcasecmp ("octet-stream", a->next->subtype) != 0)
947   {
948     if (s->flags & M_DISPLAY)
949       state_attach_puts (_("[-- Error: malformed PGP/MIME message! --]\n\n"), s);
950     return -1;
951   }
952
953   /*
954    * Move forward to the application/pgp-encrypted body.
955    */
956   a = a->next;
957
958   mutt_mktemp (tempfile);
959   if ((fpout = safe_fopen (tempfile, "w+")) == NULL)
960   {
961     if (s->flags & M_DISPLAY)
962       state_attach_puts (_("[-- Error: could not create temporary file! --]\n"), s);
963     return -1;
964   }
965
966   if (s->flags & M_DISPLAY) crypt_current_time (s, "PGP");
967
968   if ((tattach = pgp_decrypt_part (a, s, fpout, p)) != NULL)
969   {
970     if (s->flags & M_DISPLAY)
971       state_attach_puts (_("[-- The following data is PGP/MIME encrypted --]\n\n"), s);
972
973     fpin = s->fpin;
974     s->fpin = fpout;
975     rc = mutt_body_handler (tattach, s);
976     s->fpin = fpin;
977
978     /* 
979      * if a multipart/signed is the _only_ sub-part of a
980      * multipart/encrypted, cache signature verification
981      * status.
982      *
983      */
984     
985     if (mutt_is_multipart_signed (tattach) && !tattach->next)
986       p->goodsig |= tattach->goodsig;
987     
988     if (s->flags & M_DISPLAY)
989     {
990       state_puts ("\n", s);
991       state_attach_puts (_("[-- End of PGP/MIME encrypted data --]\n"), s);
992     }
993
994     mutt_free_body (&tattach);
995     /* clear 'Invoking...' message, since there's no error */
996     mutt_message _("PGP message successfully decrypted.");
997   }
998   else
999   {
1000     mutt_error _("Could not decrypt PGP message");
1001     /* void the passphrase, even if it's not necessarily the problem */
1002     pgp_void_passphrase ();
1003     rc = -1;
1004   }
1005
1006   safe_fclose (&fpout);
1007   mutt_unlink(tempfile);
1008
1009   return rc;
1010 }
1011
1012 /* ----------------------------------------------------------------------------
1013  * Routines for sending PGP/MIME messages.
1014  */
1015
1016
1017 BODY *pgp_sign_message (BODY *a)
1018 {
1019   BODY *t;
1020   char buffer[LONG_STRING];
1021   char sigfile[_POSIX_PATH_MAX], signedfile[_POSIX_PATH_MAX];
1022   FILE *pgpin, *pgpout, *pgperr, *fp, *sfp;
1023   int err = 0;
1024   int empty = 1;
1025   pid_t thepid;
1026   
1027   convert_to_7bit (a); /* Signed data _must_ be in 7-bit format. */
1028
1029   mutt_mktemp (sigfile);
1030   if ((fp = safe_fopen (sigfile, "w")) == NULL)
1031   {
1032     return (NULL);
1033   }
1034
1035   mutt_mktemp (signedfile);
1036   if ((sfp = safe_fopen(signedfile, "w")) == NULL)
1037   {
1038     mutt_perror(signedfile);
1039     safe_fclose (&fp);
1040     unlink(sigfile);
1041     return NULL;
1042   }
1043   
1044   mutt_write_mime_header (a, sfp);
1045   fputc ('\n', sfp);
1046   mutt_write_mime_body (a, sfp);
1047   safe_fclose (&sfp);
1048   
1049   if ((thepid = pgp_invoke_sign (&pgpin, &pgpout, &pgperr,
1050                                  -1, -1, -1, signedfile)) == -1)
1051   {
1052     mutt_perror _("Can't open PGP subprocess!");
1053     safe_fclose (&fp);
1054     unlink(sigfile);
1055     unlink(signedfile);
1056     return NULL;
1057   }
1058   
1059   if (!pgp_use_gpg_agent())
1060      fputs(PgpPass, pgpin);
1061   fputc('\n', pgpin);
1062   safe_fclose (&pgpin);
1063   
1064   /*
1065    * Read back the PGP signature.  Also, change MESSAGE=>SIGNATURE as
1066    * recommended for future releases of PGP.
1067    */
1068   while (fgets (buffer, sizeof (buffer) - 1, pgpout) != NULL)
1069   {
1070     if (mutt_strcmp ("-----BEGIN PGP MESSAGE-----\n", buffer) == 0)
1071       fputs ("-----BEGIN PGP SIGNATURE-----\n", fp);
1072     else if (mutt_strcmp("-----END PGP MESSAGE-----\n", buffer) == 0)
1073       fputs ("-----END PGP SIGNATURE-----\n", fp);
1074     else
1075       fputs (buffer, fp);
1076     empty = 0; /* got some output, so we're ok */
1077   }
1078
1079   /* check for errors from PGP */
1080   err = 0;
1081   while (fgets (buffer, sizeof (buffer) - 1, pgperr) != NULL)
1082   {
1083     err = 1;
1084     fputs (buffer, stdout);
1085   }
1086
1087   if(mutt_wait_filter (thepid) && option(OPTPGPCHECKEXIT))
1088     empty=1;
1089
1090   safe_fclose (&pgperr);
1091   safe_fclose (&pgpout);
1092   unlink (signedfile);
1093   
1094   if (fclose (fp) != 0)
1095   {
1096     mutt_perror ("fclose");
1097     unlink (sigfile);
1098     return (NULL);
1099   }
1100
1101   if (err)
1102     mutt_any_key_to_continue (NULL);
1103   if (empty)
1104   {
1105     unlink (sigfile);
1106     /* most likely error is a bad passphrase, so automatically forget it */
1107     pgp_void_passphrase ();
1108     return (NULL); /* fatal error while signing */
1109   }
1110
1111   t = mutt_new_body ();
1112   t->type = TYPEMULTIPART;
1113   t->subtype = safe_strdup ("signed");
1114   t->encoding = ENC7BIT;
1115   t->use_disp = 0;
1116   t->disposition = DISPINLINE;
1117
1118   mutt_generate_boundary (&t->parameter);
1119   mutt_set_parameter ("protocol", "application/pgp-signature", &t->parameter);
1120   mutt_set_parameter ("micalg", pgp_micalg (sigfile), &t->parameter);
1121
1122   t->parts = a;
1123   a = t;
1124
1125   t->parts->next = mutt_new_body ();
1126   t = t->parts->next;
1127   t->type = TYPEAPPLICATION;
1128   t->subtype = safe_strdup ("pgp-signature");
1129   t->filename = safe_strdup (sigfile);
1130   t->use_disp = 0;
1131   t->disposition = DISPINLINE;
1132   t->encoding = ENC7BIT;
1133   t->unlink = 1; /* ok to remove this file after sending. */
1134
1135   return (a);
1136 }
1137
1138 static short is_numerical_keyid (const char *s)
1139 {
1140   /* or should we require the "0x"? */
1141   if (strncmp (s, "0x", 2) == 0)
1142     s += 2;
1143   if (strlen (s) % 8)
1144     return 0;
1145   while (*s)
1146     if (strchr ("0123456789ABCDEFabcdef", *s++) == NULL)
1147       return 0;
1148   
1149   return 1;
1150 }
1151
1152 /* This routine attempts to find the keyids of the recipients of a message.
1153  * It returns NULL if any of the keys can not be found.
1154  */
1155 char *pgp_findKeys (ADDRESS *to, ADDRESS *cc, ADDRESS *bcc)
1156 {
1157   char *keyID, *keylist = NULL;
1158   size_t keylist_size = 0;
1159   size_t keylist_used = 0;
1160   ADDRESS *tmp = NULL, *addr = NULL;
1161   ADDRESS **last = &tmp;
1162   ADDRESS *p, *q;
1163   int i;
1164   pgp_key_t k_info = NULL, key = NULL;
1165
1166   const char *fqdn = mutt_fqdn (1);
1167
1168   for (i = 0; i < 3; i++) 
1169   {
1170     switch (i)
1171     {
1172       case 0: p = to; break;
1173       case 1: p = cc; break;
1174       case 2: p = bcc; break;
1175       default: abort ();
1176     }
1177     
1178     *last = rfc822_cpy_adr (p, 0);
1179     while (*last)
1180       last = &((*last)->next);
1181   }
1182
1183   if (fqdn)
1184     rfc822_qualify (tmp, fqdn);
1185
1186   tmp = mutt_remove_duplicates (tmp);
1187   
1188   for (p = tmp; p ; p = p->next)
1189   {
1190     char buf[LONG_STRING];
1191
1192     q = p;
1193     k_info = NULL;
1194
1195     if ((keyID = mutt_crypt_hook (p)) != NULL)
1196     {
1197       int r;
1198       snprintf (buf, sizeof (buf), _("Use keyID = \"%s\" for %s?"), keyID, p->mailbox);
1199       if ((r = mutt_yesorno (buf, M_YES)) == M_YES)
1200       {
1201         if (is_numerical_keyid (keyID))
1202         {
1203           if (strncmp (keyID, "0x", 2) == 0)
1204             keyID += 2;
1205           goto bypass_selection;                /* you don't see this. */
1206         }
1207         
1208         /* check for e-mail address */
1209         if (strchr (keyID, '@') && 
1210             (addr = rfc822_parse_adrlist (NULL, keyID)))
1211         {
1212           if (fqdn) rfc822_qualify (addr, fqdn);
1213           q = addr;
1214         }
1215         else
1216           k_info = pgp_getkeybystr (keyID, KEYFLAG_CANENCRYPT, PGP_PUBRING);
1217       }
1218       else if (r == -1)
1219       {
1220         FREE (&keylist);
1221         rfc822_free_address (&tmp);
1222         rfc822_free_address (&addr);
1223         return NULL;
1224       }
1225     }
1226
1227     if (k_info == NULL)
1228       pgp_invoke_getkeys (q);
1229
1230     if (k_info == NULL && (k_info = pgp_getkeybyaddr (q, KEYFLAG_CANENCRYPT, PGP_PUBRING)) == NULL)
1231     {
1232       snprintf (buf, sizeof (buf), _("Enter keyID for %s: "), q->mailbox);
1233
1234       if ((key = pgp_ask_for_key (buf, q->mailbox,
1235                                   KEYFLAG_CANENCRYPT, PGP_PUBRING)) == NULL)
1236       {
1237         FREE (&keylist);
1238         rfc822_free_address (&tmp);
1239         rfc822_free_address (&addr);
1240         return NULL;
1241       }
1242     }
1243     else
1244       key = k_info;
1245
1246     keyID = pgp_keyid (key);
1247     
1248   bypass_selection:
1249     keylist_size += mutt_strlen (keyID) + 4;
1250     safe_realloc (&keylist, keylist_size);
1251     sprintf (keylist + keylist_used, "%s0x%s", keylist_used ? " " : "", /* __SPRINTF_CHECKED__ */
1252              keyID);
1253     keylist_used = mutt_strlen (keylist);
1254
1255     pgp_free_key (&key);
1256     rfc822_free_address (&addr);
1257
1258   }
1259   rfc822_free_address (&tmp);
1260   return (keylist);
1261 }
1262
1263 /* Warning: "a" is no longer freed in this routine, you need
1264  * to free it later.  This is necessary for $fcc_attach. */
1265
1266 BODY *pgp_encrypt_message (BODY *a, char *keylist, int sign)
1267 {
1268   char buf[LONG_STRING];
1269   char tempfile[_POSIX_PATH_MAX], pgperrfile[_POSIX_PATH_MAX];
1270   char pgpinfile[_POSIX_PATH_MAX];
1271   FILE *pgpin, *pgperr, *fpout, *fptmp;
1272   BODY *t;
1273   int err = 0;
1274   int empty = 0;
1275   pid_t thepid;
1276   
1277   mutt_mktemp (tempfile);
1278   if ((fpout = safe_fopen (tempfile, "w+")) == NULL)
1279   {
1280     mutt_perror (tempfile);
1281     return (NULL);
1282   }
1283
1284   mutt_mktemp (pgperrfile);
1285   if ((pgperr = safe_fopen (pgperrfile, "w+")) == NULL)
1286   {
1287     mutt_perror (pgperrfile);
1288     unlink(tempfile);
1289     safe_fclose (&fpout);
1290     return NULL;
1291   }
1292   unlink (pgperrfile);
1293
1294   mutt_mktemp(pgpinfile);
1295   if((fptmp = safe_fopen(pgpinfile, "w")) == NULL)
1296   {
1297     mutt_perror(pgpinfile);
1298     unlink(tempfile);
1299     safe_fclose (&fpout);
1300     safe_fclose (&pgperr);
1301     return NULL;
1302   }
1303   
1304   if (sign)
1305     convert_to_7bit (a);
1306   
1307   mutt_write_mime_header (a, fptmp);
1308   fputc ('\n', fptmp);
1309   mutt_write_mime_body (a, fptmp);
1310   safe_fclose (&fptmp);
1311   
1312   if ((thepid = pgp_invoke_encrypt (&pgpin, NULL, NULL, -1, 
1313                                     fileno (fpout), fileno (pgperr),
1314                                     pgpinfile, keylist, sign)) == -1)
1315   {
1316     safe_fclose (&pgperr);
1317     unlink(pgpinfile);
1318     return (NULL);
1319   }
1320
1321   if (sign)
1322   {
1323     if (!pgp_use_gpg_agent())
1324        fputs (PgpPass, pgpin);
1325     fputc ('\n', pgpin);
1326   }
1327   safe_fclose (&pgpin);
1328   
1329   if(mutt_wait_filter (thepid) && option(OPTPGPCHECKEXIT))
1330     empty=1;
1331
1332   unlink(pgpinfile);
1333   
1334   fflush (fpout);
1335   rewind (fpout);
1336   if(!empty)
1337     empty = (fgetc (fpout) == EOF);
1338   safe_fclose (&fpout);
1339
1340   fflush (pgperr);
1341   rewind (pgperr);
1342   while (fgets (buf, sizeof (buf) - 1, pgperr) != NULL)
1343   {
1344     err = 1;
1345     fputs (buf, stdout);
1346   }
1347   safe_fclose (&pgperr);
1348
1349   /* pause if there is any error output from PGP */
1350   if (err)
1351     mutt_any_key_to_continue (NULL);
1352
1353   if (empty)
1354   {
1355     /* fatal error while trying to encrypt message */
1356     if (sign)
1357       pgp_void_passphrase (); /* just in case */
1358     unlink (tempfile);
1359     return (NULL);
1360   }
1361
1362   t = mutt_new_body ();
1363   t->type = TYPEMULTIPART;
1364   t->subtype = safe_strdup ("encrypted");
1365   t->encoding = ENC7BIT;
1366   t->use_disp = 0;
1367   t->disposition = DISPINLINE;
1368
1369   mutt_generate_boundary(&t->parameter);
1370   mutt_set_parameter("protocol", "application/pgp-encrypted", &t->parameter);
1371   
1372   t->parts = mutt_new_body ();
1373   t->parts->type = TYPEAPPLICATION;
1374   t->parts->subtype = safe_strdup ("pgp-encrypted");
1375   t->parts->encoding = ENC7BIT;
1376
1377   t->parts->next = mutt_new_body ();
1378   t->parts->next->type = TYPEAPPLICATION;
1379   t->parts->next->subtype = safe_strdup ("octet-stream");
1380   t->parts->next->encoding = ENC7BIT;
1381   t->parts->next->filename = safe_strdup (tempfile);
1382   t->parts->next->use_disp = 1;
1383   t->parts->next->disposition = DISPINLINE;
1384   t->parts->next->unlink = 1; /* delete after sending the message */
1385   t->parts->next->d_filename = safe_strdup ("msg.asc"); /* non pgp/mime can save */
1386
1387   return (t);
1388 }
1389
1390 BODY *pgp_traditional_encryptsign (BODY *a, int flags, char *keylist)
1391 {
1392   BODY *b;
1393
1394   char pgpoutfile[_POSIX_PATH_MAX];
1395   char pgperrfile[_POSIX_PATH_MAX];
1396   char pgpinfile[_POSIX_PATH_MAX];
1397   
1398   char body_charset[STRING];
1399   char *from_charset;
1400   const char *send_charset;
1401   
1402   FILE *pgpout = NULL, *pgperr = NULL, *pgpin = NULL;
1403   FILE *fp;
1404
1405   int empty = 0;
1406   int err;
1407
1408   char buff[STRING];
1409
1410   pid_t thepid;
1411
1412   if (a->type != TYPETEXT)
1413     return NULL;
1414   if (ascii_strcasecmp (a->subtype, "plain"))
1415     return NULL;
1416   
1417   if ((fp = fopen (a->filename, "r")) == NULL)
1418   {
1419     mutt_perror (a->filename);
1420     return NULL;
1421   }
1422   
1423   mutt_mktemp (pgpinfile);
1424   if ((pgpin = safe_fopen (pgpinfile, "w")) == NULL)
1425   {
1426     mutt_perror (pgpinfile);
1427     safe_fclose (&fp);
1428     return NULL;
1429   }
1430
1431   /* The following code is really correct:  If noconv is set,
1432    * a's charset parameter contains the on-disk character set, and
1433    * we have to convert from that to utf-8.  If noconv is not set,
1434    * we have to convert from $charset to utf-8.
1435    */
1436   
1437   mutt_get_body_charset (body_charset, sizeof (body_charset), a);
1438   if (a->noconv)
1439     from_charset = body_charset;
1440   else 
1441     from_charset = Charset;
1442     
1443   if (!mutt_is_us_ascii (body_charset))
1444   {
1445     int c;
1446     FGETCONV *fc;
1447     
1448     if (flags & ENCRYPT)
1449       send_charset = "us-ascii";
1450     else
1451       send_charset = "utf-8";
1452
1453     /* fromcode is assumed to be correct: we set flags to 0 */
1454     fc = fgetconv_open (fp, from_charset, "utf-8", 0);
1455     while ((c = fgetconv (fc)) != EOF)
1456       fputc (c, pgpin);
1457     
1458     fgetconv_close (&fc);
1459   }
1460   else
1461   {
1462     send_charset = "us-ascii";
1463     mutt_copy_stream (fp, pgpin);
1464   }
1465   safe_fclose (&fp);
1466   safe_fclose (&pgpin);
1467
1468   mutt_mktemp (pgpoutfile);
1469   mutt_mktemp (pgperrfile);
1470   if ((pgpout = safe_fopen (pgpoutfile, "w+")) == NULL ||
1471       (pgperr = safe_fopen (pgperrfile, "w+")) == NULL)
1472   {
1473     mutt_perror (pgpout ? pgperrfile : pgpoutfile);
1474     unlink (pgpinfile);
1475     if (pgpout) 
1476     {
1477       safe_fclose (&pgpout);
1478       unlink (pgpoutfile);
1479     }
1480     return NULL;
1481   }
1482   
1483   unlink (pgperrfile);
1484
1485   if ((thepid = pgp_invoke_traditional (&pgpin, NULL, NULL, 
1486                                         -1, fileno (pgpout), fileno (pgperr),
1487                                         pgpinfile, keylist, flags)) == -1)
1488   {
1489     mutt_perror _("Can't invoke PGP");
1490     safe_fclose (&pgpout);
1491     safe_fclose (&pgperr);
1492     mutt_unlink (pgpinfile);
1493     unlink (pgpoutfile);
1494     return NULL;
1495   }
1496
1497   if (pgp_use_gpg_agent())
1498     *PgpPass = 0;
1499   if (flags & SIGN)
1500     fprintf (pgpin, "%s\n", PgpPass);
1501   safe_fclose (&pgpin);
1502
1503   if(mutt_wait_filter (thepid) && option(OPTPGPCHECKEXIT))
1504     empty=1;
1505
1506   mutt_unlink (pgpinfile);
1507
1508   fflush (pgpout);
1509   fflush (pgperr);
1510
1511   rewind (pgpout);
1512   rewind (pgperr);
1513   
1514   if(!empty)
1515     empty = (fgetc (pgpout) == EOF);
1516   safe_fclose (&pgpout);
1517   
1518   err = 0;
1519   
1520   while (fgets (buff, sizeof (buff), pgperr))
1521   {
1522     err = 1;
1523     fputs (buff, stdout);
1524   }
1525   
1526   safe_fclose (&pgperr);
1527   
1528   if (err)
1529     mutt_any_key_to_continue (NULL);
1530   
1531   if (empty)
1532   {
1533     if (flags & SIGN)
1534       pgp_void_passphrase (); /* just in case */
1535     unlink (pgpoutfile);
1536     return NULL;
1537   }
1538     
1539   b = mutt_new_body ();
1540   
1541   b->encoding = ENC7BIT;
1542
1543   b->type = TYPETEXT;
1544   b->subtype = safe_strdup ("plain");
1545   
1546   mutt_set_parameter ("x-action", flags & ENCRYPT ? "pgp-encrypted" : "pgp-signed",
1547                       &b->parameter);
1548   mutt_set_parameter ("charset", send_charset, &b->parameter);
1549   
1550   b->filename = safe_strdup (pgpoutfile);
1551   
1552 #if 0
1553   /* The following is intended to give a clue to some completely brain-dead 
1554    * "mail environments" which are typically used by large corporations.
1555    */
1556
1557   b->d_filename = safe_strdup ("msg.pgp");
1558   b->use_disp = 1;
1559
1560 #endif
1561
1562   b->disposition = DISPINLINE;
1563   b->unlink   = 1;
1564
1565   b->noconv = 1;
1566   b->use_disp = 0;
1567   
1568   if (!(flags & ENCRYPT))
1569     b->encoding = a->encoding;
1570   
1571   return b;
1572 }
1573
1574 int pgp_send_menu (HEADER *msg, int *redraw)
1575 {
1576   pgp_key_t p;
1577   char input_signas[SHORT_STRING];
1578
1579   char prompt[LONG_STRING];
1580   
1581   if (!(WithCrypto & APPLICATION_PGP))
1582     return msg->security;
1583
1584   /* If autoinline and no crypto options set, then set inline. */
1585   if (option (OPTPGPAUTOINLINE) && 
1586       !((msg->security & APPLICATION_PGP) && (msg->security & (SIGN|ENCRYPT))))
1587     msg->security |= INLINE;
1588   
1589   snprintf (prompt, sizeof (prompt), 
1590             _("PGP (e)ncrypt, (s)ign, sign (a)s, (b)oth, %s, or (c)lear? "),
1591             (msg->security & INLINE) ? _("PGP/M(i)ME") : _("(i)nline"));
1592   
1593   switch (mutt_multi_choice (prompt, _("esabifc")))
1594   {
1595   case 1: /* (e)ncrypt */
1596     msg->security |= ENCRYPT;
1597     msg->security &= ~SIGN;
1598     break;
1599
1600   case 2: /* (s)ign */
1601     msg->security |= SIGN;
1602     msg->security &= ~ENCRYPT;
1603     break;
1604
1605   case 3: /* sign (a)s */
1606     unset_option(OPTPGPCHECKTRUST);
1607
1608     if ((p = pgp_ask_for_key (_("Sign as: "), NULL, 0, PGP_SECRING)))
1609     {
1610       snprintf (input_signas, sizeof (input_signas), "0x%s",
1611                 pgp_keyid (p));
1612       mutt_str_replace (&PgpSignAs, input_signas);
1613       pgp_free_key (&p);
1614       
1615       msg->security |= SIGN;
1616         
1617       crypt_pgp_void_passphrase ();  /* probably need a different passphrase */
1618     }
1619 #if 0
1620     else
1621     {
1622       msg->security &= ~SIGN;
1623     }
1624 #endif
1625
1626     *redraw = REDRAW_FULL;
1627     break;
1628
1629   case 4: /* (b)oth */
1630     msg->security |= (ENCRYPT | SIGN);
1631     break;
1632
1633   case 5: /* (i)nline */
1634     if ((msg->security & (ENCRYPT | SIGN)))
1635       msg->security ^= INLINE;
1636     else
1637       msg->security &= ~INLINE;
1638     break;
1639
1640   case 6: /* (f)orget it */
1641   case 7: /* (c)lear     */
1642     msg->security = 0;
1643     break;
1644   }
1645
1646   if (msg->security)
1647   {
1648     if (! (msg->security & (ENCRYPT | SIGN)))
1649       msg->security = 0;
1650     else
1651       msg->security |= APPLICATION_PGP;
1652   }
1653
1654   return (msg->security);
1655 }
1656
1657
1658 #endif /* CRYPT_BACKEND_CLASSIC_PGP */