2 * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2014 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));
223 uname = extract_name(key->uids->uid);
225 uname = g_strdup("<?>");
226 switch (gpg_err_code(sig->status)) {
227 case GPG_ERR_NO_ERROR:
228 result = g_strdup_printf(_("Good signature from %s."), uname);
230 case GPG_ERR_SIG_EXPIRED:
231 result = g_strdup_printf(_("Expired signature from %s."), uname);
233 case GPG_ERR_KEY_EXPIRED:
234 result = g_strdup_printf(_("Good signature from %s, but the key has expired."), uname);
236 case GPG_ERR_CERT_REVOKED:
237 result = g_strdup_printf(_("Good signature from %s, but the key has been revoked."), uname);
239 case GPG_ERR_BAD_SIGNATURE:
240 result = g_strdup_printf(_("Bad signature from %s."), uname);
242 case GPG_ERR_NO_PUBKEY: {
243 gchar *id = g_strdup(sig->fpr + strlen(sig->fpr)-8);
244 result = g_strdup_printf(_("Key 0x%s not available to verify this signature."), id);
249 result = g_strdup(_("The signature has not been checked."));
253 result = g_strdup(_("Error"));
258 gchar *sgpgme_sigstat_info_full(gpgme_ctx_t ctx, gpgme_verify_result_t status)
263 gpgme_signature_t sig = NULL;
265 siginfo = g_string_sized_new(64);
266 if (status == NULL) {
267 g_string_append_printf(siginfo,
268 _("Error checking signature: no status\n"));
272 sig = status->signatures;
277 gpgme_user_id_t user = NULL;
280 const gchar *keytype, *keyid, *uid;
282 err = gpgme_get_key(ctx, sig->fpr, &key, 0);
284 if (err != GPG_ERR_NO_ERROR) {
286 g_string_append_printf(siginfo,
287 _("Error checking signature: %s\n"),
288 gpgme_strerror(err));
293 keytype = gpgme_pubkey_algo_name(
294 key->subkeys->pubkey_algo);
295 keyid = key->subkeys->keyid;
303 memset(buf, 0, sizeof(buf));
304 fast_strftime(buf, sizeof(buf)-1, prefs_common_get_prefs()->date_format, localtime_r(&sig->timestamp, <));
305 g_string_append_printf(siginfo,
306 _("Signature made on %s using %s key ID %s\n"),
307 buf, keytype, keyid);
309 switch (gpg_err_code(sig->status)) {
310 case GPG_ERR_NO_ERROR:
311 g_string_append_printf(siginfo,
312 _("Good signature from uid \"%s\" (Validity: %s)\n"),
313 uid, get_validity_str(user?user->validity:GPGME_VALIDITY_UNKNOWN));
315 case GPG_ERR_KEY_EXPIRED:
316 g_string_append_printf(siginfo,
317 _("Expired key uid \"%s\"\n"),
320 case GPG_ERR_SIG_EXPIRED:
321 g_string_append_printf(siginfo,
322 _("Expired signature from uid \"%s\" (Validity: %s)\n"),
323 uid, get_validity_str(user?user->validity:GPGME_VALIDITY_UNKNOWN));
325 case GPG_ERR_CERT_REVOKED:
326 g_string_append_printf(siginfo,
327 _("Revoked key uid \"%s\"\n"),
330 case GPG_ERR_BAD_SIGNATURE:
331 g_string_append_printf(siginfo,
332 _("BAD signature from \"%s\"\n"),
338 if (sig->status != GPG_ERR_BAD_SIGNATURE) {
340 user = user ? user->next : NULL;
341 while (user != NULL) {
342 g_string_append_printf(siginfo,
343 _(" uid \"%s\" (Validity: %s)\n"),
345 user->revoked==TRUE?_("Revoked"):get_validity_str(user->validity));
349 g_string_append_printf(siginfo,_("Owner Trust: %s\n"),
350 get_owner_trust_str(key->owner_trust));
351 g_string_append(siginfo,
352 _("Primary key fingerprint:"));
353 const char* primary_fpr = NULL;
354 if (key && key->subkeys && key->subkeys->fpr)
355 primary_fpr = key->subkeys->fpr;
357 g_string_append(siginfo, " ?");
358 int idx; /* now pretty-print the fingerprint */
359 for (idx=0; primary_fpr && *primary_fpr!='\0'; idx++, primary_fpr++) {
361 g_string_append_c(siginfo, ' ');
363 g_string_append_c(siginfo, ' ');
364 g_string_append_c(siginfo, (gchar)*primary_fpr);
366 g_string_append_c(siginfo, '\n');
367 #ifdef HAVE_GPGME_PKA_TRUST
368 if (sig->pka_trust == 1 && sig->pka_address) {
369 g_string_append_printf(siginfo,
370 _("WARNING: Signer's address \"%s\" "
371 "does not match DNS entry\n"),
374 else if (sig->pka_trust == 2 && sig->pka_address) {
375 g_string_append_printf(siginfo,
376 _("Verified signer's address is \"%s\"\n"),
378 /* FIXME: Compare the address to the
381 #endif /*HAVE_GPGME_PKA_TRUST*/
384 g_string_append(siginfo, "\n");
390 g_string_free(siginfo, FALSE);
394 gpgme_data_t sgpgme_data_from_mimeinfo(MimeInfo *mimeinfo)
396 gpgme_data_t data = NULL;
398 FILE *fp = g_fopen(mimeinfo->data.filename, "rb");
403 err = gpgme_data_new_from_filepart(&data, NULL, fp, mimeinfo->offset, mimeinfo->length);
406 debug_print("data %p (%d %d)\n", (void *)&data, mimeinfo->offset, mimeinfo->length);
408 debug_print ("gpgme_data_new_from_file failed: %s\n",
409 gpgme_strerror (err));
410 privacy_set_error(_("Couldn't get data from message, %s"), gpgme_strerror(err));
416 gpgme_data_t sgpgme_decrypt_verify(gpgme_data_t cipher, gpgme_verify_result_t *status, gpgme_ctx_t ctx)
418 struct passphrase_cb_info_s info;
422 memset (&info, 0, sizeof info);
424 if ((err = gpgme_data_new(&plain)) != GPG_ERR_NO_ERROR) {
426 privacy_set_error(_("Couldn't initialize data, %s"), gpgme_strerror(err));
430 if (gpgme_get_protocol(ctx) == GPGME_PROTOCOL_OpenPGP) {
431 prefs_gpg_enable_agent(prefs_gpg_get_config()->use_gpg_agent);
432 if (!getenv("GPG_AGENT_INFO") || !prefs_gpg_get_config()->use_gpg_agent) {
434 gpgme_set_passphrase_cb (ctx, gpgmegtk_passphrase_cb, &info);
437 prefs_gpg_enable_agent(TRUE);
439 gpgme_set_passphrase_cb (ctx, NULL, &info);
443 if (gpgme_get_protocol(ctx) == GPGME_PROTOCOL_OpenPGP) {
444 err = gpgme_op_decrypt_verify(ctx, cipher, plain);
445 if (err != GPG_ERR_NO_ERROR) {
446 debug_print("can't decrypt (%s)\n", gpgme_strerror(err));
447 privacy_set_error("%s", gpgme_strerror(err));
448 gpgmegtk_free_passphrase();
449 gpgme_data_release(plain);
453 err = cm_gpgme_data_rewind(plain);
455 debug_print("can't seek (%d %d %s)\n", err, errno, strerror(errno));
458 debug_print("decrypted.\n");
459 *status = gpgme_op_verify_result (ctx);
461 err = gpgme_op_decrypt(ctx, cipher, plain);
462 if (err != GPG_ERR_NO_ERROR) {
463 debug_print("can't decrypt (%s)\n", gpgme_strerror(err));
464 privacy_set_error("%s", gpgme_strerror(err));
465 gpgmegtk_free_passphrase();
466 gpgme_data_release(plain);
470 err = cm_gpgme_data_rewind(plain);
472 debug_print("can't seek (%d %d %s)\n", err, errno, strerror(errno));
475 debug_print("decrypted.\n");
476 *status = gpgme_op_verify_result (ctx);
481 gchar *sgpgme_get_encrypt_data(GSList *recp_names, gpgme_protocol_t proto)
483 SelectionResult result = KEY_SELECTION_CANCEL;
484 gpgme_key_t *keys = gpgmegtk_recipient_selection(recp_names, &result,
490 if (result == KEY_SELECTION_DONT)
491 return g_strdup("_DONT_ENCRYPT_");
496 gpgme_subkey_t skey = keys[i]->subkeys;
497 gchar *fpr = skey->fpr;
499 debug_print("adding %s\n", fpr);
500 tmp = g_strconcat(ret?ret:"", fpr, " ", NULL);
508 gboolean sgpgme_setup_signers(gpgme_ctx_t ctx, PrefsAccount *account,
509 const gchar *from_addr)
511 GPGAccountConfig *config;
512 const gchar *signer_addr = account->address;
514 gpgme_signers_clear(ctx);
517 signer_addr = from_addr;
518 config = prefs_gpg_account_get_config(account);
520 switch(config->sign_key) {
521 case SIGN_KEY_DEFAULT:
522 debug_print("using default gnupg key\n");
524 case SIGN_KEY_BY_FROM:
525 debug_print("using key for %s\n", signer_addr);
527 case SIGN_KEY_CUSTOM:
528 debug_print("using key for %s\n", config->sign_key_id);
532 if (config->sign_key != SIGN_KEY_DEFAULT) {
534 gpgme_key_t key, found_key;
537 if (config->sign_key == SIGN_KEY_BY_FROM)
539 else if (config->sign_key == SIGN_KEY_CUSTOM)
540 keyid = config->sign_key_id;
545 /* Look for any key, not just private ones, or GPGMe doesn't
546 * correctly set the revoked flag. */
547 err = gpgme_op_keylist_start(ctx, keyid, 0);
548 while ((err = gpgme_op_keylist_next(ctx, &key)) == 0) {
555 if (key->protocol != gpgme_get_protocol(ctx)) {
556 debug_print("skipping a key (wrong protocol %d)\n", key->protocol);
557 gpgme_key_release(key);
562 debug_print("skipping a key, expired");
563 gpgme_key_release(key);
567 debug_print("skipping a key, revoked");
568 gpgme_key_release(key);
572 debug_print("skipping a key, disabled");
573 gpgme_key_release(key);
577 if (found_key != NULL) {
578 gpgme_key_release(key);
579 gpgme_op_keylist_end(ctx);
580 g_warning("ambiguous specification of secret key '%s'\n", keyid);
581 privacy_set_error(_("Secret key specification is ambiguous"));
587 gpgme_op_keylist_end(ctx);
589 if (found_key == NULL) {
590 g_warning("setup_signers start: %s", gpgme_strerror(err));
591 privacy_set_error(_("Secret key not found (%s)"), gpgme_strerror(err));
595 err = gpgme_signers_add(ctx, found_key);
596 debug_print("got key (proto %d (pgp %d, smime %d).\n",
597 found_key->protocol, GPGME_PROTOCOL_OpenPGP,
599 gpgme_key_release(found_key);
602 g_warning("error adding secret key: %s\n",
603 gpgme_strerror(err));
604 privacy_set_error(_("Error setting secret key: %s"),
605 gpgme_strerror(err));
610 prefs_gpg_account_free_config(config);
614 prefs_gpg_account_free_config(config);
620 gchar *ctype_locale = NULL, *messages_locale = NULL;
621 gchar *ctype_utf8_locale = NULL, *messages_utf8_locale = NULL;
623 gpgme_engine_info_t engineInfo;
624 if (gpgme_check_version("1.0.0")) {
626 debug_print("setting gpgme CTYPE locale\n");
628 ctype_locale = g_win32_getlocale();
630 ctype_locale = g_strdup(setlocale(LC_CTYPE, NULL));
633 debug_print("setting gpgme CTYPE locale to: %s\n", ctype_locale);
634 if (strchr(ctype_locale, '.'))
635 *(strchr(ctype_locale, '.')) = '\0';
636 else if (strchr(ctype_locale, '@'))
637 *(strchr(ctype_locale, '@')) = '\0';
638 ctype_utf8_locale = g_strconcat(ctype_locale, ".UTF-8", NULL);
640 debug_print("setting gpgme locale to UTF8: %s\n", ctype_utf8_locale ? ctype_utf8_locale : "NULL");
641 gpgme_set_locale(NULL, LC_CTYPE, ctype_utf8_locale);
643 debug_print("done\n");
644 g_free(ctype_utf8_locale);
645 g_free(ctype_locale);
647 debug_print("couldn't set gpgme CTYPE locale\n");
651 debug_print("setting gpgme MESSAGES locale\n");
653 messages_locale = g_win32_getlocale();
655 messages_locale = g_strdup(setlocale(LC_MESSAGES, NULL));
657 if (messages_locale) {
658 debug_print("setting gpgme MESSAGES locale to: %s\n", messages_locale);
659 if (strchr(messages_locale, '.'))
660 *(strchr(messages_locale, '.')) = '\0';
661 else if (strchr(messages_locale, '@'))
662 *(strchr(messages_locale, '@')) = '\0';
663 messages_utf8_locale = g_strconcat(messages_locale, ".UTF-8", NULL);
664 debug_print("setting gpgme locale to UTF8: %s\n", messages_utf8_locale ? messages_utf8_locale : "NULL");
666 gpgme_set_locale(NULL, LC_MESSAGES, messages_utf8_locale);
668 debug_print("done\n");
669 g_free(messages_utf8_locale);
670 g_free(messages_locale);
672 debug_print("couldn't set gpgme MESSAGES locale\n");
675 if (!gpgme_get_engine_info(&engineInfo)) {
677 debug_print("GpgME Protocol: %s\n"
678 "Version: %s (req %s)\n"
680 gpgme_get_protocol_name(engineInfo->protocol) ? gpgme_get_protocol_name(engineInfo->protocol):"???",
681 engineInfo->version ? engineInfo->version:"???",
682 engineInfo->req_version ? engineInfo->req_version:"???",
683 engineInfo->file_name ? engineInfo->file_name:"???");
684 if (engineInfo->protocol == GPGME_PROTOCOL_OpenPGP
685 && gpgme_engine_check_version(engineInfo->protocol) !=
687 if (engineInfo->file_name && !engineInfo->version) {
688 alertpanel_error(_("Gpgme protocol '%s' is unusable: "
689 "Engine '%s' isn't installed properly."),
690 gpgme_get_protocol_name(engineInfo->protocol),
691 engineInfo->file_name);
692 } else if (engineInfo->file_name && engineInfo->version
693 && engineInfo->req_version) {
694 alertpanel_error(_("Gpgme protocol '%s' is unusable: "
695 "Engine '%s' version %s is installed, "
696 "but version %s is required.\n"),
697 gpgme_get_protocol_name(engineInfo->protocol),
698 engineInfo->file_name,
700 engineInfo->req_version);
702 alertpanel_error(_("Gpgme protocol '%s' is unusable "
703 "(unknown problem)"),
704 gpgme_get_protocol_name(engineInfo->protocol));
707 engineInfo = engineInfo->next;
711 sgpgme_disable_all();
713 if (prefs_gpg_get_config()->gpg_warning) {
716 val = alertpanel_full
718 _("GnuPG is not installed properly, or needs "
720 "OpenPGP support disabled."),
721 GTK_STOCK_CLOSE, NULL, NULL, TRUE, NULL,
722 ALERT_WARNING, G_ALERTDEFAULT);
723 if (val & G_ALERTDISABLE)
724 prefs_gpg_get_config()->gpg_warning = FALSE;
731 gpgmegtk_free_passphrase();
734 void sgpgme_create_secret_key(PrefsAccount *account, gboolean ask_create)
736 AlertValue val = G_ALERTDEFAULT;
737 gchar *key_parms = NULL;
740 gchar *passphrase = NULL, *passphrase_second = NULL;
743 gpgme_error_t err = 0;
745 GtkWidget *window = NULL;
746 gpgme_genkey_result_t key;
749 account = account_get_default();
751 if (account->address == NULL) {
752 alertpanel_error(_("You have to save the account's information with \"OK\" "
753 "before being able to generate a key pair.\n"));
757 val = alertpanel(_("No PGP key found"),
758 _("Claws Mail did not find a secret PGP key, "
759 "which means that you won't be able to sign "
760 "emails or receive encrypted emails.\n"
761 "Do you want to create a new key pair now?"),
762 GTK_STOCK_NO, "+" GTK_STOCK_YES, NULL);
763 if (val == G_ALERTDEFAULT) {
764 prefs_gpg_get_config()->gpg_ask_create_key = FALSE;
765 prefs_gpg_save_config();
771 name = g_strdup(account->name);
773 name = g_strdup(account->address);
775 email = g_strdup(account->address);
776 tmp = g_strdup_printf("%s <%s>", account->name?account->name:account->address, account->address);
778 passphrase = passphrase_mbox(tmp, NULL, prev_bad, 1);
779 if (passphrase == NULL) {
785 passphrase_second = passphrase_mbox(tmp, NULL, 0, 2);
786 if (passphrase_second == NULL) {
793 if (strcmp(passphrase, passphrase_second)) {
795 g_free(passphrase_second);
800 key_parms = g_strdup_printf("<GnupgKeyParms format=\"internal\">\n"
804 "Subkey-Length: 2048\n"
809 "</GnupgKeyParms>\n",
811 strlen(passphrase)?"Passphrase: ":"",
813 strlen(passphrase)?"\n":"");
814 #ifndef G_PLATFORM_WIN32
815 if (mlock(passphrase, strlen(passphrase)) == -1)
816 debug_print("couldn't lock passphrase\n");
817 if (mlock(passphrase_second, strlen(passphrase_second)) == -1)
818 debug_print("couldn't lock passphrase2\n");
823 g_free(passphrase_second);
826 err = gpgme_new (&ctx);
828 alertpanel_error(_("Couldn't generate a new key pair: %s"),
829 gpgme_strerror(err));
835 window = label_window_create(_("Generating your new key pair... Please move the mouse "
836 "around to help generate entropy..."));
838 err = gpgme_op_genkey(ctx, key_parms, NULL, NULL);
841 label_window_destroy(window);
844 alertpanel_error(_("Couldn't generate a new key pair: %s"), gpgme_strerror(err));
848 key = gpgme_op_genkey_result(ctx);
850 alertpanel_error(_("Couldn't generate a new key pair: unknown error"));
854 gchar *buf = g_strdup_printf(_("Your new key pair has been generated. "
855 "Its fingerprint is:\n%s\n\nDo you want to export it "
857 key->fpr ? key->fpr:"null");
858 AlertValue val = alertpanel(_("Key generated"), buf,
859 GTK_STOCK_NO, "+" GTK_STOCK_YES, NULL);
861 if (val == G_ALERTALTERNATE) {
863 gchar *cmd = g_strdup_printf("gpg --no-tty --send-keys %s", key->fpr);
869 } else if (pid == 0) {
872 res = WEXITSTATUS(res);
876 time_t start_wait = time(NULL);
879 if (waitpid(pid, &status, WNOHANG) == 0 || !WIFEXITED(status)) {
882 res = WEXITSTATUS(status);
885 if (time(NULL) - start_wait > 5) {
886 debug_print("SIGTERM'ing gpg\n");
889 if (time(NULL) - start_wait > 6) {
890 debug_print("SIGKILL'ing gpg\n");
897 alertpanel_notice(_("Key exported."));
899 alertpanel_error(_("Couldn't export key."));
903 alertpanel_error(_("Key export isn't implemented in Windows."));
907 prefs_gpg_get_config()->gpg_ask_create_key = FALSE;
908 prefs_gpg_save_config();
912 gboolean sgpgme_has_secret_key(void)
914 gpgme_error_t err = 0;
918 err = gpgme_new (&ctx);
920 debug_print("err : %s\n", gpgme_strerror(err));
924 err = gpgme_op_keylist_start(ctx, NULL, TRUE);
926 err = gpgme_op_keylist_next(ctx, &key);
927 gpgme_op_keylist_end(ctx);
928 if (gpg_err_code(err) == GPG_ERR_EOF) {
929 if (gpgme_get_protocol(ctx) != GPGME_PROTOCOL_CMS) {
930 gpgme_set_protocol(ctx, GPGME_PROTOCOL_CMS);
941 void sgpgme_check_create_key(void)
943 if (prefs_gpg_get_config()->gpg_ask_create_key &&
944 !sgpgme_has_secret_key()) {
945 sgpgme_create_secret_key(NULL, TRUE);
947 prefs_gpg_get_config()->gpg_ask_create_key = FALSE;
948 prefs_gpg_save_config();
952 void *sgpgme_data_release_and_get_mem(gpgme_data_t data, size_t *len)
964 /* I know it's deprecated, but we don't compile with _LARGEFILE */
965 cm_gpgme_data_rewind(data);
966 while ((r = gpgme_data_read(data, buf, BUFSIZ)) > 0) {
967 result = realloc(result, r + w);
968 if (result == NULL) {
969 g_warning("can't allocate memory\n");
972 memcpy(result+w, buf, r);
978 gpgme_data_release(data);
987 gpgme_error_t cm_gpgme_data_rewind(gpgme_data_t dh)
989 #if defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64
990 if (gpgme_data_seek(dh, (off_t)0, SEEK_SET) == -1)
991 return gpg_error_from_errno(errno);
995 return gpgme_data_rewind(dh);
999 #endif /* USE_GPGME */