2 * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2015 the Claws Mail team
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.
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.
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/>.
22 #include "claws-features.h"
31 #include <glib/gi18n.h>
36 #include <sys/types.h>
38 # include <sys/wait.h>
40 #if (defined(__DragonFly__) || defined(SOLARIS) || defined (__NetBSD__) || defined (__FreeBSD__) || defined (__OpenBSD__))
41 # include <sys/signal.h>
52 #include "prefs_common.h"
54 #include "alertpanel.h"
55 #include "passphrase.h"
56 #include "prefs_gpg.h"
58 #include "select-keys.h"
60 static void sgpgme_disable_all(void)
62 /* FIXME: set a flag, so that we don't bother the user with failed
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)
69 gpgme_verify_result_t status = NULL;
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);
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);
86 SignatureStatus sgpgme_sigstat_gpgme_to_privacy(gpgme_ctx_t ctx, gpgme_verify_result_t status)
88 gpgme_signature_t sig = NULL;
90 if (GPOINTER_TO_INT(status) == -GPG_ERR_SYSTEM_ERROR) {
91 debug_print("system error\n");
92 return SIGNATURE_CHECK_FAILED;
96 debug_print("status == NULL\n");
97 return SIGNATURE_UNCHECKED;
99 sig = status->signatures;
102 debug_print("sig == NULL\n");
103 return SIGNATURE_UNCHECKED;
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:
119 return SIGNATURE_CHECK_FAILED;
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;
131 return SIGNATURE_CHECK_FAILED;
133 return SIGNATURE_CHECK_FAILED;
136 static const gchar *get_validity_str(unsigned long validity)
138 switch (gpg_err_code(validity)) {
139 case GPGME_VALIDITY_UNKNOWN:
141 case GPGME_VALIDITY_UNDEFINED:
142 return _("Undefined");
143 case GPGME_VALIDITY_NEVER:
145 case GPGME_VALIDITY_MARGINAL:
146 return _("Marginal");
147 case GPGME_VALIDITY_FULL:
149 case GPGME_VALIDITY_ULTIMATE:
150 return _("Ultimate");
156 static const gchar *get_owner_trust_str(unsigned long owner_trust)
158 switch (gpgme_err_code(owner_trust)) {
159 case GPGME_VALIDITY_NEVER:
160 return _("Untrusted");
161 case GPGME_VALIDITY_MARGINAL:
162 return _("Marginal");
163 case GPGME_VALIDITY_FULL:
165 case GPGME_VALIDITY_ULTIMATE:
166 return _("Ultimate");
172 static gchar *extract_name(const char *uid)
176 if (!strncmp(uid, "CN=", 3)) {
177 gchar *result = g_strdup(uid+3);
178 if (strstr(result, ","))
179 *(strstr(result, ",")) = '\0';
181 } else if (strstr(uid, ",CN=")) {
182 gchar *result = g_strdup(strstr(uid, ",CN=")+4);
183 if (strstr(result, ","))
184 *(strstr(result, ",")) = '\0';
187 return g_strdup(uid);
190 gchar *sgpgme_sigstat_info_short(gpgme_ctx_t ctx, gpgme_verify_result_t status)
192 gpgme_signature_t sig = NULL;
195 gchar *result = NULL;
196 gpgme_error_t err = 0;
197 static gboolean warned = FALSE;
199 if (GPOINTER_TO_INT(status) == -GPG_ERR_SYSTEM_ERROR) {
200 return g_strdup_printf(_("The signature can't be checked - %s"), privacy_get_error());
203 if (status == NULL) {
204 return g_strdup(_("The signature has not been checked."));
206 sig = status->signatures;
208 return g_strdup(_("The signature has not been checked."));
211 err = gpgme_get_key(ctx, sig->fpr, &key, 0);
212 if (gpg_err_code(err) == GPG_ERR_NO_AGENT) {
214 alertpanel_error(_("PGP Core: Can't get key - no gpg-agent running."));
216 g_warning(_("PGP Core: Can't get key - no gpg-agent running."));
218 } else if (gpg_err_code(err) != GPG_ERR_NO_ERROR && gpg_err_code(err) != GPG_ERR_EOF) {
219 return g_strdup_printf(_("The signature can't be checked - %s"),
220 gpgme_strerror(err));
221 } else if (gpg_err_code(err) != GPG_ERR_NO_ERROR && gpg_err_code(err) == GPG_ERR_EOF) {
223 * When gpg is upgraded to gpg-v21 then installer tries to migrate the old
224 * gpg keyrings found in ~/.gnupg to the new version. If the keyrings contain
225 * very old keys using ciphers no more supported in gpg-v21 this transition
226 * can fail and the left-over ~/.gnupg/pubring.gpg will cause claws to crash
227 * when the above condition is meet.
229 return g_strdup_printf(_("The signature can't be checked - %s. Removing\n"
230 "left-over ~/.gnupg/pubring.gpg might solve the\n"
231 "problem if you have installed gpg-v21"),
232 gpgme_strerror(err));
235 uname = extract_name(key->uids->uid);
237 uname = g_strdup("<?>");
239 switch (gpg_err_code(sig->status)) {
240 case GPG_ERR_NO_ERROR:
241 switch (key->uids?key->uids->validity:GPGME_VALIDITY_UNKNOWN) {
242 case GPGME_VALIDITY_ULTIMATE:
243 result = g_strdup_printf(_("Good signature from \"%s\" [ultimate]"), uname);
245 case GPGME_VALIDITY_FULL:
246 result = g_strdup_printf(_("Good signature from \"%s\" [full]"), uname);
248 case GPGME_VALIDITY_MARGINAL:
249 result = g_strdup_printf(_("Good signature from \"%s\" [marginal]"), uname);
251 case GPGME_VALIDITY_UNKNOWN:
252 case GPGME_VALIDITY_UNDEFINED:
253 case GPGME_VALIDITY_NEVER:
255 result = g_strdup_printf(_("Good signature from \"%s\""), uname);
259 case GPG_ERR_SIG_EXPIRED:
260 result = g_strdup_printf(_("Expired signature from \"%s\""), uname);
262 case GPG_ERR_KEY_EXPIRED:
263 result = g_strdup_printf(_("Good signature from \"%s\", but the key has expired"), uname);
265 case GPG_ERR_CERT_REVOKED:
266 result = g_strdup_printf(_("Good signature from \"%s\", but the key has been revoked"), uname);
268 case GPG_ERR_BAD_SIGNATURE:
269 result = g_strdup_printf(_("Bad signature from \"%s\""), uname);
271 case GPG_ERR_NO_PUBKEY: {
272 gchar *id = g_strdup(sig->fpr + strlen(sig->fpr)-8);
273 result = g_strdup_printf(_("Key 0x%s not available to verify this signature"), id);
278 result = g_strdup(_("The signature has not been checked"));
282 result = g_strdup(_("Error"));
287 gchar *sgpgme_sigstat_info_full(gpgme_ctx_t ctx, gpgme_verify_result_t status)
292 gpgme_signature_t sig = NULL;
294 siginfo = g_string_sized_new(64);
295 if (status == NULL) {
296 g_string_append_printf(siginfo,
297 _("Error checking signature: no status\n"));
301 sig = status->signatures;
308 const gchar *keytype, *keyid, *uid;
310 err = gpgme_get_key(ctx, sig->fpr, &key, 0);
312 if (err != GPG_ERR_NO_ERROR) {
314 g_string_append_printf(siginfo,
315 _("Error checking signature: %s\n"),
316 gpgme_strerror(err));
320 keytype = gpgme_pubkey_algo_name(
321 key->subkeys->pubkey_algo);
322 keyid = key->subkeys->keyid;
323 uid = key->uids->uid;
330 memset(buf, 0, sizeof(buf));
331 fast_strftime(buf, sizeof(buf)-1, prefs_common_get_prefs()->date_format, localtime_r(&sig->timestamp, <));
332 g_string_append_printf(siginfo,
333 _("Signature made on %s using %s key ID %s\n"),
334 buf, keytype, keyid);
336 switch (gpg_err_code(sig->status)) {
337 case GPG_ERR_NO_ERROR:
338 g_string_append_printf(siginfo,
339 _("Good signature from uid \"%s\" (Validity: %s)\n"),
340 uid, get_validity_str(key->uids?key->uids->validity:GPGME_VALIDITY_UNKNOWN));
342 case GPG_ERR_KEY_EXPIRED:
343 g_string_append_printf(siginfo,
344 _("Expired key uid \"%s\"\n"),
347 case GPG_ERR_SIG_EXPIRED:
348 g_string_append_printf(siginfo,
349 _("Expired signature from uid \"%s\" (Validity: %s)\n"),
350 uid, get_validity_str(key->uids?key->uids->validity:GPGME_VALIDITY_UNKNOWN));
352 case GPG_ERR_CERT_REVOKED:
353 g_string_append_printf(siginfo,
354 _("Revoked key uid \"%s\"\n"),
357 case GPG_ERR_BAD_SIGNATURE:
358 g_string_append_printf(siginfo,
359 _("BAD signature from \"%s\"\n"),
365 if (sig->status != GPG_ERR_BAD_SIGNATURE) {
367 key->uids = key->uids ? key->uids->next : NULL;
368 while (key->uids != NULL) {
369 g_string_append_printf(siginfo,
370 _(" uid \"%s\" (Validity: %s)\n"),
372 key->uids->revoked==TRUE?_("Revoked"):get_validity_str(key->uids->validity));
374 key->uids = key->uids->next;
376 g_string_append_printf(siginfo,_("Owner Trust: %s\n"),
377 get_owner_trust_str(key->owner_trust));
378 g_string_append(siginfo,
379 _("Primary key fingerprint:"));
380 const char* primary_fpr = NULL;
381 if (key && key->subkeys && key->subkeys->fpr)
382 primary_fpr = key->subkeys->fpr;
384 g_string_append(siginfo, " ?");
385 int idx; /* now pretty-print the fingerprint */
386 for (idx=0; primary_fpr && *primary_fpr!='\0'; idx++, primary_fpr++) {
388 g_string_append_c(siginfo, ' ');
390 g_string_append_c(siginfo, ' ');
391 g_string_append_c(siginfo, (gchar)*primary_fpr);
393 g_string_append_c(siginfo, '\n');
394 #ifdef HAVE_GPGME_PKA_TRUST
395 if (sig->pka_trust == 1 && sig->pka_address) {
396 g_string_append_printf(siginfo,
397 _("WARNING: Signer's address \"%s\" "
398 "does not match DNS entry\n"),
401 else if (sig->pka_trust == 2 && sig->pka_address) {
402 g_string_append_printf(siginfo,
403 _("Verified signer's address is \"%s\"\n"),
405 /* FIXME: Compare the address to the
408 #endif /*HAVE_GPGME_PKA_TRUST*/
411 g_string_append(siginfo, "\n");
417 g_string_free(siginfo, FALSE);
421 gpgme_data_t sgpgme_data_from_mimeinfo(MimeInfo *mimeinfo)
423 gpgme_data_t data = NULL;
425 FILE *fp = g_fopen(mimeinfo->data.filename, "rb");
430 err = gpgme_data_new_from_filepart(&data, NULL, fp, mimeinfo->offset, mimeinfo->length);
433 debug_print("data %p (%d %d)\n", (void *)&data, mimeinfo->offset, mimeinfo->length);
435 debug_print ("gpgme_data_new_from_file failed: %s\n",
436 gpgme_strerror (err));
437 privacy_set_error(_("Couldn't get data from message, %s"), gpgme_strerror(err));
443 gpgme_data_t sgpgme_decrypt_verify(gpgme_data_t cipher, gpgme_verify_result_t *status, gpgme_ctx_t ctx)
445 struct passphrase_cb_info_s info;
449 memset (&info, 0, sizeof info);
451 if ((err = gpgme_data_new(&plain)) != GPG_ERR_NO_ERROR) {
453 privacy_set_error(_("Couldn't initialize data, %s"), gpgme_strerror(err));
457 if (gpgme_get_protocol(ctx) == GPGME_PROTOCOL_OpenPGP) {
458 prefs_gpg_enable_agent(prefs_gpg_get_config()->use_gpg_agent);
459 if (!getenv("GPG_AGENT_INFO") || !prefs_gpg_get_config()->use_gpg_agent) {
461 gpgme_set_passphrase_cb (ctx, gpgmegtk_passphrase_cb, &info);
464 prefs_gpg_enable_agent(TRUE);
466 gpgme_set_passphrase_cb (ctx, NULL, &info);
470 if (gpgme_get_protocol(ctx) == GPGME_PROTOCOL_OpenPGP) {
471 err = gpgme_op_decrypt_verify(ctx, cipher, plain);
472 if (err != GPG_ERR_NO_ERROR) {
473 debug_print("can't decrypt (%s)\n", gpgme_strerror(err));
474 privacy_set_error("%s", gpgme_strerror(err));
475 gpgmegtk_free_passphrase();
476 gpgme_data_release(plain);
480 err = cm_gpgme_data_rewind(plain);
482 debug_print("can't seek (%d %d %s)\n", err, errno, g_strerror(errno));
485 debug_print("decrypted.\n");
486 *status = gpgme_op_verify_result (ctx);
488 err = gpgme_op_decrypt(ctx, cipher, plain);
489 if (err != GPG_ERR_NO_ERROR) {
490 debug_print("can't decrypt (%s)\n", gpgme_strerror(err));
491 privacy_set_error("%s", gpgme_strerror(err));
492 gpgmegtk_free_passphrase();
493 gpgme_data_release(plain);
497 err = cm_gpgme_data_rewind(plain);
499 debug_print("can't seek (%d %d %s)\n", err, errno, g_strerror(errno));
502 debug_print("decrypted.\n");
503 *status = gpgme_op_verify_result (ctx);
508 gchar *sgpgme_get_encrypt_data(GSList *recp_names, gpgme_protocol_t proto)
510 SelectionResult result = KEY_SELECTION_CANCEL;
511 gpgme_key_t *keys = gpgmegtk_recipient_selection(recp_names, &result,
517 if (result == KEY_SELECTION_DONT)
518 return g_strdup("_DONT_ENCRYPT_");
523 gpgme_subkey_t skey = keys[i]->subkeys;
524 gchar *fpr = skey->fpr;
526 debug_print("adding %s\n", fpr);
527 tmp = g_strconcat(ret?ret:"", fpr, " ", NULL);
535 gboolean sgpgme_setup_signers(gpgme_ctx_t ctx, PrefsAccount *account,
536 const gchar *from_addr)
538 GPGAccountConfig *config;
539 const gchar *signer_addr = account->address;
541 gpgme_signers_clear(ctx);
544 signer_addr = from_addr;
545 config = prefs_gpg_account_get_config(account);
547 switch(config->sign_key) {
548 case SIGN_KEY_DEFAULT:
549 debug_print("using default gnupg key\n");
551 case SIGN_KEY_BY_FROM:
552 debug_print("using key for %s\n", signer_addr);
554 case SIGN_KEY_CUSTOM:
555 debug_print("using key for %s\n", config->sign_key_id);
559 if (config->sign_key != SIGN_KEY_DEFAULT) {
561 gpgme_key_t key, found_key;
564 if (config->sign_key == SIGN_KEY_BY_FROM)
566 else if (config->sign_key == SIGN_KEY_CUSTOM)
567 keyid = config->sign_key_id;
572 /* Look for any key, not just private ones, or GPGMe doesn't
573 * correctly set the revoked flag. */
574 err = gpgme_op_keylist_start(ctx, keyid, 0);
575 while ((err = gpgme_op_keylist_next(ctx, &key)) == 0) {
582 if (key->protocol != gpgme_get_protocol(ctx)) {
583 debug_print("skipping a key (wrong protocol %d)\n", key->protocol);
584 gpgme_key_release(key);
589 debug_print("skipping a key, expired");
590 gpgme_key_release(key);
594 debug_print("skipping a key, revoked");
595 gpgme_key_release(key);
599 debug_print("skipping a key, disabled");
600 gpgme_key_release(key);
604 if (found_key != NULL) {
605 gpgme_key_release(key);
606 gpgme_op_keylist_end(ctx);
607 g_warning("ambiguous specification of secret key '%s'\n", keyid);
608 privacy_set_error(_("Secret key specification is ambiguous"));
614 gpgme_op_keylist_end(ctx);
616 if (found_key == NULL) {
617 g_warning("setup_signers start: %s", gpgme_strerror(err));
618 privacy_set_error(_("Secret key not found (%s)"), gpgme_strerror(err));
622 err = gpgme_signers_add(ctx, found_key);
623 debug_print("got key (proto %d (pgp %d, smime %d).\n",
624 found_key->protocol, GPGME_PROTOCOL_OpenPGP,
626 gpgme_key_release(found_key);
629 g_warning("error adding secret key: %s\n",
630 gpgme_strerror(err));
631 privacy_set_error(_("Error setting secret key: %s"),
632 gpgme_strerror(err));
637 prefs_gpg_account_free_config(config);
641 prefs_gpg_account_free_config(config);
647 gchar *ctype_locale = NULL, *messages_locale = NULL;
648 gchar *ctype_utf8_locale = NULL, *messages_utf8_locale = NULL;
650 gpgme_engine_info_t engineInfo;
651 if (gpgme_check_version("1.0.0")) {
653 debug_print("setting gpgme CTYPE locale\n");
655 ctype_locale = g_win32_getlocale();
657 ctype_locale = g_strdup(setlocale(LC_CTYPE, NULL));
660 debug_print("setting gpgme CTYPE locale to: %s\n", ctype_locale);
661 if (strchr(ctype_locale, '.'))
662 *(strchr(ctype_locale, '.')) = '\0';
663 else if (strchr(ctype_locale, '@'))
664 *(strchr(ctype_locale, '@')) = '\0';
665 ctype_utf8_locale = g_strconcat(ctype_locale, ".UTF-8", NULL);
667 debug_print("setting gpgme locale to UTF8: %s\n", ctype_utf8_locale ? ctype_utf8_locale : "NULL");
668 gpgme_set_locale(NULL, LC_CTYPE, ctype_utf8_locale);
670 debug_print("done\n");
671 g_free(ctype_utf8_locale);
672 g_free(ctype_locale);
674 debug_print("couldn't set gpgme CTYPE locale\n");
678 debug_print("setting gpgme MESSAGES locale\n");
680 messages_locale = g_win32_getlocale();
682 messages_locale = g_strdup(setlocale(LC_MESSAGES, NULL));
684 if (messages_locale) {
685 debug_print("setting gpgme MESSAGES locale to: %s\n", messages_locale);
686 if (strchr(messages_locale, '.'))
687 *(strchr(messages_locale, '.')) = '\0';
688 else if (strchr(messages_locale, '@'))
689 *(strchr(messages_locale, '@')) = '\0';
690 messages_utf8_locale = g_strconcat(messages_locale, ".UTF-8", NULL);
691 debug_print("setting gpgme locale to UTF8: %s\n", messages_utf8_locale ? messages_utf8_locale : "NULL");
693 gpgme_set_locale(NULL, LC_MESSAGES, messages_utf8_locale);
695 debug_print("done\n");
696 g_free(messages_utf8_locale);
697 g_free(messages_locale);
699 debug_print("couldn't set gpgme MESSAGES locale\n");
702 if (!gpgme_get_engine_info(&engineInfo)) {
704 debug_print("GpgME Protocol: %s\n"
705 "Version: %s (req %s)\n"
707 gpgme_get_protocol_name(engineInfo->protocol) ? gpgme_get_protocol_name(engineInfo->protocol):"???",
708 engineInfo->version ? engineInfo->version:"???",
709 engineInfo->req_version ? engineInfo->req_version:"???",
710 engineInfo->file_name ? engineInfo->file_name:"???");
711 if (engineInfo->protocol == GPGME_PROTOCOL_OpenPGP
712 && gpgme_engine_check_version(engineInfo->protocol) !=
714 if (engineInfo->file_name && !engineInfo->version) {
715 alertpanel_error(_("Gpgme protocol '%s' is unusable: "
716 "Engine '%s' isn't installed properly."),
717 gpgme_get_protocol_name(engineInfo->protocol),
718 engineInfo->file_name);
719 } else if (engineInfo->file_name && engineInfo->version
720 && engineInfo->req_version) {
721 alertpanel_error(_("Gpgme protocol '%s' is unusable: "
722 "Engine '%s' version %s is installed, "
723 "but version %s is required.\n"),
724 gpgme_get_protocol_name(engineInfo->protocol),
725 engineInfo->file_name,
727 engineInfo->req_version);
729 alertpanel_error(_("Gpgme protocol '%s' is unusable "
730 "(unknown problem)"),
731 gpgme_get_protocol_name(engineInfo->protocol));
734 engineInfo = engineInfo->next;
738 sgpgme_disable_all();
740 if (prefs_gpg_get_config()->gpg_warning) {
743 val = alertpanel_full
745 _("GnuPG is not installed properly, or needs "
747 "OpenPGP support disabled."),
748 GTK_STOCK_CLOSE, NULL, NULL, TRUE, NULL,
749 ALERT_WARNING, G_ALERTDEFAULT);
750 if (val & G_ALERTDISABLE)
751 prefs_gpg_get_config()->gpg_warning = FALSE;
758 gpgmegtk_free_passphrase();
761 void sgpgme_create_secret_key(PrefsAccount *account, gboolean ask_create)
763 AlertValue val = G_ALERTDEFAULT;
764 gchar *key_parms = NULL;
767 gchar *passphrase = NULL, *passphrase_second = NULL;
770 gpgme_error_t err = 0;
772 GtkWidget *window = NULL;
773 gpgme_genkey_result_t key;
776 account = account_get_default();
778 if (account->address == NULL) {
779 alertpanel_error(_("You have to save the account's information with \"OK\" "
780 "before being able to generate a key pair.\n"));
784 val = alertpanel(_("No PGP key found"),
785 _("Claws Mail did not find a secret PGP key, "
786 "which means that you won't be able to sign "
787 "emails or receive encrypted emails.\n"
788 "Do you want to create a new key pair now?"),
789 GTK_STOCK_NO, "+" GTK_STOCK_YES, NULL);
790 if (val == G_ALERTDEFAULT) {
791 prefs_gpg_get_config()->gpg_ask_create_key = FALSE;
792 prefs_gpg_save_config();
798 name = g_strdup(account->name);
800 name = g_strdup(account->address);
802 email = g_strdup(account->address);
803 tmp = g_strdup_printf("%s <%s>", account->name?account->name:account->address, account->address);
805 passphrase = passphrase_mbox(tmp, NULL, prev_bad, 1);
806 if (passphrase == NULL) {
812 passphrase_second = passphrase_mbox(tmp, NULL, 0, 2);
813 if (passphrase_second == NULL) {
820 if (strcmp(passphrase, passphrase_second)) {
822 g_free(passphrase_second);
827 key_parms = g_strdup_printf("<GnupgKeyParms format=\"internal\">\n"
831 "Subkey-Length: 2048\n"
836 "</GnupgKeyParms>\n",
838 strlen(passphrase)?"Passphrase: ":"",
840 strlen(passphrase)?"\n":"");
841 #ifndef G_PLATFORM_WIN32
842 if (mlock(passphrase, strlen(passphrase)) == -1)
843 debug_print("couldn't lock passphrase\n");
844 if (mlock(passphrase_second, strlen(passphrase_second)) == -1)
845 debug_print("couldn't lock passphrase2\n");
850 g_free(passphrase_second);
853 err = gpgme_new (&ctx);
855 alertpanel_error(_("Couldn't generate a new key pair: %s"),
856 gpgme_strerror(err));
862 window = label_window_create(_("Generating your new key pair... Please move the mouse "
863 "around to help generate entropy..."));
865 err = gpgme_op_genkey(ctx, key_parms, NULL, NULL);
868 label_window_destroy(window);
871 alertpanel_error(_("Couldn't generate a new key pair: %s"), gpgme_strerror(err));
875 key = gpgme_op_genkey_result(ctx);
877 alertpanel_error(_("Couldn't generate a new key pair: unknown error"));
881 gchar *buf = g_strdup_printf(_("Your new key pair has been generated. "
882 "Its fingerprint is:\n%s\n\nDo you want to export it "
884 key->fpr ? key->fpr:"null");
885 AlertValue val = alertpanel(_("Key generated"), buf,
886 GTK_STOCK_NO, "+" GTK_STOCK_YES, NULL);
888 if (val == G_ALERTALTERNATE) {
890 gchar *cmd = g_strdup_printf("gpg --no-tty --send-keys %s", key->fpr);
896 } else if (pid == 0) {
899 res = WEXITSTATUS(res);
903 time_t start_wait = time(NULL);
906 if (waitpid(pid, &status, WNOHANG) == 0 || !WIFEXITED(status)) {
909 res = WEXITSTATUS(status);
912 if (time(NULL) - start_wait > 5) {
913 debug_print("SIGTERM'ing gpg\n");
916 if (time(NULL) - start_wait > 6) {
917 debug_print("SIGKILL'ing gpg\n");
924 alertpanel_notice(_("Key exported."));
926 alertpanel_error(_("Couldn't export key."));
930 alertpanel_error(_("Key export isn't implemented in Windows."));
934 prefs_gpg_get_config()->gpg_ask_create_key = FALSE;
935 prefs_gpg_save_config();
939 gboolean sgpgme_has_secret_key(void)
941 gpgme_error_t err = 0;
945 err = gpgme_new (&ctx);
947 debug_print("err : %s\n", gpgme_strerror(err));
951 err = gpgme_op_keylist_start(ctx, NULL, TRUE);
953 err = gpgme_op_keylist_next(ctx, &key);
954 gpgme_op_keylist_end(ctx);
955 if (gpg_err_code(err) == GPG_ERR_EOF) {
956 if (gpgme_get_protocol(ctx) != GPGME_PROTOCOL_CMS) {
957 gpgme_set_protocol(ctx, GPGME_PROTOCOL_CMS);
968 void sgpgme_check_create_key(void)
970 if (prefs_gpg_get_config()->gpg_ask_create_key &&
971 !sgpgme_has_secret_key()) {
972 sgpgme_create_secret_key(NULL, TRUE);
974 prefs_gpg_get_config()->gpg_ask_create_key = FALSE;
975 prefs_gpg_save_config();
979 void *sgpgme_data_release_and_get_mem(gpgme_data_t data, size_t *len)
991 /* I know it's deprecated, but we don't compile with _LARGEFILE */
992 cm_gpgme_data_rewind(data);
993 while ((r = gpgme_data_read(data, buf, BUFSIZ)) > 0) {
994 void *rresult = realloc(result, r + w);
995 if (rresult == NULL) {
996 g_warning("can't allocate memory\n");
1002 memcpy(result+w, buf, r);
1008 gpgme_data_release(data);
1017 gpgme_error_t cm_gpgme_data_rewind(gpgme_data_t dh)
1019 #if defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64
1020 if (gpgme_data_seek(dh, (off_t)0, SEEK_SET) == -1)
1021 return gpg_error_from_errno(errno);
1025 return gpgme_data_rewind(dh);
1029 #endif /* USE_GPGME */