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