move more things in the lib-mime
[apps/madmutt.git] / lib-crypt / crypt.c
1 /*
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
9  *
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.
13  */
14
15 #if HAVE_CONFIG_H
16 # include "config.h"
17 #endif
18
19 #include <sys/wait.h>
20 #include <string.h>
21 #include <stdlib.h>
22 #include <unistd.h>
23 #include <sys/stat.h>
24 #include <errno.h>
25 #include <ctype.h>
26
27 #ifdef HAVE_LOCALE_H
28 #  include <locale.h>
29 #endif
30 #ifdef HAVE_SYS_TIME_H
31 #  include <sys/time.h>
32 #endif
33 #ifdef HAVE_SYS_RESOURCE_H
34 #  include <sys/resource.h>
35 #endif
36
37 #include <lib-lib/str.h>
38 #include <lib-lib/file.h>
39 #include <lib-lib/ascii.h>
40 #include <lib-lib/mem.h>
41 #include <lib-lib/macros.h>
42
43 #include <lib-mime/mime.h>
44
45 #include <lib-ui/curses.h>
46
47 #include "mutt.h"
48 #include "alias.h"
49 #include "handler.h"
50 #include "copy.h"
51 #include "crypt.h"
52 #include "pgp.h"
53
54 /* print the current time to avoid spoofing of the signature output */
55 void crypt_current_time (STATE * s, const char *app_name)
56 {
57   time_t t;
58   char p[STRING], tmp[STRING];
59
60   if (option (OPTCRYPTTIMESTAMP)) {
61     t = time (NULL);
62     setlocale (LC_TIME, "");
63     strftime (p, sizeof (p), _(" (current time: %c)"), localtime (&t));
64     setlocale (LC_TIME, "C");
65   }
66   else
67     *p = '\0';
68
69   snprintf (tmp, sizeof (tmp), _("[-- %s output follows%s --]\n"),
70             NONULL (app_name), p);
71   state_attach_puts (tmp, s);
72 }
73
74
75
76 void crypt_forget_passphrase (void)
77 {
78     crypt_pgp_void_passphrase ();
79     crypt_smime_void_passphrase ();
80     mutt_message _("Passphrase(s) forgotten.");
81 }
82
83
84 #if defined(HAVE_SETRLIMIT)
85
86 static void disable_coredumps (void)
87 {
88   struct rlimit rl = { 0, 0 };
89   static short done = 0;
90
91   if (!done) {
92     setrlimit (RLIMIT_CORE, &rl);
93     done = 1;
94   }
95 }
96
97 #endif /* HAVE_SETRLIMIT */
98
99
100 int crypt_valid_passphrase (int flags)
101 {
102   int ret = 0;
103
104 # if defined(HAVE_SETRLIMIT)
105   disable_coredumps ();
106 # endif
107
108   if (flags & APPLICATION_PGP)
109     ret = crypt_pgp_valid_passphrase ();
110
111   if (flags & APPLICATION_SMIME)
112     ret = crypt_smime_valid_passphrase ();
113
114   return ret;
115 }
116
117
118
119 int mutt_protect (HEADER * msg, char *keylist)
120 {
121   BODY *pbody = NULL, *tmp_pbody = NULL;
122   BODY *tmp_smime_pbody = NULL;
123   BODY *tmp_pgp_pbody = NULL;
124   int flags = msg->security;
125   int i;
126
127   if ((msg->security & SIGN) && !crypt_valid_passphrase (msg->security))
128     return (-1);
129
130   if ((msg->security & PGPINLINE) == PGPINLINE) {
131     /* they really want to send it inline... go for it */
132     if (!isendwin ())
133       mutt_endwin _("Invoking PGP...");
134
135     pbody = crypt_pgp_traditional_encryptsign (msg->content, flags, keylist);
136     if (pbody) {
137       msg->content = pbody;
138       return 0;
139     }
140
141     /* otherwise inline won't work...ask for revert */
142     if ((i =
143          query_quadoption (OPT_PGPMIMEAUTO,
144                            _
145                            ("Message can't be sent inline.  Revert to using PGP/MIME?")))
146         != M_YES) {
147       mutt_error _("Mail not sent.");
148
149       return -1;
150     }
151
152     /* go ahead with PGP/MIME */
153   }
154
155   if (!isendwin ())
156     mutt_endwin (NULL);
157
158   tmp_smime_pbody = msg->content;
159   tmp_pgp_pbody = msg->content;
160
161   if (msg->security & SIGN) {
162     if (msg->security & APPLICATION_SMIME) {
163       if (!(tmp_pbody = crypt_smime_sign_message (msg->content)))
164         return -1;
165       pbody = tmp_smime_pbody = tmp_pbody;
166     }
167
168     if ((msg->security & APPLICATION_PGP)
169         && (!(flags & ENCRYPT) || option (OPTPGPRETAINABLESIG))) {
170       if (!(tmp_pbody = crypt_pgp_sign_message (msg->content)))
171         return -1;
172
173       flags &= ~SIGN;
174       pbody = tmp_pgp_pbody = tmp_pbody;
175     }
176
177     if ((msg->security & APPLICATION_SMIME)
178         && (msg->security & APPLICATION_PGP)) {
179       /* here comes the draft ;-) */
180     }
181   }
182
183
184   if (msg->security & ENCRYPT) {
185     if ((msg->security & APPLICATION_SMIME)) {
186       if (!(tmp_pbody = crypt_smime_build_smime_entity (tmp_smime_pbody,
187                                                         keylist))) {
188         /* signed ? free it! */
189         return (-1);
190       }
191       /* free tmp_body if messages was signed AND encrypted ... */
192       if (tmp_smime_pbody != msg->content && tmp_smime_pbody != tmp_pbody) {
193         /* detatch and dont't delete msg->content,
194            which tmp_smime_pbody->parts after signing. */
195         tmp_smime_pbody->parts = tmp_smime_pbody->parts->next;
196         msg->content->next = NULL;
197         body_list_wipe(&tmp_smime_pbody);
198       }
199       pbody = tmp_pbody;
200     }
201
202     if ((msg->security & APPLICATION_PGP)) {
203       if (!(pbody = crypt_pgp_encrypt_message (tmp_pgp_pbody, keylist,
204                                                flags & SIGN))) {
205
206         /* did we perform a retainable signature? */
207         if (flags != msg->security) {
208           /* remove the outer multipart layer */
209           tmp_pgp_pbody = mutt_remove_multipart (tmp_pgp_pbody);
210           /* get rid of the signature */
211           body_list_wipe(&tmp_pgp_pbody->next);
212         }
213
214         return (-1);
215       }
216
217       /* destroy temporary signature envelope when doing retainable 
218        * signatures.
219
220        */
221       if (flags != msg->security) {
222         tmp_pgp_pbody = mutt_remove_multipart (tmp_pgp_pbody);
223         body_list_wipe(&tmp_pgp_pbody->next);
224       }
225     }
226   }
227
228   if (pbody)
229     msg->content = pbody;
230
231   return 0;
232 }
233
234
235 int crypt_query (BODY * m)
236 {
237   int t = 0;
238
239   if (!m)
240     return 0;
241
242   if (m->type == TYPEAPPLICATION) {
243     t |= mutt_is_application_pgp (m);
244
245     t |= mutt_is_application_smime (m);
246     if (t && m->goodsig)
247       t |= GOODSIGN;
248     if (t && m->badsig)
249       t |= BADSIGN;
250   }
251   else if (m->type == TYPETEXT) {
252     t |= mutt_is_application_pgp (m);
253     if (t && m->goodsig)
254       t |= GOODSIGN;
255   }
256
257   if (m->type == TYPEMULTIPART) {
258     t |= mutt_is_multipart_encrypted (m);
259     t |= mutt_is_multipart_signed (m);
260
261     if (t && m->goodsig)
262       t |= GOODSIGN;
263   }
264
265   if (m->type == TYPEMULTIPART || m->type == TYPEMESSAGE) {
266     BODY *p;
267     int u, v, w;
268
269     u = m->parts ? 0xffffffff : 0;      /* Bits set in all parts */
270     w = 0;                      /* Bits set in any part  */
271
272     for (p = m->parts; p; p = p->next) {
273       v = crypt_query (p);
274       u &= v;
275       w |= v;
276     }
277     t |= u | (w & ~GOODSIGN);
278
279     if ((w & GOODSIGN) && !(u & GOODSIGN))
280       t |= PARTSIGN;
281   }
282
283   return t;
284 }
285
286
287 int crypt_write_signed (BODY * a, STATE * s, const char *tempfile)
288 {
289   FILE *fp;
290   int c;
291   short hadcr;
292   size_t bytes;
293
294   if (!(fp = safe_fopen (tempfile, "w"))) {
295     mutt_perror (tempfile);
296     return -1;
297   }
298
299   fseeko (s->fpin, a->hdr_offset, 0);
300   bytes = a->length + a->offset - a->hdr_offset;
301   hadcr = 0;
302   while (bytes > 0) {
303     if ((c = fgetc (s->fpin)) == EOF)
304       break;
305
306     bytes--;
307
308     if (c == '\r')
309       hadcr = 1;
310     else {
311       if (c == '\n' && !hadcr)
312         fputc ('\r', fp);
313
314       hadcr = 0;
315     }
316
317     fputc (c, fp);
318
319   }
320   fclose (fp);
321
322   return 0;
323 }
324
325
326
327 void convert_to_7bit (BODY * a)
328 {
329   while (a) {
330     if (a->type == TYPEMULTIPART) {
331       if (a->encoding != ENC7BIT) {
332         a->encoding = ENC7BIT;
333         convert_to_7bit (a->parts);
334       }
335       else if (option (OPTPGPSTRICTENC))
336         convert_to_7bit (a->parts);
337     }
338     else if (a->type == TYPEMESSAGE &&
339              m_strcasecmp(a->subtype, "delivery-status")) {
340       if (a->encoding != ENC7BIT)
341         mutt_message_to_7bit (a, NULL);
342     }
343     else if (a->encoding == ENC8BIT)
344       a->encoding = ENCQUOTEDPRINTABLE;
345     else if (a->encoding == ENCBINARY)
346       a->encoding = ENCBASE64;
347     else if (a->content && a->encoding != ENCBASE64 &&
348              (a->content->from || (a->content->space &&
349                                    option (OPTPGPSTRICTENC))))
350       a->encoding = ENCQUOTEDPRINTABLE;
351     a = a->next;
352   }
353 }
354
355
356 void crypt_extract_keys_from_messages (HEADER * h)
357 {
358   int i;
359   char tempfname[_POSIX_PATH_MAX], *mbox;
360   address_t *tmp = NULL;
361   FILE *fpout;
362
363   mutt_mktemp (tempfname);
364   if (!(fpout = safe_fopen (tempfname, "w"))) {
365     mutt_perror (tempfname);
366     return;
367   }
368
369   set_option (OPTDONTHANDLEPGPKEYS);
370
371   if (!h) {
372     for (i = 0; i < Context->vcount; i++) {
373       if (Context->hdrs[Context->v2r[i]]->tagged) {
374         mutt_parse_mime_message (Context, Context->hdrs[Context->v2r[i]]);
375         if (Context->hdrs[Context->v2r[i]]->security & ENCRYPT &&
376             !crypt_valid_passphrase (Context->hdrs[Context->v2r[i]]->
377                                      security)) {
378           fclose (fpout);
379           break;
380         }
381
382         if (Context->hdrs[Context->v2r[i]]->security & APPLICATION_PGP) {
383           mutt_copy_message (fpout, Context, Context->hdrs[Context->v2r[i]],
384                              M_CM_DECODE | M_CM_CHARCONV, 0);
385           fflush (fpout);
386
387           mutt_endwin (_("Trying to extract PGP keys...\n"));
388           crypt_pgp_invoke_import (tempfname);
389         }
390
391         if (Context->hdrs[Context->v2r[i]]->security & APPLICATION_SMIME) {
392           if (Context->hdrs[Context->v2r[i]]->security & ENCRYPT)
393             mutt_copy_message (fpout, Context, Context->hdrs[Context->v2r[i]],
394                                M_CM_NOHEADER | M_CM_DECODE_CRYPT
395                                | M_CM_DECODE_SMIME, 0);
396           else
397             mutt_copy_message (fpout, Context,
398                                Context->hdrs[Context->v2r[i]], 0, 0);
399           fflush (fpout);
400
401           if (Context->hdrs[Context->v2r[i]]->env->from)
402             tmp = mutt_expand_aliases (h->env->from);
403           else if (Context->hdrs[Context->v2r[i]]->env->sender)
404             tmp = mutt_expand_aliases (Context->hdrs[Context->v2r[i]]
405                                        ->env->sender);
406           mbox = tmp ? tmp->mailbox : NULL;
407           if (mbox) {
408             mutt_endwin (_("Trying to extract S/MIME certificates...\n"));
409             crypt_smime_invoke_import (tempfname, mbox);
410             tmp = NULL;
411           }
412         }
413
414         rewind (fpout);
415       }
416     }
417   }
418   else {
419     mutt_parse_mime_message (Context, h);
420     if (!(h->security & ENCRYPT && !crypt_valid_passphrase (h->security))) {
421       if (h->security & APPLICATION_PGP) {
422         mutt_copy_message (fpout, Context, h, M_CM_DECODE | M_CM_CHARCONV, 0);
423         fflush (fpout);
424         mutt_endwin (_("Trying to extract PGP keys...\n"));
425         crypt_pgp_invoke_import (tempfname);
426       }
427
428       if (h->security & APPLICATION_SMIME) {
429         if (h->security & ENCRYPT)
430           mutt_copy_message (fpout, Context, h, M_CM_NOHEADER
431                              | M_CM_DECODE_CRYPT | M_CM_DECODE_SMIME, 0);
432         else
433           mutt_copy_message (fpout, Context, h, 0, 0);
434
435         fflush (fpout);
436         if (h->env->from)
437           tmp = mutt_expand_aliases (h->env->from);
438         else if (h->env->sender)
439           tmp = mutt_expand_aliases (h->env->sender);
440         mbox = tmp ? tmp->mailbox : NULL;
441         if (mbox) {             /* else ? */
442           mutt_message (_("Trying to extract S/MIME certificates...\n"));
443           crypt_smime_invoke_import (tempfname, mbox);
444         }
445       }
446     }
447   }
448
449   fclose (fpout);
450   if (isendwin ())
451     mutt_any_key_to_continue (NULL);
452
453   mutt_unlink (tempfname);
454
455   unset_option (OPTDONTHANDLEPGPKEYS);
456 }
457
458
459
460 int crypt_get_keys (HEADER * msg, char **keylist)
461 {
462   /* Do a quick check to make sure that we can find all of the encryption
463    * keys if the user has requested this service.
464    */
465
466   set_option (OPTPGPCHECKTRUST);
467
468   *keylist = NULL;
469
470   if (msg->security & ENCRYPT) {
471     if (msg->security & APPLICATION_PGP) {
472       if ((*keylist = crypt_pgp_findkeys (msg->env->to, msg->env->cc,
473                                           msg->env->bcc)) == NULL)
474         return (-1);
475       unset_option (OPTPGPCHECKTRUST);
476     }
477     if (msg->security & APPLICATION_SMIME) {
478       if ((*keylist = crypt_smime_findkeys (msg->env->to, msg->env->cc,
479                                             msg->env->bcc)) == NULL)
480         return (-1);
481     }
482   }
483
484   return (0);
485 }
486
487
488
489 static void crypt_fetch_signatures (BODY ***signatures, BODY * a, int *n)
490 {
491   for (; a; a = a->next) {
492     if (a->type == TYPEMULTIPART)
493       crypt_fetch_signatures (signatures, a->parts, n);
494     else {
495       if ((*n % 5) == 0)
496         p_realloc(signatures, *n + 6);
497
498       (*signatures)[(*n)++] = a;
499     }
500   }
501 }
502
503
504 /*
505  * This routine verifies a  "multipart/signed"  body.
506  */
507
508 int mutt_signed_handler (BODY * a, STATE * s)
509 {
510   char tempfile[_POSIX_PATH_MAX];
511   char *protocol;
512   int protocol_major = TYPEOTHER;
513   char *protocol_minor = NULL;
514
515   BODY *b = a;
516   BODY **signatures = NULL;
517   int sigcnt = 0;
518   int i;
519   short goodsig = 1;
520   int rc = 0;
521
522   protocol = parameter_getval(a->parameter, "protocol");
523   a = a->parts;
524
525   /* extract the protocol information */
526
527   if (protocol) {
528     char major[STRING];
529     char *t;
530
531     if ((protocol_minor = strchr (protocol, '/')))
532       protocol_minor++;
533
534     m_strcpy(major, sizeof(major), protocol);
535     if ((t = strchr (major, '/')))
536       *t = '\0';
537
538     protocol_major = mutt_check_mime_type (major);
539   }
540
541   /* consistency check */
542
543   if (!(a && a->next && a->next->type == protocol_major &&
544         !m_strcasecmp(a->next->subtype, protocol_minor))) {
545     state_attach_puts (_("[-- Error: "
546                          "Inconsistent multipart/signed structure! --]\n\n"),
547                        s);
548     return mutt_body_handler (a, s);
549   }
550
551
552   if (protocol_major == TYPEAPPLICATION
553       && !m_strcasecmp(protocol_minor, "pgp-signature"));
554   else if (protocol_major == TYPEAPPLICATION
555            && !(m_strcasecmp(protocol_minor, "x-pkcs7-signature")
556                 && m_strcasecmp(protocol_minor, "pkcs7-signature")));
557   else if (protocol_major == TYPEMULTIPART
558            && !m_strcasecmp(protocol_minor, "mixed"));
559   else {
560     state_printf (s, _("[-- Error: "
561                        "Unknown multipart/signed protocol %s! --]\n\n"),
562                   protocol);
563     return mutt_body_handler (a, s);
564   }
565
566   if (s->flags & M_DISPLAY) {
567
568     crypt_fetch_signatures (&signatures, a->next, &sigcnt);
569
570     if (sigcnt) {
571       mutt_mktemp (tempfile);
572       if (crypt_write_signed (a, s, tempfile) == 0) {
573         for (i = 0; i < sigcnt; i++) {
574           if (signatures[i]->type == TYPEAPPLICATION
575               && !m_strcasecmp(signatures[i]->subtype, "pgp-signature")) {
576             if (crypt_pgp_verify_one (signatures[i], s, tempfile) != 0)
577               goodsig = 0;
578
579             continue;
580           }
581
582           if (signatures[i]->type == TYPEAPPLICATION
583           && (!m_strcasecmp(signatures[i]->subtype, "x-pkcs7-signature")
584                || !m_strcasecmp(signatures[i]->subtype, "pkcs7-signature")))
585           {
586             if (crypt_smime_verify_one (signatures[i], s, tempfile) != 0)
587               goodsig = 0;
588
589             continue;
590           }
591
592           state_printf (s, _("[-- Warning: "
593                              "We can't verify %s/%s signatures. --]\n\n"),
594                         TYPE (signatures[i]), signatures[i]->subtype);
595         }
596       }
597
598       mutt_unlink (tempfile);
599
600       b->goodsig = goodsig;
601       b->badsig = !goodsig;
602
603       /* Now display the signed body */
604       state_attach_puts (_("[-- The following data is signed --]\n\n"), s);
605
606
607       p_delete(&signatures);
608     }
609     else
610       state_attach_puts (_("[-- Warning: Can't find any signatures. --]\n\n"),
611                          s);
612   }
613
614   rc = mutt_body_handler (a, s);
615
616   if (s->flags & M_DISPLAY && sigcnt)
617     state_attach_puts (_("\n[-- End of signed data --]\n"), s);
618
619   return (rc);
620 }