When generating a PGP keypair, only ask for passphrase with gpg1.
[claws.git] / src / plugins / pgpcore / sgpgme.c
1 /*
2  * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2015 the Claws Mail team
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 3 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, see <http://www.gnu.org/licenses/>.
17  */
18
19 #ifdef HAVE_CONFIG_H
20 #  include "config.h"
21 #include "claws-features.h"
22 #endif
23
24 #ifdef USE_GPGME
25
26 #include <time.h>
27 #include <gtk/gtk.h>
28 #include <gpgme.h>
29 #include <glib.h>
30 #include <glib/gi18n.h>
31 #include <stdio.h>
32 #include <string.h>
33 #include <stdlib.h>
34 #include <errno.h>
35 #include <sys/types.h>
36 #ifndef G_OS_WIN32
37 #  include <sys/wait.h>
38 #else
39 #  include <pthread.h>
40 #  include <windows.h>
41 #endif
42 #if (defined(__DragonFly__) || defined(SOLARIS) || defined (__NetBSD__) || defined (__FreeBSD__) || defined (__OpenBSD__))
43 #  include <sys/signal.h>
44 #endif
45 #ifndef G_OS_WIN32
46 #include <sys/mman.h>
47 #endif
48 #if HAVE_LOCALE_H
49 #  include <locale.h>
50 #endif
51
52 #include "sgpgme.h"
53 #include "privacy.h"
54 #include "prefs_common.h"
55 #include "utils.h"
56 #include "alertpanel.h"
57 #include "passphrase.h"
58 #include "prefs_gpg.h"
59 #include "account.h"
60 #include "select-keys.h"
61 #include "claws.h"
62
63 static void sgpgme_disable_all(void)
64 {
65     /* FIXME: set a flag, so that we don't bother the user with failed
66      * gpgme messages */
67 }
68
69 gpgme_verify_result_t sgpgme_verify_signature(gpgme_ctx_t ctx, gpgme_data_t sig, 
70                                         gpgme_data_t plain, gpgme_data_t dummy)
71 {
72         gpgme_verify_result_t status = NULL;
73         gpgme_error_t err;
74
75         if ((err = gpgme_op_verify(ctx, sig, plain, dummy)) != GPG_ERR_NO_ERROR) {
76                 debug_print("op_verify err %s\n", gpgme_strerror(err));
77                 privacy_set_error("%s", gpgme_strerror(err));
78                 return GINT_TO_POINTER(-GPG_ERR_SYSTEM_ERROR);
79         }
80         status = gpgme_op_verify_result(ctx);
81         if (status && status->signatures == NULL) {
82                 debug_print("no signature found\n");
83                 privacy_set_error(_("No signature found"));
84                 return GINT_TO_POINTER(-GPG_ERR_SYSTEM_ERROR);
85         }
86         return status;
87 }
88
89 SignatureStatus sgpgme_sigstat_gpgme_to_privacy(gpgme_ctx_t ctx, gpgme_verify_result_t status)
90 {
91         gpgme_signature_t sig = NULL;
92         
93         if (GPOINTER_TO_INT(status) == -GPG_ERR_SYSTEM_ERROR) {
94                 debug_print("system error\n");
95                 return SIGNATURE_CHECK_FAILED;
96         }
97
98         if (status == NULL) {
99                 debug_print("status == NULL\n");
100                 return SIGNATURE_UNCHECKED;
101         }
102         sig = status->signatures;
103
104         if (sig == NULL) {
105                 debug_print("sig == NULL\n");
106                 return SIGNATURE_UNCHECKED;
107         }
108
109         debug_print("err code %d\n", gpg_err_code(sig->status));
110         switch (gpg_err_code(sig->status)) {
111         case GPG_ERR_NO_ERROR:
112                 switch (sig->validity) {
113                 case GPGME_VALIDITY_NEVER:
114                         return SIGNATURE_INVALID;
115                 case GPGME_VALIDITY_UNKNOWN:
116                 case GPGME_VALIDITY_UNDEFINED:
117                 case GPGME_VALIDITY_MARGINAL:
118                 case GPGME_VALIDITY_FULL:
119                 case GPGME_VALIDITY_ULTIMATE:
120                         return SIGNATURE_OK;
121                 default:
122                         return SIGNATURE_CHECK_FAILED;
123                 }
124         case GPG_ERR_SIG_EXPIRED:
125         case GPG_ERR_CERT_REVOKED:
126                 return SIGNATURE_WARN;
127         case GPG_ERR_KEY_EXPIRED:
128                 return SIGNATURE_KEY_EXPIRED;
129         case GPG_ERR_BAD_SIGNATURE:
130                 return SIGNATURE_INVALID;
131         case GPG_ERR_NO_PUBKEY:
132                 return SIGNATURE_CHECK_FAILED;
133         default:
134                 return SIGNATURE_CHECK_FAILED;
135         }
136         return SIGNATURE_CHECK_FAILED;
137 }
138
139 static const gchar *get_validity_str(unsigned long validity)
140 {
141         switch (gpg_err_code(validity)) {
142         case GPGME_VALIDITY_UNKNOWN:
143                 return _("Unknown");
144         case GPGME_VALIDITY_UNDEFINED:
145                 return _("Undefined");
146         case GPGME_VALIDITY_NEVER:
147                 return _("Never");
148         case GPGME_VALIDITY_MARGINAL:
149                 return _("Marginal");
150         case GPGME_VALIDITY_FULL:
151                 return _("Full");
152         case GPGME_VALIDITY_ULTIMATE:
153                 return _("Ultimate");
154         default:
155                 return _("Error");
156         }
157 }
158
159 static const gchar *get_owner_trust_str(unsigned long owner_trust)
160 {
161         switch (gpgme_err_code(owner_trust)) {
162         case GPGME_VALIDITY_NEVER:
163                 return _("Untrusted");
164         case GPGME_VALIDITY_MARGINAL:
165                 return _("Marginal");
166         case GPGME_VALIDITY_FULL:
167                 return _("Full");
168         case GPGME_VALIDITY_ULTIMATE:
169                 return _("Ultimate");
170         default:
171                 return _("Unknown");
172         }
173 }
174
175 gchar *get_gpg_executable_name()
176 {
177         gpgme_engine_info_t e;
178
179         if (!gpgme_get_engine_info(&e)) {
180                 while (e != NULL) {
181                         if (e->protocol == GPGME_PROTOCOL_OpenPGP
182                                         && e->file_name != NULL) {
183                                 debug_print("Found gpg executable: '%s'\n", e->file_name);
184                                 return e->file_name;
185                         }
186                 }
187         }
188
189         return NULL;
190 }
191
192 static gchar *get_gpg_version_string()
193 {
194         gpgme_engine_info_t e;
195
196         if (!gpgme_get_engine_info(&e)) {
197                 while (e != NULL) {
198                         if (e->protocol == GPGME_PROTOCOL_OpenPGP
199                                         && e->version != NULL) {
200                                 debug_print("Got OpenPGP version: '%s'\n", e->version);
201                                 return e->version;
202                         }
203                 }
204         }
205
206         return NULL;
207 }
208
209 static gchar *extract_name(const char *uid)
210 {
211         if (uid == NULL)
212                 return NULL;
213         if (!strncmp(uid, "CN=", 3)) {
214                 gchar *result = g_strdup(uid+3);
215                 if (strstr(result, ","))
216                         *(strstr(result, ",")) = '\0';
217                 return result;
218         } else if (strstr(uid, ",CN=")) {
219                 gchar *result = g_strdup(strstr(uid, ",CN=")+4);
220                 if (strstr(result, ","))
221                         *(strstr(result, ",")) = '\0';
222                 return result;
223         } else {
224                 return g_strdup(uid);
225         }
226 }
227 gchar *sgpgme_sigstat_info_short(gpgme_ctx_t ctx, gpgme_verify_result_t status)
228 {
229         gpgme_signature_t sig = NULL;
230         gchar *uname = NULL;
231         gpgme_key_t key;
232         gchar *result = NULL;
233         gpgme_error_t err = 0;
234         static gboolean warned = FALSE;
235
236         if (GPOINTER_TO_INT(status) == -GPG_ERR_SYSTEM_ERROR) {
237                 return g_strdup_printf(_("The signature can't be checked - %s"), privacy_get_error());
238         }
239
240         if (status == NULL) {
241                 return g_strdup(_("The signature has not been checked."));
242         }
243         sig = status->signatures;
244         if (sig == NULL) {
245                 return g_strdup(_("The signature has not been checked."));
246         }
247
248         err = gpgme_get_key(ctx, sig->fpr, &key, 0);
249         if (gpg_err_code(err) == GPG_ERR_NO_AGENT) {
250                 if (!warned)
251                         alertpanel_error(_("PGP Core: Can't get key - no gpg-agent running."));
252                 else
253                         g_warning("PGP Core: Can't get key - no gpg-agent running.");
254                 warned = TRUE;
255         } else if (gpg_err_code(err) != GPG_ERR_NO_ERROR && gpg_err_code(err) != GPG_ERR_EOF) {
256                 return g_strdup_printf(_("The signature can't be checked - %s"), 
257                         gpgme_strerror(err));
258   }
259
260         if (key)
261                 uname = extract_name(key->uids->uid);
262         else
263                 uname = g_strdup("<?>");
264
265         switch (gpg_err_code(sig->status)) {
266         case GPG_ERR_NO_ERROR:
267                switch ((key && key->uids) ? key->uids->validity : GPGME_VALIDITY_UNKNOWN) {
268                 case GPGME_VALIDITY_ULTIMATE:
269                         result = g_strdup_printf(_("Good signature from \"%s\" [ultimate]"), uname);
270                         break;
271                 case GPGME_VALIDITY_FULL:
272                         result = g_strdup_printf(_("Good signature from \"%s\" [full]"), uname);
273                         break;
274                 case GPGME_VALIDITY_MARGINAL:
275                         result = g_strdup_printf(_("Good signature from \"%s\" [marginal]"), uname);
276                         break;
277                 case GPGME_VALIDITY_UNKNOWN:
278                 case GPGME_VALIDITY_UNDEFINED:
279                 case GPGME_VALIDITY_NEVER:
280                 default:
281                         if (key) {
282                                 result = g_strdup_printf(_("Good signature from \"%s\""), uname);
283                         } else {
284                                 gchar *id = g_strdup(sig->fpr + strlen(sig->fpr)-8);
285                                 result = g_strdup_printf(_("Key 0x%s not available to verify this signature"), id);
286                                 g_free(id);
287                         }
288                         break;
289                }
290                 break;
291         case GPG_ERR_SIG_EXPIRED:
292                 result = g_strdup_printf(_("Expired signature from \"%s\""), uname);
293                 break;
294         case GPG_ERR_KEY_EXPIRED:
295                 result = g_strdup_printf(_("Good signature from \"%s\", but the key has expired"), uname);
296                 break;
297         case GPG_ERR_CERT_REVOKED:
298                 result = g_strdup_printf(_("Good signature from \"%s\", but the key has been revoked"), uname);
299                 break;
300         case GPG_ERR_BAD_SIGNATURE:
301                 result = g_strdup_printf(_("Bad signature from \"%s\""), uname);
302                 break;
303         case GPG_ERR_NO_PUBKEY: {
304                 gchar *id = g_strdup(sig->fpr + strlen(sig->fpr)-8);
305                 result = g_strdup_printf(_("Key 0x%s not available to verify this signature"), id);
306                 g_free(id);
307                 break;
308                 }
309         default:
310                 result = g_strdup(_("The signature has not been checked"));
311                 break;
312         }
313         if (result == NULL)
314                 result = g_strdup(_("Error"));
315         g_free(uname);
316         return result;
317 }
318
319 gchar *sgpgme_sigstat_info_full(gpgme_ctx_t ctx, gpgme_verify_result_t status)
320 {
321         gint i = 0;
322         gchar *ret;
323         GString *siginfo;
324         gpgme_signature_t sig = NULL;
325
326         siginfo = g_string_sized_new(64);
327         if (status == NULL) {
328                 g_string_append_printf(siginfo,
329                         _("Error checking signature: no status\n"));
330                 goto bail;
331          }
332
333         sig = status->signatures;
334         
335         while (sig) {
336                 char buf[100];
337                 struct tm lt;
338                 gpgme_key_t key;
339                 gpgme_error_t err;
340                 const gchar *keytype, *keyid, *uid;
341                 
342                 err = gpgme_get_key(ctx, sig->fpr, &key, 0);
343
344                 if (err != GPG_ERR_NO_ERROR) {
345                         key = NULL;
346                         g_string_append_printf(siginfo, 
347                                 _("Error checking signature: %s\n"),
348                                 gpgme_strerror(err));
349                         goto bail;
350                 }
351                 if (key) {
352                         keytype = gpgme_pubkey_algo_name(
353                                         key->subkeys->pubkey_algo);
354                         keyid = key->subkeys->keyid;
355                         uid = key->uids->uid;
356                 } else {
357                         keytype = "?";
358                         keyid = "?";
359                         uid = "?";
360                 }
361
362                 memset(buf, 0, sizeof(buf));
363                 fast_strftime(buf, sizeof(buf)-1, prefs_common_get_prefs()->date_format, localtime_r(&sig->timestamp, &lt));
364                 g_string_append_printf(siginfo,
365                         _("Signature made on %s using %s key ID %s\n"),
366                         buf, keytype, keyid);
367                 
368                 switch (gpg_err_code(sig->status)) {
369                 case GPG_ERR_NO_ERROR:
370                         g_string_append_printf(siginfo,
371                                 _("Good signature from uid \"%s\" (Validity: %s)\n"),
372                                 uid, get_validity_str((key && key->uids) ? key->uids->validity:GPGME_VALIDITY_UNKNOWN));
373                         break;
374                 case GPG_ERR_KEY_EXPIRED:
375                         g_string_append_printf(siginfo,
376                                 _("Expired key uid \"%s\"\n"),
377                                 uid);
378                         break;
379                 case GPG_ERR_SIG_EXPIRED:
380                         g_string_append_printf(siginfo,
381                                 _("Expired signature from uid \"%s\" (Validity: %s)\n"),
382                                 uid, get_validity_str((key && key->uids) ? key->uids->validity:GPGME_VALIDITY_UNKNOWN));
383                         break;
384                 case GPG_ERR_CERT_REVOKED:
385                         g_string_append_printf(siginfo,
386                                 _("Revoked key uid \"%s\"\n"),
387                                 uid);
388                         break;
389                 case GPG_ERR_BAD_SIGNATURE:
390                         g_string_append_printf(siginfo,
391                                 _("BAD signature from \"%s\"\n"),
392                                 uid);
393                         break;
394                 default:
395                         break;
396                 }
397                 if (sig->status != GPG_ERR_BAD_SIGNATURE) {
398                         gint j = 1;
399                         if (key) {
400                                 key->uids = key->uids ? key->uids->next : NULL;
401                                 while (key->uids != NULL) {
402                                         g_string_append_printf(siginfo,
403                                                 g_strconcat("                    ",
404                                                             _("uid \"%s\" (Validity: %s)\n"), NULL),
405                                                 key->uids->uid,
406                                                 key->uids->revoked==TRUE?_("Revoked"):get_validity_str(key->uids->validity));
407                                         j++;
408                                         key->uids = key->uids->next;
409                                 }
410                         }
411                         g_string_append_printf(siginfo,_("Owner Trust: %s\n"),
412                                                key ? get_owner_trust_str(key->owner_trust) : _("No key!"));
413                         g_string_append(siginfo,
414                                 _("Primary key fingerprint:"));
415                         const char* primary_fpr = NULL;
416                         if (key && key->subkeys && key->subkeys->fpr)
417                                 primary_fpr = key->subkeys->fpr;
418                         else
419                                 g_string_append(siginfo, " ?");
420                         int idx; /* now pretty-print the fingerprint */
421                         for (idx=0; primary_fpr && *primary_fpr!='\0'; idx++, primary_fpr++) {
422                                 if (idx%4==0)
423                                         g_string_append_c(siginfo, ' ');
424                                 if (idx%20==0)
425                                         g_string_append_c(siginfo, ' ');
426                                 g_string_append_c(siginfo, (gchar)*primary_fpr);
427                         }
428                         g_string_append_c(siginfo, '\n');
429 #ifdef HAVE_GPGME_PKA_TRUST
430                         if (sig->pka_trust == 1 && sig->pka_address) {
431                                 g_string_append_printf(siginfo,
432                                    _("WARNING: Signer's address \"%s\" "
433                                       "does not match DNS entry\n"), 
434                                    sig->pka_address);
435                         }
436                         else if (sig->pka_trust == 2 && sig->pka_address) {
437                                 g_string_append_printf(siginfo,
438                                    _("Verified signer's address is \"%s\"\n"),
439                                    sig->pka_address);
440                                 /* FIXME: Compare the address to the
441                                  * From: address.  */
442                         }
443 #endif /*HAVE_GPGME_PKA_TRUST*/
444                 }
445
446                 g_string_append(siginfo, "\n");
447                 i++;
448                 sig = sig->next;
449         }
450 bail:
451         ret = siginfo->str;
452         g_string_free(siginfo, FALSE);
453         return ret;
454 }
455
456 gpgme_data_t sgpgme_data_from_mimeinfo(MimeInfo *mimeinfo)
457 {
458         gpgme_data_t data = NULL;
459         gpgme_error_t err;
460         FILE *fp = g_fopen(mimeinfo->data.filename, "rb");
461
462         if (!fp) 
463                 return NULL;
464
465         err = gpgme_data_new_from_filepart(&data, NULL, fp, mimeinfo->offset, mimeinfo->length);
466         fclose(fp);
467
468         debug_print("data %p (%d %d)\n", (void *)&data, mimeinfo->offset, mimeinfo->length);
469         if (err) {
470                 debug_print ("gpgme_data_new_from_file failed: %s\n",
471                              gpgme_strerror (err));
472                 privacy_set_error(_("Couldn't get data from message, %s"), gpgme_strerror(err));
473                 return NULL;
474         }
475         return data;
476 }
477
478 gpgme_data_t sgpgme_decrypt_verify(gpgme_data_t cipher, gpgme_verify_result_t *status, gpgme_ctx_t ctx)
479 {
480         struct passphrase_cb_info_s info;
481         gpgme_data_t plain;
482         gpgme_error_t err;
483
484         memset (&info, 0, sizeof info);
485         
486         if ((err = gpgme_data_new(&plain)) != GPG_ERR_NO_ERROR) {
487                 gpgme_release(ctx);
488                 privacy_set_error(_("Couldn't initialize data, %s"), gpgme_strerror(err));
489                 return NULL;
490         }
491         
492         if (gpgme_get_protocol(ctx) == GPGME_PROTOCOL_OpenPGP) {
493                 prefs_gpg_enable_agent(prefs_gpg_get_config()->use_gpg_agent);
494                 if (!g_getenv("GPG_AGENT_INFO") || !prefs_gpg_get_config()->use_gpg_agent) {
495                         info.c = ctx;
496                         gpgme_set_passphrase_cb (ctx, gpgmegtk_passphrase_cb, &info);
497                 }
498         } else {
499                 prefs_gpg_enable_agent(TRUE);
500                 info.c = ctx;
501                 gpgme_set_passphrase_cb (ctx, NULL, &info);
502         }
503         
504         
505         if (gpgme_get_protocol(ctx) == GPGME_PROTOCOL_OpenPGP) {
506                 err = gpgme_op_decrypt_verify(ctx, cipher, plain);
507                 if (err != GPG_ERR_NO_ERROR) {
508                         debug_print("can't decrypt (%s)\n", gpgme_strerror(err));
509                         privacy_set_error("%s", gpgme_strerror(err));
510                         gpgmegtk_free_passphrase();
511                         gpgme_data_release(plain);
512                         return NULL;
513                 }
514
515                 err = cm_gpgme_data_rewind(plain);
516                 if (err) {
517                         debug_print("can't seek (%d %d %s)\n", err, errno, g_strerror(errno));
518                 }
519
520                 debug_print("decrypted.\n");
521                 *status = gpgme_op_verify_result (ctx);
522         } else {
523                 err = gpgme_op_decrypt(ctx, cipher, plain);
524                 if (err != GPG_ERR_NO_ERROR) {
525                         debug_print("can't decrypt (%s)\n", gpgme_strerror(err));
526                         privacy_set_error("%s", gpgme_strerror(err));
527                         gpgmegtk_free_passphrase();
528                         gpgme_data_release(plain);
529                         return NULL;
530                 }
531
532                 err = cm_gpgme_data_rewind(plain);
533                 if (err) {
534                         debug_print("can't seek (%d %d %s)\n", err, errno, g_strerror(errno));
535                 }
536
537                 debug_print("decrypted.\n");
538                 *status = gpgme_op_verify_result (ctx);
539         }
540         return plain;
541 }
542
543 gchar *sgpgme_get_encrypt_data(GSList *recp_names, gpgme_protocol_t proto)
544 {
545         SelectionResult result = KEY_SELECTION_CANCEL;
546         gpgme_key_t *keys = gpgmegtk_recipient_selection(recp_names, &result,
547                                 proto);
548         gchar *ret = NULL;
549         int i = 0;
550
551         if (!keys) {
552                 if (result == KEY_SELECTION_DONT)
553                         return g_strdup("_DONT_ENCRYPT_");
554                 else
555                         return NULL;
556         }
557         while (keys[i]) {
558                 gpgme_subkey_t skey = keys[i]->subkeys;
559                 gchar *fpr = skey->fpr;
560                 gchar *tmp = NULL;
561                 debug_print("adding %s\n", fpr);
562                 tmp = g_strconcat(ret?ret:"", fpr, " ", NULL);
563                 g_free(ret);
564                 ret = tmp;
565                 i++;
566         }
567         return ret;
568 }
569
570 gboolean sgpgme_setup_signers(gpgme_ctx_t ctx, PrefsAccount *account,
571                               const gchar *from_addr)
572 {
573         GPGAccountConfig *config;
574         const gchar *signer_addr = account->address;
575
576         gpgme_signers_clear(ctx);
577
578         if (from_addr)
579                 signer_addr = from_addr;
580         config = prefs_gpg_account_get_config(account);
581
582         switch(config->sign_key) {
583         case SIGN_KEY_DEFAULT:
584                 debug_print("using default gnupg key\n");
585                 break;
586         case SIGN_KEY_BY_FROM:
587                 debug_print("using key for %s\n", signer_addr);
588                 break;
589         case SIGN_KEY_CUSTOM:
590                 debug_print("using key for %s\n", config->sign_key_id);
591                 break;
592         }
593
594         if (config->sign_key != SIGN_KEY_DEFAULT) {
595                 const gchar *keyid;
596                 gpgme_key_t key, found_key;
597                 gpgme_error_t err;
598
599                 if (config->sign_key == SIGN_KEY_BY_FROM)
600                         keyid = signer_addr;
601                 else if (config->sign_key == SIGN_KEY_CUSTOM)
602                         keyid = config->sign_key_id;
603                 else
604                         goto bail;
605
606                 found_key = NULL;
607                 /* Look for any key, not just private ones, or GPGMe doesn't
608                  * correctly set the revoked flag. */
609                 err = gpgme_op_keylist_start(ctx, keyid, 0);
610                 while ((err = gpgme_op_keylist_next(ctx, &key)) == 0) {
611                         if (key == NULL)
612                                 continue;
613
614                         if (!key->can_sign)
615                                 continue;
616
617                         if (key->protocol != gpgme_get_protocol(ctx)) {
618                                 debug_print("skipping a key (wrong protocol %d)\n", key->protocol);
619                                 gpgme_key_release(key);
620                                 continue;
621                         }
622
623                         if (key->expired) {
624                                 debug_print("skipping a key, expired");
625                                 gpgme_key_release(key);
626                                 continue;
627                         }
628                         if (key->revoked) {
629                                 debug_print("skipping a key, revoked");
630                                 gpgme_key_release(key);
631                                 continue;
632                         }
633                         if (key->disabled) {
634                                 debug_print("skipping a key, disabled");
635                                 gpgme_key_release(key);
636                                 continue;
637                         }
638
639                         if (found_key != NULL) {
640                                 gpgme_key_release(key);
641                                 gpgme_op_keylist_end(ctx);
642                                 g_warning("ambiguous specification of secret key '%s'", keyid);
643                                 privacy_set_error(_("Secret key specification is ambiguous"));
644                                 goto bail;
645                         }
646
647                         found_key = key;
648                 }
649                 gpgme_op_keylist_end(ctx);
650
651                 if (found_key == NULL) {
652                         g_warning("setup_signers start: %s", gpgme_strerror(err));
653                         privacy_set_error(_("Secret key not found (%s)"), gpgme_strerror(err));
654                         goto bail;
655                 }
656
657                 err = gpgme_signers_add(ctx, found_key);
658                 debug_print("got key (proto %d (pgp %d, smime %d).\n",
659                             found_key->protocol, GPGME_PROTOCOL_OpenPGP,
660                             GPGME_PROTOCOL_CMS);
661                 gpgme_key_release(found_key);
662
663                 if (err) {
664                         g_warning("error adding secret key: %s",
665                                   gpgme_strerror(err));
666                         privacy_set_error(_("Error setting secret key: %s"),
667                                           gpgme_strerror(err));
668                         goto bail;
669                 }
670         }
671
672         prefs_gpg_account_free_config(config);
673
674         return TRUE;
675 bail:
676         prefs_gpg_account_free_config(config);
677         return FALSE;
678 }
679
680 void sgpgme_init()
681 {
682         gchar *ctype_locale = NULL, *messages_locale = NULL;
683         gchar *ctype_utf8_locale = NULL, *messages_utf8_locale = NULL;
684         gpgme_error_t err = 0;
685
686         gpgme_engine_info_t engineInfo;
687
688         if (strcmp(prefs_gpg_get_config()->gpg_path, "") != 0
689             && access(prefs_gpg_get_config()->gpg_path, X_OK) != -1) {
690                 err = gpgme_set_engine_info(GPGME_PROTOCOL_OpenPGP, prefs_gpg_get_config()->gpg_path, NULL);
691                 if (err != GPG_ERR_NO_ERROR)
692                         g_warning("failed to set crypto engine configuration: %s", gpgme_strerror(err));
693         }
694
695         if (gpgme_check_version("1.0.0")) {
696 #ifdef LC_CTYPE
697                 debug_print("setting gpgme CTYPE locale\n");
698 #ifdef G_OS_WIN32
699                 ctype_locale = g_win32_getlocale();
700 #else
701                 ctype_locale = g_strdup(setlocale(LC_CTYPE, NULL));
702 #endif
703                 if (ctype_locale) {
704                         debug_print("setting gpgme CTYPE locale to: %s\n", ctype_locale);
705                         if (strchr(ctype_locale, '.'))
706                                 *(strchr(ctype_locale, '.')) = '\0';
707                         else if (strchr(ctype_locale, '@'))
708                                 *(strchr(ctype_locale, '@')) = '\0';
709                         ctype_utf8_locale = g_strconcat(ctype_locale, ".UTF-8", NULL);
710
711                         debug_print("setting gpgme locale to UTF8: %s\n", ctype_utf8_locale ? ctype_utf8_locale : "NULL");
712                         gpgme_set_locale(NULL, LC_CTYPE, ctype_utf8_locale);
713
714                         debug_print("done\n");
715                         g_free(ctype_utf8_locale);
716                         g_free(ctype_locale);
717                 } else {
718                         debug_print("couldn't set gpgme CTYPE locale\n");
719                 }
720 #endif
721 #ifdef LC_MESSAGES
722                 debug_print("setting gpgme MESSAGES locale\n");
723 #ifdef G_OS_WIN32
724                 messages_locale = g_win32_getlocale();
725 #else
726                 messages_locale = g_strdup(setlocale(LC_MESSAGES, NULL));
727 #endif
728                 if (messages_locale) {
729                         debug_print("setting gpgme MESSAGES locale to: %s\n", messages_locale);
730                         if (strchr(messages_locale, '.'))
731                                 *(strchr(messages_locale, '.')) = '\0';
732                         else if (strchr(messages_locale, '@'))
733                                 *(strchr(messages_locale, '@')) = '\0';
734                         messages_utf8_locale = g_strconcat(messages_locale, ".UTF-8", NULL);
735                         debug_print("setting gpgme locale to UTF8: %s\n", messages_utf8_locale ? messages_utf8_locale : "NULL");
736
737                         gpgme_set_locale(NULL, LC_MESSAGES, messages_utf8_locale);
738
739                         debug_print("done\n");
740                         g_free(messages_utf8_locale);
741                         g_free(messages_locale);
742                 } else {
743                         debug_print("couldn't set gpgme MESSAGES locale\n");
744                 }
745 #endif
746                 if (!gpgme_get_engine_info(&engineInfo)) {
747                         while (engineInfo) {
748                                 debug_print("GpgME Protocol: %s\n"
749                                             "Version: %s (req %s)\n"
750                                             "Executable: %s\n",
751                                         gpgme_get_protocol_name(engineInfo->protocol) ? gpgme_get_protocol_name(engineInfo->protocol):"???",
752                                         engineInfo->version ? engineInfo->version:"???",
753                                         engineInfo->req_version ? engineInfo->req_version:"???",
754                                         engineInfo->file_name ? engineInfo->file_name:"???");
755                                 if (engineInfo->protocol == GPGME_PROTOCOL_OpenPGP
756                                 &&  gpgme_engine_check_version(engineInfo->protocol) != 
757                                         GPG_ERR_NO_ERROR) {
758                                         if (engineInfo->file_name && !engineInfo->version) {
759                                                 alertpanel_error(_("Gpgme protocol '%s' is unusable: "
760                                                                    "Engine '%s' isn't installed properly."),
761                                                                    gpgme_get_protocol_name(engineInfo->protocol),
762                                                                    engineInfo->file_name);
763                                         } else if (engineInfo->file_name && engineInfo->version
764                                           && engineInfo->req_version) {
765                                                 alertpanel_error(_("Gpgme protocol '%s' is unusable: "
766                                                                    "Engine '%s' version %s is installed, "
767                                                                    "but version %s is required.\n"),
768                                                                    gpgme_get_protocol_name(engineInfo->protocol),
769                                                                    engineInfo->file_name,
770                                                                    engineInfo->version,
771                                                                    engineInfo->req_version);
772                                         } else {
773                                                 alertpanel_error(_("Gpgme protocol '%s' is unusable "
774                                                                    "(unknown problem)"),
775                                                                    gpgme_get_protocol_name(engineInfo->protocol));
776                                         }
777                                 }
778                                 engineInfo = engineInfo->next;
779                         }
780                 }
781         } else {
782                 sgpgme_disable_all();
783
784                 if (prefs_gpg_get_config()->gpg_warning) {
785                         AlertValue val;
786
787                         val = alertpanel_full
788                                 (_("Warning"),
789                                  _("GnuPG is not installed properly, or needs "
790                                  "to be upgraded.\n"
791                                  "OpenPGP support disabled."),
792                                  GTK_STOCK_CLOSE, NULL, NULL, TRUE, NULL,
793                                  ALERT_WARNING, G_ALERTDEFAULT);
794                         if (val & G_ALERTDISABLE)
795                                 prefs_gpg_get_config()->gpg_warning = FALSE;
796                 }
797         }
798 }
799
800 void sgpgme_done()
801 {
802         gpgmegtk_free_passphrase();
803 }
804
805 #ifdef G_OS_WIN32
806 struct _ExportCtx {
807         gboolean done;
808         gchar *cmd;
809         DWORD exitcode;
810 };
811
812 static void *_export_threaded(void *arg)
813 {
814         struct _ExportCtx *ctx = (struct _ExportCtx *)arg;
815         gboolean result;
816
817         PROCESS_INFORMATION pi = {0};
818         STARTUPINFO si = {0};
819
820         result = CreateProcess(NULL, ctx->cmd, NULL, NULL, FALSE,
821                         NORMAL_PRIORITY_CLASS | CREATE_NO_WINDOW,
822                         NULL, NULL, &si, &pi);
823
824         if (!result) {
825                 debug_print("Couldn't execute '%s'\n", ctx->cmd);
826         } else {
827                 WaitForSingleObject(pi.hProcess, 10000);
828                 result = GetExitCodeProcess(pi.hProcess, &ctx->exitcode);
829                 if (ctx->exitcode == STILL_ACTIVE) {
830                         debug_print("Process still running, terminating it.\n");
831                         TerminateProcess(pi.hProcess, 255);
832                 }
833
834                 CloseHandle(pi.hProcess);
835                 CloseHandle(pi.hThread);
836
837                 if (!result) {
838                         debug_print("Process executed, but we couldn't get its exit code (huh?)\n");
839                 }
840         }
841
842         ctx->done = TRUE;
843         return NULL;
844 }
845 #endif
846
847 void sgpgme_create_secret_key(PrefsAccount *account, gboolean ask_create)
848 {
849         AlertValue val = G_ALERTDEFAULT;
850         gchar *key_parms = NULL;
851         gchar *name = NULL;
852         gchar *email = NULL;
853         gchar *passphrase = NULL, *passphrase_second = NULL;
854         gint prev_bad = 0;
855         gchar *tmp = NULL, *gpgver;
856         gpgme_error_t err = 0;
857         gpgme_ctx_t ctx;
858         GtkWidget *window = NULL;
859         gpgme_genkey_result_t key;
860         gboolean exported = FALSE;
861
862         if (account == NULL)
863                 account = account_get_default();
864
865         if (account->address == NULL) {
866                 alertpanel_error(_("You have to save the account's information with \"OK\" "
867                                    "before being able to generate a key pair.\n"));
868                 return;
869         }
870         if (ask_create) {
871                 val = alertpanel(_("No PGP key found"),
872                                 _("Claws Mail did not find a secret PGP key, "
873                                   "which means that you won't be able to sign "
874                                   "emails or receive encrypted emails.\n"
875                                   "Do you want to create a new key pair now?"),
876                                   GTK_STOCK_NO, "+" GTK_STOCK_YES, NULL);
877                 if (val == G_ALERTDEFAULT) {
878                         return;
879                 }
880         }
881
882         if (account->name) {
883                 name = g_strdup(account->name);
884         } else {
885                 name = g_strdup(account->address);
886         }
887         email = g_strdup(account->address);
888         tmp = g_strdup_printf("%s <%s>", account->name?account->name:account->address, account->address);
889         gpgver = get_gpg_version_string();
890         if (gpgver == NULL || !strncmp(gpgver, "1.", 2)) {
891                 debug_print("Using gpg 1.x, using builtin passphrase dialog.\n");
892 again:
893                 passphrase = passphrase_mbox(tmp, NULL, prev_bad, 1);
894                 if (passphrase == NULL) {
895                         g_free(tmp);
896                         g_free(email);
897                         g_free(name);
898                         return;
899                 }
900                 passphrase_second = passphrase_mbox(tmp, NULL, 0, 2);
901                 if (passphrase_second == NULL) {
902                         g_free(tmp);
903                         g_free(email);
904                         if (passphrase != NULL) {
905                                 memset(passphrase, 0, strlen(passphrase));
906                                 g_free(passphrase);
907                         }
908                         g_free(name);
909                         return;
910                 }
911                 if (strcmp(passphrase, passphrase_second)) {
912                         if (passphrase != NULL) {
913                                 memset(passphrase, 0, strlen(passphrase));
914                                 g_free(passphrase);
915                         }
916                         if (passphrase_second != NULL) {
917                                 memset(passphrase_second, 0, strlen(passphrase_second));
918                                 g_free(passphrase_second);
919                         }
920                         prev_bad = 1;
921                         goto again;
922                 }
923         }
924         
925         key_parms = g_strdup_printf("<GnupgKeyParms format=\"internal\">\n"
926                                         "Key-Type: RSA\n"
927                                         "Key-Length: 2048\n"
928                                         "Subkey-Type: RSA\n"
929                                         "Subkey-Length: 2048\n"
930                                         "Name-Real: %s\n"
931                                         "Name-Email: %s\n"
932                                         "Expire-Date: 0\n"
933                                         "%s%s%s"
934                                         "</GnupgKeyParms>\n",
935                                         name, email, 
936                                         passphrase?"Passphrase: ":"",
937                                         passphrase?passphrase:"",
938                                         passphrase?"\n":"");
939 #ifndef G_PLATFORM_WIN32
940         if (passphrase &&
941                         mlock(passphrase, strlen(passphrase)) == -1)
942                 debug_print("couldn't lock passphrase\n");
943         if (passphrase_second &&
944                         mlock(passphrase_second, strlen(passphrase_second)) == -1)
945                 debug_print("couldn't lock passphrase2\n");
946 #endif
947         g_free(tmp);
948         g_free(email);
949         g_free(name);
950         if (passphrase_second != NULL) {
951                 memset(passphrase_second, 0, strlen(passphrase_second));
952                 g_free(passphrase_second);
953         }
954         if (passphrase != NULL) {
955                 memset(passphrase, 0, strlen(passphrase));
956                 g_free(passphrase);
957         }
958         
959         err = gpgme_new (&ctx);
960         if (err) {
961                 alertpanel_error(_("Couldn't generate a new key pair: %s"),
962                                  gpgme_strerror(err));
963                 if (key_parms != NULL) {
964                         memset(key_parms, 0, strlen(key_parms));
965                         g_free(key_parms);
966                 }
967                 return;
968         }
969         
970
971         window = label_window_create(_("Generating your new key pair... Please move the mouse "
972                               "around to help generate entropy..."));
973
974         err = gpgme_op_genkey(ctx, key_parms, NULL, NULL);
975         if (key_parms != NULL) {
976                 memset(key_parms, 0, strlen(key_parms));
977                 g_free(key_parms);
978         }
979
980         label_window_destroy(window);
981
982         if (err) {
983                 alertpanel_error(_("Couldn't generate a new key pair: %s"), gpgme_strerror(err));
984                 gpgme_release(ctx);
985                 return;
986         }
987         key = gpgme_op_genkey_result(ctx);
988         if (key == NULL) {
989                 alertpanel_error(_("Couldn't generate a new key pair: unknown error"));
990                 gpgme_release(ctx);
991                 return;
992         } else {
993                 gchar *buf = g_strdup_printf(_("Your new key pair has been generated. "
994                                     "Its fingerprint is:\n%s\n\nDo you want to export it "
995                                     "to a keyserver?"),
996                                     key->fpr ? key->fpr:"null");
997                 AlertValue val = alertpanel(_("Key generated"), buf,
998                                   GTK_STOCK_NO, "+" GTK_STOCK_YES, NULL);
999                 g_free(buf);
1000                 if (val == G_ALERTALTERNATE) {
1001                         gchar *gpgbin = get_gpg_executable_name();
1002                         gchar *cmd = g_strdup_printf("\"%s\" --batch --no-tty --send-keys %s",
1003                                 (gpgbin ? gpgbin : "gpg"), key->fpr);
1004                         debug_print("Executing command: %s\n", cmd);
1005
1006 #ifndef G_OS_WIN32
1007                         int res = 0;
1008                         pid_t pid = 0;
1009                         pid = fork();
1010                         if (pid == -1) {
1011                                 res = -1;
1012                         } else if (pid == 0) {
1013                                 /* son */
1014                                 res = system(cmd);
1015                                 res = WEXITSTATUS(res);
1016                                 _exit(res);
1017                         } else {
1018                                 int status = 0;
1019                                 time_t start_wait = time(NULL);
1020                                 res = -1;
1021                                 do {
1022                                         if (waitpid(pid, &status, WNOHANG) == 0 || !WIFEXITED(status)) {
1023                                                 usleep(200000);
1024                                         } else {
1025                                                 res = WEXITSTATUS(status);
1026                                                 break;
1027                                         }
1028                                         if (time(NULL) - start_wait > 5) {
1029                                                 debug_print("SIGTERM'ing gpg\n");
1030                                                 kill(pid, SIGTERM);
1031                                         }
1032                                         if (time(NULL) - start_wait > 6) {
1033                                                 debug_print("SIGKILL'ing gpg\n");
1034                                                 kill(pid, SIGKILL);
1035                                                 break;
1036                                         }
1037                                 } while(1);
1038                         }
1039
1040                         if (res == 0)
1041                                 exported = TRUE;
1042 #else
1043                         /* We need to call gpg in a separate thread, so that waiting for
1044                          * it to finish does not block the UI. */
1045                         pthread_t pt;
1046                         struct _ExportCtx *ectx = malloc(sizeof(struct _ExportCtx));
1047
1048                         ectx->done = FALSE;
1049                         ectx->exitcode = STILL_ACTIVE;
1050                         ectx->cmd = cmd;
1051
1052                         if (pthread_create(&pt, PTHREAD_CREATE_JOINABLE,
1053                                                 _export_threaded, (void *)ectx) != 0) {
1054                                 debug_print("Couldn't create thread, continuing unthreaded.\n");
1055                                 _export_threaded(ctx);
1056                         } else {
1057                                 debug_print("Thread created, waiting for it to finish...\n");
1058                                 while (!ectx->done)
1059                                         claws_do_idle();
1060                         }
1061
1062                         debug_print("Thread finished.\n");
1063                         pthread_join(pt, NULL);
1064
1065                         if (ectx->exitcode == 0)
1066                                 exported = TRUE;
1067
1068                         g_free(ectx);
1069 #endif
1070                         g_free(cmd);
1071
1072                         if (exported) {
1073                                 alertpanel_notice(_("Key exported."));
1074                         } else {
1075                                 alertpanel_error(_("Couldn't export key."));
1076                         }
1077                 }
1078         }
1079         gpgme_release(ctx);
1080 }
1081
1082 gboolean sgpgme_has_secret_key(void)
1083 {
1084         gpgme_error_t err = 0;
1085         gpgme_ctx_t ctx;
1086         gpgme_key_t key;
1087
1088         err = gpgme_new (&ctx);
1089         if (err) {
1090                 debug_print("err : %s\n", gpgme_strerror(err));
1091                 return TRUE;
1092         }
1093 check_again:
1094         err = gpgme_op_keylist_start(ctx, NULL, TRUE);
1095         if (!err)
1096                 err = gpgme_op_keylist_next(ctx, &key);
1097         gpgme_op_keylist_end(ctx);
1098         if (gpg_err_code(err) == GPG_ERR_EOF) {
1099                 if (gpgme_get_protocol(ctx) != GPGME_PROTOCOL_CMS) {
1100                         gpgme_set_protocol(ctx, GPGME_PROTOCOL_CMS);
1101                         goto check_again;
1102                 }
1103                 gpgme_release(ctx);
1104                 return FALSE;
1105         } else {
1106                 gpgme_release(ctx);
1107                 return TRUE;
1108         }
1109 }
1110
1111 void sgpgme_check_create_key(void)
1112 {
1113         if (prefs_gpg_get_config()->gpg_ask_create_key &&
1114             !sgpgme_has_secret_key()) {
1115                 sgpgme_create_secret_key(NULL, TRUE);
1116         }
1117
1118         prefs_gpg_get_config()->gpg_ask_create_key = FALSE;
1119         prefs_gpg_save_config();
1120 }
1121
1122 void *sgpgme_data_release_and_get_mem(gpgme_data_t data, size_t *len)
1123 {
1124         char buf[BUFSIZ];
1125         void *result = NULL;
1126         ssize_t r = 0;
1127         size_t w = 0;
1128         
1129         if (data == NULL)
1130                 return NULL;
1131         if (len == NULL)
1132                 return NULL;
1133
1134         /* I know it's deprecated, but we don't compile with _LARGEFILE */
1135         cm_gpgme_data_rewind(data);
1136         while ((r = gpgme_data_read(data, buf, BUFSIZ)) > 0) {
1137                 void *rresult = realloc(result, r + w);
1138                 if (rresult == NULL) {
1139                         g_warning("can't allocate memory");
1140                         if (result != NULL)
1141                                 free(result);
1142                         return NULL;
1143                 }
1144                 result = rresult;
1145                 memcpy(result+w, buf, r);
1146                 w += r;
1147         }
1148         
1149         *len = w;
1150
1151         gpgme_data_release(data);
1152         if (r < 0) {
1153                 free(result);
1154                 *len = 0;
1155                 return NULL;
1156         }
1157         return result;
1158 }
1159
1160 gpgme_error_t cm_gpgme_data_rewind(gpgme_data_t dh)
1161 {
1162 #if defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64
1163         if (gpgme_data_seek(dh, (off_t)0, SEEK_SET) == -1)
1164                 return gpg_error_from_errno(errno);
1165         else
1166                 return 0;
1167 #else
1168         return gpgme_data_rewind(dh);
1169 #endif
1170 }
1171
1172 #endif /* USE_GPGME */