* src/utils.c
[claws.git] / src / rfc2015.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2001 Werner Koch (dd9jn)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #if USE_GPGME
25
26 #include "defs.h"
27
28 #include <glib.h>
29 #include <stdio.h>
30 #include <string.h>
31 #include <locale.h>
32 #include <ctype.h>
33
34 #include <gpgme.h>
35
36 #include "intl.h"
37 #include "procmime.h"
38 #include "procheader.h"
39 #include "base64.h"
40 #include "uuencode.h"
41 #include "unmime.h"
42 #include "codeconv.h"
43 #include "utils.h"
44 #include "prefs_common.h"
45 #include "passphrase.h"
46 #include "select-keys.h"
47 #include "sigstatus.h"
48 #include "rfc2015.h"
49
50 #define DIM(v)     (sizeof(v)/sizeof((v)[0]))
51
52 static char *content_names[] = {
53     "Content-Type",
54     "Content-Disposition",
55     "Content-Transfer-Encoding",
56     NULL
57 };
58
59 static char *mime_version_name[] = {
60     "Mime-Version",
61     NULL
62 };
63
64 static char *create_boundary (void);
65
66 #if 0
67 static void dump_mimeinfo (const char *text, MimeInfo *x)
68 {
69     debug_print ("MimeInfo[%s] %p  level=%d\n",
70                text, x, x? x->level:0 );
71     if (!x)
72         return;
73
74     debug_print ("      enc=`%s' enc_type=%d mime_type=%d\n",
75                x->encoding, x->encoding_type, x->mime_type );
76     debug_print ("      cont_type=`%s' cs=`%s' name=`%s' bnd=`%s'\n",
77                x->content_type, x->charset, x->name, x->boundary );
78     debug_print ("      cont_disp=`%s' fname=`%s' fpos=%ld size=%u, lvl=%d\n",
79                x->content_disposition, x->filename, x->fpos, x->size,
80                x->level );
81     dump_mimeinfo (".main", x->main );
82     dump_mimeinfo (".sub", x->sub );
83     dump_mimeinfo (".next", x->next );
84     debug_print ("MimeInfo[.parent] %p\n", x ); 
85     dump_mimeinfo (".children", x->children );
86     dump_mimeinfo (".plaintext", x->plaintext );
87 }
88
89 static void dump_part ( MimeInfo *mimeinfo, FILE *fp )
90 {
91     unsigned int size = mimeinfo->size;
92     int c;
93
94     if (fseek (fp, mimeinfo->fpos, SEEK_SET)) {
95         debug_print ("dump_part: fseek error\n");
96         return;
97     }
98
99     debug_print ("--- begin dump_part ----\n");
100     while (size-- && (c = getc (fp)) != EOF) 
101         putc (c, stderr);
102     if (ferror (fp))
103         debug_print ("dump_part: read error\n");
104     debug_print ("--- end dump_part ----\n");
105 }
106 #endif
107
108 void
109 rfc2015_disable_all (void)
110 {
111     /* FIXME: set a flag, so that we don't bother the user with failed
112      * gpgme messages */
113 }
114
115
116 void
117 rfc2015_secure_remove (const char *fname)
118 {
119     if (!fname)
120         return;
121     /* fixme: overwrite the file first */
122     remove (fname);
123 }
124
125
126 static const gchar *
127 sig_status_to_string (GpgmeSigStat status)
128 {
129     const gchar *result;
130
131     switch (status) {
132       case GPGME_SIG_STAT_NONE:
133         result = _("Oops: Signature not verified");
134         break;
135       case GPGME_SIG_STAT_NOSIG:
136         result = _("No signature found");
137         break;
138       case GPGME_SIG_STAT_GOOD:
139         result = _("Good signature");
140         break;
141       case GPGME_SIG_STAT_BAD:
142         result = _("BAD signature");
143         break;
144       case GPGME_SIG_STAT_NOKEY:
145         result = _("No public key to verify the signature");
146         break;
147       case GPGME_SIG_STAT_ERROR:
148         result = _("Error verifying the signature");
149         break;
150       case GPGME_SIG_STAT_DIFF:
151         result = _("Different results for signatures");
152         break;
153       default:
154         result = _("Error: Unknown status");
155         break;
156     }
157
158     return result;
159 }
160
161 static const gchar *
162 sig_status_with_name (GpgmeSigStat status)
163 {
164     const gchar *result;
165
166     switch (status) {
167       case GPGME_SIG_STAT_NONE:
168         result = _("Oops: Signature not verified");
169         break;
170       case GPGME_SIG_STAT_NOSIG:
171         result = _("No signature found");
172         break;
173       case GPGME_SIG_STAT_GOOD:
174         result = _("Good signature from \"%s\"");
175         break;
176       case GPGME_SIG_STAT_BAD:
177         result = _("BAD signature from \"%s\"");
178         break;
179       case GPGME_SIG_STAT_NOKEY:
180         result = _("No public key to verify the signature");
181         break;
182       case GPGME_SIG_STAT_ERROR:
183         result = _("Error verifying the signature");
184         break;
185       case GPGME_SIG_STAT_DIFF:
186         result = _("Different results for signatures");
187         break;
188       default:
189         result = _("Error: Unknown status");
190         break;
191     }
192
193     return result;
194 }
195
196 static void
197 sig_status_for_key(GString *str, GpgmeCtx ctx, GpgmeSigStat status, 
198                    GpgmeKey key, const gchar *fpr)
199 {
200         gint idx = 0;
201         const char *uid;
202
203         uid = gpgme_key_get_string_attr (key, GPGME_ATTR_USERID, NULL, idx);
204         if (uid == NULL) {
205                 g_string_sprintfa (str, "%s\n",
206                                    sig_status_to_string (status));
207                 if ((fpr != NULL) && (*fpr != '\0'))
208                         g_string_sprintfa (str, "Key fingerprint: %s\n", fpr);
209                 g_string_append (str, _("Cannot find user ID for this key."));
210                 return;
211         }
212         g_string_sprintfa (str, sig_status_with_name (status), uid);
213         g_string_append (str, "\n");
214
215         while (1) {
216                 uid = gpgme_key_get_string_attr (key, GPGME_ATTR_USERID,
217                                                  NULL, ++idx);
218                 if (uid == NULL)
219                         break;
220                 g_string_sprintfa (str, _("                aka \"%s\"\n"),
221                                    uid);
222         }
223 }
224
225 static gchar *
226 sig_status_full (GpgmeCtx ctx)
227 {
228         GString *str;
229         gint sig_idx = 0;
230         GpgmeError err;
231         GpgmeSigStat status;
232         GpgmeKey key;
233         const char *fpr;
234         time_t created;
235         struct tm *ctime_val;
236         char ctime_str[80];
237         gchar *retval;
238
239         str = g_string_new ("");
240
241         fpr = gpgme_get_sig_status (ctx, sig_idx, &status, &created);
242         while (fpr != NULL) {
243                 if (created != 0) {
244                         ctime_val = localtime (&created);
245                         strftime (ctime_str, sizeof (ctime_str), "%c", 
246                                   ctime_val);
247                         g_string_sprintfa (str,
248                                            _("Signature made at %s\n"),
249                                            ctime_str);
250                 }
251                 err = gpgme_get_sig_key (ctx, sig_idx, &key);
252                 if (err != 0) {
253                         g_string_sprintfa (str, "%s\n",
254                                            sig_status_to_string (status));
255                         if ((fpr != NULL) && (*fpr != '\0'))
256                                 g_string_sprintfa (str, 
257                                                    _("Key fingerprint: %s\n"),
258                                                    fpr);
259                 } else {
260                         sig_status_for_key (str, ctx, status, key, fpr);
261                         gpgme_key_unref (key);
262                 }
263                 g_string_append (str, "\n\n");
264
265                 fpr = gpgme_get_sig_status (ctx, ++sig_idx, &status, &created);
266         }
267
268         retval = str->str;
269         g_string_free (str, FALSE);
270         return retval;
271 }
272
273 static void check_signature (MimeInfo *mimeinfo, MimeInfo *partinfo, FILE *fp)
274 {
275     GpgmeCtx ctx = NULL;
276     GpgmeError err;
277     GpgmeData sig = NULL, text = NULL;
278     GpgmeSigStat status = GPGME_SIG_STAT_NONE;
279     GpgmegtkSigStatus statuswindow = NULL;
280     const char *result = NULL;
281
282     if (prefs_common.gpg_signature_popup)
283         statuswindow = gpgmegtk_sig_status_create ();
284
285     err = gpgme_new (&ctx);
286     if (err) {
287         debug_print ("gpgme_new failed: %s\n", gpgme_strerror (err));
288         goto leave;
289     }
290
291     /* don't include the last character (LF). It does not belong to the
292      * signed text */
293     err = gpgme_data_new_from_filepart (&text, NULL, fp,
294                                         mimeinfo->children->fpos,
295                                         mimeinfo->children->size ?
296                                         (mimeinfo->children->size - 1) : 0 );
297     if (!err)
298         err = gpgme_data_new_from_filepart (&sig, NULL, fp,
299                                             partinfo->fpos, partinfo->size);
300     if (err) {
301         debug_print ("gpgme_data_new_from_filepart failed: %s\n",
302                    gpgme_strerror (err));
303         goto leave;
304     }
305
306     err = gpgme_op_verify (ctx, sig, text, &status);
307     if (err) 
308         debug_print ("gpgme_op_verify failed: %s\n", gpgme_strerror (err));
309
310     /* FIXME: check what the heck this sig_status_full stuff is.
311      * it should better go into sigstatus.c */
312     g_free (partinfo->sigstatus_full);
313     partinfo->sigstatus_full = sig_status_full (ctx);
314
315 leave:
316     result = gpgmegtk_sig_status_to_string(status);
317     debug_print("verification status: %s\n", result);
318     if (prefs_common.gpg_signature_popup)
319         gpgmegtk_sig_status_update (statuswindow,ctx);
320
321     g_assert (!err); /* FIXME: Hey: this may indeed happen */
322     g_free (partinfo->sigstatus);
323     partinfo->sigstatus = g_strdup (result);
324
325     gpgme_data_release (sig);
326     gpgme_data_release (text);
327     gpgme_release (ctx);
328     if (prefs_common.gpg_signature_popup)
329         gpgmegtk_sig_status_destroy (statuswindow);
330 }
331
332 /*
333  * Copy a gpgme data object to a temporary file and
334  * return this filename 
335  */
336 #if 0
337 static char *
338 copy_gpgmedata_to_temp (GpgmeData data, guint *length)
339 {
340     static int id;
341     char *tmp;
342     FILE *fp;
343     char buf[100];
344     size_t nread;
345     GpgmeError err;
346     
347     tmp = g_strdup_printf("%s%cgpgtmp.%08x",
348                           get_mime_tmp_dir(), G_DIR_SEPARATOR, ++id );
349
350     if ((fp = fopen(tmp, "wb")) == NULL) {
351         FILE_OP_ERROR(tmp, "fopen");
352         g_free(tmp);
353         return NULL;
354     }
355
356     err = gpgme_data_rewind ( data );
357     if (err)
358         debug_print ("gpgme_data_rewind failed: %s\n", gpgme_strerror (err));
359
360     while (!(err = gpgme_data_read (data, buf, 100, &nread))) {
361         fwrite ( buf, nread, 1, fp );
362     }
363
364     if (err != GPGME_EOF)
365         debug_print ("gpgme_data_read failed: %s\n", gpgme_strerror (err));
366
367     fclose (fp);
368     *length = nread;
369
370     return tmp;
371 }
372 #endif
373
374 static GpgmeData
375 pgp_decrypt (MimeInfo *partinfo, FILE *fp)
376 {
377     GpgmeCtx ctx = NULL;
378     GpgmeError err;
379     GpgmeData cipher = NULL, plain = NULL;
380     struct passphrase_cb_info_s info;
381
382     memset (&info, 0, sizeof info);
383
384     err = gpgme_new (&ctx);
385     if (err) {
386         debug_print ("gpgme_new failed: %s\n", gpgme_strerror (err));
387         goto leave;
388     }
389
390     err = gpgme_data_new_from_filepart (&cipher, NULL, fp,
391                                         partinfo->fpos, partinfo->size);
392     if (err) {
393         debug_print ("gpgme_data_new_from_filepart failed: %s\n",
394                      gpgme_strerror (err));
395         goto leave;
396     }
397
398     err = gpgme_data_new (&plain);
399     if (err) {
400         debug_print ("gpgme_new failed: %s\n", gpgme_strerror (err));
401         goto leave;
402     }
403
404     if (!getenv("GPG_AGENT_INFO")) {
405         info.c = ctx;
406         gpgme_set_passphrase_cb (ctx, gpgmegtk_passphrase_cb, &info);
407     } 
408
409     err = gpgme_op_decrypt (ctx, cipher, plain);
410
411 leave:
412     gpgme_data_release (cipher);
413     if (err) {
414         gpgmegtk_free_passphrase();
415         debug_print ("decryption failed: %s\n", gpgme_strerror (err));
416         gpgme_data_release (plain);
417         plain = NULL;
418     }
419     else
420         debug_print ("** decryption succeeded\n");
421
422     gpgme_release (ctx);
423     return plain;
424 }
425
426 MimeInfo * rfc2015_find_signature (MimeInfo *mimeinfo)
427 {
428     MimeInfo *partinfo;
429     int n = 0;
430
431     if (!mimeinfo)
432         return NULL;
433     if (g_strcasecmp (mimeinfo->content_type, "multipart/signed"))
434         return NULL;
435
436     debug_print ("** multipart/signed encountered\n");
437
438     /* check that we have at least 2 parts of the correct type */
439     for (partinfo = mimeinfo->children;
440          partinfo != NULL; partinfo = partinfo->next) {
441         if (++n > 1  && !g_strcasecmp (partinfo->content_type,
442                                        "application/pgp-signature"))
443             break;
444     }
445
446     return partinfo;
447 }
448
449 gboolean rfc2015_has_signature (MimeInfo *mimeinfo)
450 {
451     return rfc2015_find_signature (mimeinfo) != NULL;
452 }
453
454 void rfc2015_check_signature (MimeInfo *mimeinfo, FILE *fp)
455 {
456     MimeInfo *partinfo;
457
458     partinfo = rfc2015_find_signature (mimeinfo);
459     if (!partinfo)
460         return;
461
462 #if 0
463     g_message ("** yep, it is a pgp signature");
464     dump_mimeinfo ("gpg-signature", partinfo );
465     dump_part (partinfo, fp );
466     dump_mimeinfo ("signed text", mimeinfo->children );
467     dump_part (mimeinfo->children, fp);
468 #endif
469
470     check_signature (mimeinfo, partinfo, fp);
471 }
472
473 int rfc2015_is_encrypted (MimeInfo *mimeinfo)
474 {
475     if (!mimeinfo)
476         return 0;
477     if (g_strcasecmp (mimeinfo->content_type, "multipart/encrypted"))
478         return 0;
479     /* fixme: we should check the protocol parameter */
480     return 1;
481 }
482
483 gboolean rfc2015_msg_is_encrypted (gchar *file)
484 {
485         FILE *fp;
486         MimeInfo *mimeinfo;
487         int ret;
488
489         if ((fp = fopen(file, "rb")) == NULL)
490                 return FALSE;
491
492         mimeinfo = procmime_scan_mime_header(fp);
493         if(!mimeinfo) {
494                 fclose(fp);
495                 return FALSE;
496         }
497
498         ret = rfc2015_is_encrypted(mimeinfo);
499         procmime_mimeinfo_free_all(mimeinfo);
500         return ret != 0 ? TRUE : FALSE;
501 }
502
503 static int
504 name_cmp(const char *a, const char *b)
505 {
506     for( ; *a && *b; a++, b++) {
507         if(*a != *b
508            && toupper(*(unsigned char *)a) != toupper(*(unsigned char *)b))
509             return 1;
510     }
511
512     return *a != *b;
513 }
514
515 static int
516 headerp(char *p, char **names)
517 {
518     int i, c;
519     char *p2;
520
521     p2 = strchr(p, ':');
522     if(!p2 || p == p2) {
523         return 0;
524     }
525     if(p2[-1] == ' ' || p2[-1] == '\t') {
526         return 0;
527     }
528
529     if(!names[0])
530         return 1;  
531
532     c = *p2;
533     *p2 = 0;
534     for(i = 0 ; names[i] != NULL; i++) {
535         if(!name_cmp (names[i], p))
536             break;
537     }
538     *p2 = c;
539
540     return names[i] != NULL;
541 }
542
543
544 #define DECRYPTION_ABORT() \
545 { \
546     procmime_mimeinfo_free_all(tmpinfo); \
547     msginfo->decryption_failed = 1; \
548     return; \
549 }
550
551 void rfc2015_decrypt_message (MsgInfo *msginfo, MimeInfo *mimeinfo, FILE *fp)
552 {
553     static int id;
554     MimeInfo *tmpinfo, *partinfo;
555     int ver_ok = 0;
556     char *fname;
557     GpgmeData plain;
558     FILE *dstfp;
559     size_t nread;
560     char buf[BUFFSIZE];
561     GpgmeError err;
562
563     g_return_if_fail (msginfo != NULL);
564     g_return_if_fail (mimeinfo != NULL);
565     g_return_if_fail (fp != NULL);
566     g_return_if_fail (mimeinfo->mime_type == MIME_MULTIPART);
567
568     debug_print ("** decrypting multipart/encrypted message\n");
569
570     /* skip headers */
571     if (fseek(fp, mimeinfo->fpos, SEEK_SET) < 0)
572         perror("fseek");
573     tmpinfo = procmime_scan_mime_header(fp);
574     if (!tmpinfo || tmpinfo->mime_type != MIME_MULTIPART) {
575         DECRYPTION_ABORT();
576     }
577
578     procmime_scan_multipart_message(tmpinfo, fp);
579
580     /* check that we have the 2 parts */
581     partinfo = tmpinfo->children;
582     if (!partinfo || !partinfo->next) {
583         DECRYPTION_ABORT();
584     }
585     if (!g_strcasecmp (partinfo->content_type, "application/pgp-encrypted")) {
586         /* Fixme: check that the version is 1 */
587         ver_ok = 1;
588     }
589     partinfo = partinfo->next;
590     if (ver_ok &&
591         !g_strcasecmp (partinfo->content_type, "application/octet-stream")) {
592         if (partinfo->next)
593             g_warning ("oops: pgp_encrypted with more than 2 parts");
594     }
595     else {
596         DECRYPTION_ABORT();
597     }
598
599     debug_print ("** yep, it is pgp encrypted\n");
600
601     plain = pgp_decrypt (partinfo, fp);
602     if (!plain) {
603         DECRYPTION_ABORT();
604     }
605
606     fname = g_strdup_printf("%s%cplaintext.%08x",
607                             get_mime_tmp_dir(), G_DIR_SEPARATOR, ++id);
608
609     if ((dstfp = fopen(fname, "wb")) == NULL) {
610         FILE_OP_ERROR(fname, "fopen");
611         g_free(fname);
612         DECRYPTION_ABORT();
613     }
614
615     /* write the orginal header to the new file */
616     if (fseek(fp, tmpinfo->fpos, SEEK_SET) < 0)
617         perror("fseek");
618
619     while (fgets(buf, sizeof(buf), fp)) {
620         if (headerp (buf, content_names))
621             continue;
622         if (buf[0] == '\r' || buf[0] == '\n')
623             break;
624         fputs (buf, dstfp);
625     }
626
627     err = gpgme_data_rewind (plain);
628     if (err)
629         debug_print ("gpgme_data_rewind failed: %s\n", gpgme_strerror (err));
630
631     while (!(err = gpgme_data_read (plain, buf, sizeof(buf), &nread))) {
632         fwrite (buf, nread, 1, dstfp);
633     }
634
635     if (err != GPGME_EOF) {
636         debug_print ("gpgme_data_read failed: %s\n", gpgme_strerror (err));
637     }
638
639     fclose (dstfp);
640     procmime_mimeinfo_free_all(tmpinfo);
641
642     msginfo->plaintext_file = fname;
643     msginfo->decryption_failed = 0;
644 }
645
646 #undef DECRYPTION_ABORT
647
648
649 /*
650  * plain contains an entire mime object.
651  * Encrypt it and return an GpgmeData object with the encrypted version of
652  * the file or NULL in case of error.
653  */
654 static GpgmeData
655 pgp_encrypt ( GpgmeData plain, GpgmeRecipients rset )
656 {
657     GpgmeCtx ctx = NULL;
658     GpgmeError err;
659     GpgmeData cipher = NULL;
660
661     err = gpgme_new (&ctx);
662     if (!err)
663         err = gpgme_data_new (&cipher);
664     if (!err) {
665         gpgme_set_armor (ctx, 1);
666         err = gpgme_op_encrypt (ctx, rset, plain, cipher);
667     }
668
669     if (err) {
670         debug_print ("encryption failed: %s\n", gpgme_strerror (err));
671         gpgme_data_release (cipher);
672         cipher = NULL;
673     }
674     else {
675         debug_print ("** encryption succeeded\n");
676     }
677
678     gpgme_release (ctx);
679     return cipher;
680 }
681
682 /*
683  * Create and return a list of keys matching a key id
684  */
685
686 GSList *rfc2015_create_signers_list (const char *keyid)
687 {
688         GSList *key_list = NULL;
689         GpgmeCtx list_ctx = NULL;
690         GSList *p;
691         GpgmeError err;
692         GpgmeKey key;
693
694         err = gpgme_new (&list_ctx);
695         if (err)
696                 goto leave;
697         err = gpgme_op_keylist_start (list_ctx, keyid, 1);
698         if (err)
699                 goto leave;
700         while ( !(err = gpgme_op_keylist_next (list_ctx, &key)) ) {
701                 key_list = g_slist_append (key_list, key);
702         }
703         if (err != GPGME_EOF)
704                 goto leave;
705         err = 0;
706         if (key_list == NULL) {
707                 debug_print ("no keys found for keyid \"%s\"\n", keyid);
708         }
709
710 leave:
711         if (err) {
712                 debug_print ("rfc2015_create_signers_list failed: %s\n", gpgme_strerror (err));
713                 for (p = key_list; p != NULL; p = p->next)
714                         gpgme_key_unref ((GpgmeKey) p->data);
715                 g_slist_free (key_list);
716         }
717         if (list_ctx)
718                 gpgme_release (list_ctx);
719         return err ? NULL : key_list;
720 }
721
722 /*
723  * Encrypt the file by extracting all recipients and finding the
724  * encryption keys for all of them.  The file content is then replaced
725  * by the encrypted one.  */
726 int
727 rfc2015_encrypt (const char *file, GSList *recp_list, gboolean ascii_armored)
728 {
729     FILE *fp = NULL;
730     char buf[BUFFSIZE];
731     int i, clineidx, saved_last;
732     char *clines[3] = {NULL};
733     GpgmeError err;
734     GpgmeData header = NULL;
735     GpgmeData plain = NULL;
736     GpgmeData cipher = NULL;
737     GpgmeRecipients rset = NULL;
738     size_t nread;
739     int mime_version_seen = 0;
740     char *boundary = create_boundary ();
741
742     /* Create the list of recipients */
743     rset = gpgmegtk_recipient_selection (recp_list);
744     if (!rset) {
745         debug_print ("error creating recipient list\n" );
746         goto failure;
747     }
748
749     /* Open the source file */
750     if ((fp = fopen(file, "rb")) == NULL) {
751         FILE_OP_ERROR(file, "fopen");
752         goto failure;
753     }
754
755     err = gpgme_data_new (&header);
756     if (!err)
757         err = gpgme_data_new (&plain);
758     if (err) {
759         debug_print ("gpgme_data_new failed: %s\n", gpgme_strerror (err));
760         goto failure;
761     }
762
763     /* get the content header lines from the source */
764     clineidx=0;
765     saved_last = 0;
766     while (!err && fgets(buf, sizeof(buf), fp)) {
767         /* fixme: check for overlong lines */
768         if (headerp (buf, content_names)) {
769             if (clineidx >= DIM (clines)) {
770                 debug_print ("rfc2015_encrypt: too many content lines\n");
771                 goto failure;
772             }
773             clines[clineidx++] = g_strdup (buf);
774             saved_last = 1;
775             continue;
776         }
777         if (saved_last) {
778             saved_last = 0;
779             if (*buf == ' ' || *buf == '\t') {
780                 char *last = clines[clineidx-1];
781                 clines[clineidx-1] = g_strconcat (last, buf, NULL);
782                 g_free (last);
783                 continue;
784             }
785         }
786
787         if (headerp (buf, mime_version_name)) 
788             mime_version_seen = 1;
789
790         if (buf[0] == '\r' || buf[0] == '\n')
791             break;
792         err = gpgme_data_write (header, buf, strlen (buf));
793     }
794     if (ferror (fp)) {
795         FILE_OP_ERROR (file, "fgets");
796         goto failure;
797     }
798
799     /* write them to the temp data and add the rest of the message */
800     for (i = 0; !err && i < clineidx; i++) {
801         debug_print ("%% %s:%d: cline=`%s'", __FILE__ ,__LINE__, clines[i]);
802         err = gpgme_data_write (plain, clines[i], strlen (clines[i]));
803     }
804     if (!err)
805         err = gpgme_data_write (plain, "\r\n", 2);
806     while (!err && fgets(buf, sizeof(buf), fp)) {
807         err = gpgme_data_write (plain, buf, strlen (buf));
808     }
809     if (ferror (fp)) {
810         FILE_OP_ERROR (file, "fgets");
811         goto failure;
812     }
813     if (err) {
814         debug_print ("gpgme_data_write failed: %s\n", gpgme_strerror (err));
815         goto failure;
816     }
817
818     cipher = pgp_encrypt (plain, rset);
819     gpgme_data_release (plain); plain = NULL;
820     gpgme_recipients_release (rset); rset = NULL;
821     if (!cipher)
822         goto failure;
823
824     /* we have the encrypted message available in cipher and now we
825      * are going to rewrite the source file. To be sure that file has
826      * been truncated we use an approach which should work everywhere:
827      * close the file and then reopen it for writing. It is important
828      * that this works, otherwise it may happen that parts of the
829      * plaintext are still in the file (The encrypted stuff is, due to
830      * compression, usually shorter than the plaintext). 
831      * 
832      * Yes, there is a race condition here, but everyone, who is so
833      * stupid to store the temp file with the plaintext in a public
834      * directory has to live with this anyway. */
835     if (fclose (fp)) {
836         FILE_OP_ERROR(file, "fclose");
837         goto failure;
838     }
839     if ((fp = fopen(file, "wb")) == NULL) {
840         FILE_OP_ERROR(file, "fopen");
841         goto failure;
842     }
843
844     /* Write the header, append new content lines, part 1 and part 2 header */
845     err = gpgme_data_rewind (header);
846     if (err) {
847         debug_print ("gpgme_data_rewind failed: %s\n", gpgme_strerror (err));
848         goto failure;
849     }
850     while (!(err = gpgme_data_read (header, buf, BUFFSIZE, &nread))) {
851         fwrite (buf, nread, 1, fp);
852     }
853     if (err != GPGME_EOF) {
854         debug_print ("gpgme_data_read failed: %s\n", gpgme_strerror (err));
855         goto failure;
856     }
857     if (ferror (fp)) {
858         FILE_OP_ERROR (file, "fwrite");
859         goto failure;
860     }
861     gpgme_data_release (header); header = NULL;
862     
863     if (!mime_version_seen) 
864         fputs ("MIME-Version: 1\r\n", fp);
865
866     if (ascii_armored) {
867         fprintf(fp, 
868             "Content-Type: text/plain; charset=US-ASCII\r\n"
869             "Content-Transfer-Encoding: 7bit\r\n"  
870             "\r\n");
871     } else {
872         fprintf (fp,
873                 "Content-Type: multipart/encrypted;"
874                 " protocol=\"application/pgp-encrypted\";\r\n"
875                 " boundary=\"%s\"\r\n"
876                 "\r\n"
877                 "--%s\r\n"
878                 "Content-Type: application/pgp-encrypted\r\n"
879                 "\r\n"
880                 "Version: 1\r\n"
881                 "\r\n"
882                 "--%s\r\n"
883                 "Content-Type: application/octet-stream\r\n"
884                 "\r\n",
885                 boundary, boundary, boundary);
886     }
887
888     /* append the encrypted stuff */
889     err = gpgme_data_rewind (cipher);
890     if (err) {
891         debug_print ("** gpgme_data_rewind on cipher failed: %s\n",
892                    gpgme_strerror (err));
893         goto failure;
894     }
895
896     while (!(err = gpgme_data_read (cipher, buf, BUFFSIZE, &nread))) {
897         fwrite (buf, nread, 1, fp);
898     }
899     if (err != GPGME_EOF) {
900         debug_print ("** gpgme_data_read failed: %s\n", gpgme_strerror (err));
901         goto failure;
902     }
903
904     /* and the final boundary */
905     if (!ascii_armored) {
906         fprintf (fp,
907                  "\r\n"
908                  "--%s--\r\n",
909                  boundary);
910     }
911     fflush (fp);
912     if (ferror (fp)) {
913         FILE_OP_ERROR (file, "fwrite");
914         goto failure;
915     }
916     fclose (fp);
917     gpgme_data_release (cipher);
918     return 0;
919
920 failure:
921     if (fp) 
922         fclose (fp);
923     gpgme_data_release (header);
924     gpgme_data_release (plain);
925     gpgme_data_release (cipher);
926     gpgme_recipients_release (rset);
927     g_free (boundary);
928     return -1; /* error */
929 }
930
931 /* 
932  * plain contains an entire mime object.  Sign it and return an
933  * GpgmeData object with the signature of it or NULL in case of error.
934  * r_siginfo returns an XML object with information about the signature.
935  */
936 static GpgmeData
937 pgp_sign (GpgmeData plain, GSList *key_list, char **r_siginfo)
938 {
939     GSList *p;
940     GpgmeCtx ctx = NULL;
941     GpgmeError err;
942     GpgmeData sig = NULL;
943     struct passphrase_cb_info_s info;
944
945     *r_siginfo = NULL;
946     memset (&info, 0, sizeof info);
947
948     err = gpgme_new (&ctx);
949     if (err)
950         goto leave;
951     err = gpgme_data_new (&sig);
952     if (err)
953         goto leave;
954
955     if (!getenv("GPG_AGENT_INFO")) {
956         info.c = ctx;
957         gpgme_set_passphrase_cb (ctx, gpgmegtk_passphrase_cb, &info);
958     }
959     gpgme_set_textmode (ctx, 1);
960     gpgme_set_armor (ctx, 1);
961     gpgme_signers_clear (ctx);
962     for (p = key_list; p != NULL; p = p->next) {
963         err = gpgme_signers_add (ctx, (GpgmeKey) p->data);
964         if (err)
965             goto leave;
966     }
967     for (p = key_list; p != NULL; p = p->next)
968         gpgme_key_unref ((GpgmeKey) p->data);
969     g_slist_free (key_list);
970
971     if (err)
972         goto leave;
973     err = gpgme_op_sign (ctx, plain, sig, GPGME_SIG_MODE_DETACH);
974     if (!err)
975         *r_siginfo = gpgme_get_op_info (ctx, 0);
976
977 leave:
978     if (err) {
979         gpgmegtk_free_passphrase();
980         debug_print ("signing failed: %s\n", gpgme_strerror (err));
981         gpgme_data_release (sig);
982         sig = NULL;
983     }
984     else {
985         debug_print ("signing succeeded\n");
986     }
987
988     gpgme_release (ctx);
989     return sig;
990 }
991
992 /*
993  * Find TAG in XML and return a pointer into xml set just behind the
994  * closing angle.  Return NULL if not found. 
995  */
996 static const char *
997 find_xml_tag (const char *xml, const char *tag)
998 {
999     int taglen = strlen (tag);
1000     const char *s = xml;
1001  
1002     while ( (s = strchr (s, '<')) ) {
1003         s++;
1004         if (!strncmp (s, tag, taglen)) {
1005             const char *s2 = s + taglen;
1006             if (*s2 == '>' || isspace (*(const unsigned char*)s2) ) {
1007                 /* found */
1008                 while (*s2 && *s2 != '>') /* skip attributes */
1009                     s2++;
1010                 /* fixme: do need to handle angles inside attribute vallues? */
1011                 return *s2? (s2+1):NULL;
1012             }
1013         }
1014         while (*s && *s != '>') /* skip to end of tag */
1015             s++;
1016     }
1017     return NULL;
1018 }
1019
1020
1021 /*
1022  * Extract the micalg from an GnupgOperationInfo XML container.
1023  */
1024 static char *
1025 extract_micalg (char *xml)
1026 {
1027     const char *s;
1028
1029     s = find_xml_tag (xml, "GnupgOperationInfo");
1030     if (s) {
1031         const char *s_end = find_xml_tag (s, "/GnupgOperationInfo");
1032         s = find_xml_tag (s, "signature");
1033         if (s && s_end && s < s_end) {
1034             const char *s_end2 = find_xml_tag (s, "/signature");
1035             if (s_end2 && s_end2 < s_end) {
1036                 s = find_xml_tag (s, "micalg");
1037                 if (s && s < s_end2) {
1038                     s_end = strchr (s, '<');
1039                     if (s_end) {
1040                         char *p = g_malloc (s_end - s + 1);
1041                         memcpy (p, s, s_end - s);
1042                         p[s_end-s] = 0;
1043                         return p;
1044                     }
1045                 }
1046             }
1047         }
1048     }
1049     return NULL;
1050 }
1051
1052
1053 /*
1054  * Sign the file and replace its content with the signed one.
1055  */
1056 int
1057 rfc2015_sign (const char *file, GSList *key_list)
1058 {
1059     FILE *fp = NULL;
1060     char buf[BUFFSIZE];
1061     int i, clineidx, saved_last;
1062     char *clines[3] = {NULL};
1063     GpgmeError err;
1064     GpgmeData header = NULL;
1065     GpgmeData plain = NULL;
1066     GpgmeData sigdata = NULL;
1067     size_t nread;
1068     int mime_version_seen = 0;
1069     char *boundary = create_boundary ();
1070     char *micalg = NULL;
1071     char *siginfo;
1072
1073     /* Open the source file */
1074     if ((fp = fopen(file, "rb")) == NULL) {
1075         FILE_OP_ERROR(file, "fopen");
1076         goto failure;
1077     }
1078
1079     err = gpgme_data_new (&header);
1080     if (!err)
1081         err = gpgme_data_new (&plain);
1082     if (err) {
1083         debug_print ("gpgme_data_new failed: %s\n", gpgme_strerror (err));
1084         goto failure;
1085     }
1086
1087     /* get the content header lines from the source */
1088     clineidx = 0;
1089     saved_last = 0;
1090     while (!err && fgets(buf, sizeof(buf), fp)) {
1091         /* fixme: check for overlong lines */
1092         if (headerp (buf, content_names)) {
1093             if (clineidx >= DIM (clines)) {
1094                 debug_print ("rfc2015_sign: too many content lines\n");
1095                 goto failure;
1096             }
1097             clines[clineidx++] = g_strdup (buf);
1098             saved_last = 1;
1099             continue;
1100         }
1101         if (saved_last) {
1102             saved_last = 0;
1103             if (*buf == ' ' || *buf == '\t') {
1104                 char *last = clines[clineidx - 1];
1105                 clines[clineidx - 1] = g_strconcat (last, buf, NULL);
1106                 g_free (last);
1107                 continue;
1108             }
1109         }
1110
1111         if (headerp (buf, mime_version_name)) 
1112             mime_version_seen = 1;
1113
1114         if (buf[0] == '\r' || buf[0] == '\n')
1115             break;
1116         err = gpgme_data_write (header, buf, strlen (buf));
1117     }
1118     if (ferror (fp)) {
1119         FILE_OP_ERROR (file, "fgets");
1120         goto failure;
1121     }
1122
1123     /* write them to the temp data and add the rest of the message */
1124     for (i = 0; !err && i < clineidx; i++) {
1125         err = gpgme_data_write (plain, clines[i], strlen (clines[i]));
1126     }
1127     if (!err)
1128         err = gpgme_data_write (plain, "\r\n", 2 );
1129     while (!err && fgets(buf, sizeof(buf), fp)) {
1130         err = gpgme_data_write (plain, buf, strlen (buf));
1131     }
1132     if (ferror (fp)) {
1133         FILE_OP_ERROR (file, "fgets");
1134         goto failure;
1135     }
1136     if (err) {
1137         debug_print ("gpgme_data_write failed: %s\n", gpgme_strerror (err));
1138         goto failure;
1139     }
1140
1141     sigdata = pgp_sign (plain, key_list, &siginfo); 
1142     if (siginfo) {
1143         micalg = extract_micalg (siginfo);
1144         free (siginfo);
1145     }
1146     if (!sigdata) 
1147         goto failure;
1148
1149     /* we have the signed message available in sigdata and now we are
1150      * going to rewrite the original file. To be sure that file has
1151      * been truncated we use an approach which should work everywhere:
1152      * close the file and then reopen it for writing. */
1153     if (fclose (fp)) {
1154         FILE_OP_ERROR(file, "fclose");
1155         goto failure;
1156     }
1157     if ((fp = fopen(file, "wb")) == NULL) {
1158         FILE_OP_ERROR(file, "fopen");
1159         goto failure;
1160     }
1161
1162     /* Write the rfc822 header and add new content lines */
1163     err = gpgme_data_rewind (header);
1164     if (err)
1165         debug_print ("gpgme_data_rewind failed: %s\n", gpgme_strerror (err));
1166     while (!(err = gpgme_data_read (header, buf, BUFFSIZE, &nread))) {
1167         fwrite (buf, nread, 1, fp);
1168     }
1169     if (err != GPGME_EOF) {
1170         debug_print ("gpgme_data_read failed: %s\n", gpgme_strerror (err));
1171         goto failure;
1172     }
1173     if (ferror (fp)) {
1174         FILE_OP_ERROR (file, "fwrite");
1175         goto failure;
1176     }
1177     gpgme_data_release (header);
1178     header = NULL;
1179
1180     if (!mime_version_seen) 
1181         fputs ("MIME-Version: 1.0\r\n", fp);
1182     fprintf (fp, "Content-Type: multipart/signed; "
1183              "protocol=\"application/pgp-signature\";\r\n");
1184     if (micalg)
1185         fprintf (fp, " micalg=\"%s\";", micalg);
1186     fprintf (fp, " boundary=\"%s\"\r\n", boundary);
1187
1188     /* Part 1: signed material */
1189     fprintf (fp, "\r\n"
1190                  "--%s\r\n",
1191                  boundary);
1192     err = gpgme_data_rewind (plain);
1193     if (err) {
1194         debug_print ("gpgme_data_rewind on plain failed: %s\n",
1195                    gpgme_strerror (err));
1196         goto failure;
1197     }
1198     while (!(err = gpgme_data_read (plain, buf, BUFFSIZE, &nread))) {
1199         fwrite (buf, nread, 1, fp);   
1200     }
1201     if (err != GPGME_EOF) {
1202         debug_print ("gpgme_data_read failed: %s\n", gpgme_strerror (err));
1203         goto failure;
1204     }
1205
1206     /* Part 2: signature */
1207     fprintf (fp, "\r\n"
1208                  "--%s\r\n",
1209                  boundary);
1210     fputs ("Content-Type: application/pgp-signature\r\n"
1211            "\r\n", fp);
1212
1213     err = gpgme_data_rewind (sigdata);
1214     if (err) {
1215         debug_print ("gpgme_data_rewind on sigdata failed: %s\n",
1216                    gpgme_strerror (err));
1217         goto failure;
1218     }
1219
1220     while (!(err = gpgme_data_read (sigdata, buf, BUFFSIZE, &nread))) {
1221         fwrite (buf, nread, 1, fp);
1222     }
1223     if (err != GPGME_EOF) {
1224         debug_print ("gpgme_data_read failed: %s\n", gpgme_strerror (err));
1225         goto failure;
1226     }
1227
1228     /* Final boundary */
1229     fprintf (fp, "\r\n"
1230                  "--%s--\r\n",
1231                  boundary);
1232     fflush (fp);
1233     if (ferror (fp)) {
1234         FILE_OP_ERROR (file, "fwrite");
1235         goto failure;
1236     }
1237     fclose (fp);
1238     gpgme_data_release (header);
1239     gpgme_data_release (plain);
1240     gpgme_data_release (sigdata);
1241     g_free (boundary);
1242     g_free (micalg);
1243     return 0;
1244
1245 failure:
1246     if (fp) 
1247         fclose (fp);
1248     gpgme_data_release (header);
1249     gpgme_data_release (plain);
1250     gpgme_data_release (sigdata);
1251     g_free (boundary);
1252     g_free (micalg);
1253     return -1; /* error */
1254 }
1255
1256
1257 /****************
1258  * Create a new boundary in a way that it is very unlikely that this
1259  * will occur in the following text.  It would be easy to ensure
1260  * uniqueness if everything is either quoted-printable or base64
1261  * encoded (note that conversion is allowed), but because MIME bodies
1262  * may be nested, it may happen that the same boundary has already
1263  * been used. We avoid scanning the message for conflicts and hope the
1264  * best.
1265  *
1266  *   boundary := 0*69<bchars> bcharsnospace
1267  *   bchars := bcharsnospace / " "
1268  *   bcharsnospace := DIGIT / ALPHA / "'" / "(" / ")" /
1269  *                    "+" / "_" / "," / "-" / "." /
1270  *                    "/" / ":" / "=" / "?"  
1271  */
1272
1273 static char *
1274 create_boundary (void)
1275 {
1276     static char tbl[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1277                         "abcdefghijklmnopqrstuvwxyz"
1278                         "1234567890'()+_,./:=?";
1279     char buf[17];
1280     int i, equal;
1281     int pid;
1282
1283     pid = getpid();
1284
1285     /* We make the boundary depend on the pid, so that all running
1286      * processed generate different values even when they have been
1287      * started within the same second and srand48(time(NULL)) has been
1288      * used.  I can't see whether this is really an advantage but it
1289      * doesn't do any harm.
1290      */
1291     equal = -1;
1292     for(i = 0; i < sizeof(buf) - 1; i++) {
1293         buf[i] = tbl[(lrand48() ^ pid) % (sizeof(tbl) - 1)]; /* fill with random */
1294         if(buf[i] == '=' && equal == -1)
1295             equal = i;
1296     }
1297     buf[i] = 0;
1298
1299     /* now make sure that we do have the sequence "=." in it which cannot
1300      * be matched by quoted-printable or base64 encoding */
1301     if(equal != -1 && (equal+1) < i)
1302         buf[equal+1] = '.';
1303     else {
1304         buf[0] = '=';
1305         buf[1] = '.';
1306     }
1307
1308     return g_strdup(buf);
1309 }
1310
1311 #endif /* USE_GPGME */