/[winpt]/trunk/Src/wptKeyManager.cpp
ViewVC logotype

Contents of /trunk/Src/wptKeyManager.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 175 - (show annotations)
Tue Feb 7 08:58:04 2006 UTC (19 years ago) by twoaday
File size: 26136 byte(s)
2006-02-04  Timo Schulz  <ts@g10code.de>
                                                                                                                            
        * wptKeyManagerDlg.cpp (keymanager_dlg_proc): Check for
        at least one ultimately trusted key.
        * wptKeyManager.cpp (km_refresh_key_from_keyserver):
        Only check inet connection if we refresh all keys.
        * wptGPGUtil.cpp (gpg_extract_keys): New.
        * wptClipEncryptDlg.cpp (clip_encrypt_dlg_proc): Use textmode.
        * wptClipSignEncDlg.cpp (clip_signenc_dlg_proc): Likewise.
        * wptClipSignDlg.cpp (get_selected_key): New.
        (one_key_proc): Use it here.
        (count_useable_seckeys): New.
        * wptSigTreeDlg.cpp (sigtree_dlg_proc): New.
        * wptKeyEditDlgs.cpp (diff_time): Removed.
        (w32_mktime): New.
        (keyedit_addsubkey_dlg_proc): Use it here.
                                                                                                                            
2006-02-02  Timo Schulz  <ts@g10code.de>
                                                                                                                            
        * wptW32API.cpp (get_temp_name): New.
        * wptKeyserver.cpp (ldap_recvkey): Use it here.
        * wptKeyPropsDlg.cpp (get_photo_tmpname): Likewise.
        * wptGPGUtil.cpp (create_tempfile): Likewise.
        * wptImportList.cpp (implist_load): Likewise.
        * wptKeyCache.cpp (parse_attr_data): Likewise.
        (w32_tempfile): Removed.
        * wptGPGME.cpp (check_ultimate_trusted_key): New.
                                                                                                                            

1 /* wptKeyManager.cpp - Handy functions for the Key Manager dialog
2 * Copyright (C) 2001-2006 Timo Schulz
3 * Copyright (C) 2005 g10 Code GmbH
4 *
5 * This file is part of WinPT.
6 *
7 * WinPT is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * WinPT is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with WinPT; if not, write to the Free Software Foundation,
19 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <windows.h>
27 #include <commctrl.h>
28 #include <stdio.h>
29
30 #include "gpgme.h"
31 #include "resource.h"
32 #include "wptTypes.h"
33 #include "wptW32API.h"
34 #include "wptVersion.h"
35 #include "wptCommonCtl.h"
36 #include "wptNLS.h"
37 #include "wptErrors.h"
38 #include "wptContext.h"
39 #include "wptGPG.h"
40 #include "wptKeylist.h"
41 #include "wptFileManager.h"
42 #include "wptDlgs.h"
43 #include "wptKeyserver.h"
44 #include "wptKeyManager.h"
45 #include "wptKeylist.h"
46 #include "wptHTTP.h"
47 #include "wptKeyEdit.h"
48 #include "wptImport.h"
49 #include "wptCrypto.h"
50 #include "wptUTF8.h"
51 #include "wptGPGME.h"
52
53
54 /* Macros to change the cursor */
55 #define op_begin() SetCursor (LoadCursor (NULL, IDC_WAIT))
56 #define op_end() SetCursor (LoadCursor (NULL, IDC_ARROW))
57
58
59 /* Return a user friendly key representation in @buf of
60 the key given by @keyid. */
61 static void
62 key_get_clip_info (const char *keyid, char *buf, size_t buflen)
63 {
64 gpgme_key_t pk;
65 char *uid;
66
67 if (get_pubkey (keyid, &pk))
68 BUG (NULL);
69 uid = utf8_to_wincp2 (pk->uids->uid);
70 _snprintf (buf, buflen-1,
71 "pub %04d%s/%s %s %s\r\n"
72 " Primary key fingerprint: %s\r\n",
73 pk->subkeys->length,
74 get_key_pubalgo2 (pk->subkeys->pubkey_algo),
75 pk->subkeys->keyid+8,
76 get_key_created (pk->subkeys->timestamp),
77 uid,
78 get_key_fpr (pk));
79 safe_free (uid);
80 }
81
82
83 /* Return a general description of the key @key. */
84 char*
85 km_key_get_info (gpgme_key_t pk, int is_sec)
86 {
87 const char *fmt = "%s %04d%s/0x%s %s\n \"%s\"";
88 char *p, *uid;
89 int n;
90
91 n = strlen (fmt) + 8 + 2 + 16 + 12 + strlen (pk->uids->uid) + 32;
92 p = new char[n+1];
93 if (!p)
94 BUG (NULL);
95 uid = utf8_to_wincp2 (pk->uids->uid);
96 _snprintf (p, n, fmt, is_sec? "sec" : "pub",
97 pk->subkeys->length,
98 get_key_pubalgo2 (pk->subkeys->pubkey_algo),
99 pk->subkeys->keyid+8, get_key_created (pk->subkeys->timestamp),
100 uid);
101 safe_free (uid);
102 return p;
103 }
104
105
106 #if 0
107 /* Quoted the user-id given by @uid. If @uid is already
108 quoted @uid is returned without any modifications.
109 Return value: quoted @uid. */
110 char*
111 km_quote_uid (const char *uid)
112 {
113 char *q;
114
115 if (*uid == '"' && uid[strlen (uid)-1] == '"')
116 return m_strdup (uid);
117 q = new char[strlen (uid) + 4];
118 if (!q)
119 BUG (NULL);
120 _snprintf (q, strlen (uid) + 3, "\"%s\"", uid);
121 return q;
122 }
123 #endif
124
125
126 /* Check if list view @lv contains a secret key at position @pos.
127 If utrust is valid, set it to 1 if the key is valid -1 otherwise.
128 Return value: 1 normal key, 2 smart card key. */
129 int
130 km_check_for_seckey (listview_ctrl_t lv, int pos, int *utrust)
131 {
132 gpgme_key_t key;
133 winpt_key_s sk;
134 int type = 0;
135
136 key = (gpgme_key_t)listview_get_item2 (lv, pos);
137 if (!key)
138 BUG (NULL);
139 if (utrust)
140 *utrust = 0;
141 memset (&sk, 0, sizeof (sk));
142 if (!winpt_get_seckey (key->subkeys->keyid+8, &sk))
143 type = 1;
144 if (sk.ext && sk.ext->gloflags.divert_to_card)
145 type = 2;
146 if (utrust && (key->expired || key->revoked))
147 *utrust = -1;
148 else if (utrust && key->owner_trust == GPGME_VALIDITY_ULTIMATE)
149 *utrust = 1;
150 return type;
151 }
152
153
154 /* Check if the key at position @pos is protected with a passwd. */
155 int
156 km_check_if_protected (listview_ctrl_t lv, int pos)
157 {
158 gpgme_key_t key;
159 winpt_key_s k;
160
161 key = (gpgme_key_t)listview_get_item2 (lv, pos);
162 if (!key)
163 return 1; /* assume yes */
164 winpt_get_pubkey (key->subkeys->keyid, &k);
165 return k.is_protected;
166 }
167
168
169 /* Check if the key has a good status.
170 Return value: 0 on success. */
171 int
172 km_check_key_status (listview_ctrl_t lv, int pos)
173 {
174 int flags = km_get_key_status (lv, pos);
175
176 if (flags & KM_FLAG_EXPIRED) {
177 msg_box (lv->ctrl, _("This key has expired!\n"
178 "Key check failed."), _("Key Manager"), MB_ERR);
179 return -1;
180 }
181 else if (flags & KM_FLAG_REVOKED) {
182 msg_box (lv->ctrl, _("This key has been revoked by its owner!\n"
183 "Key check failed."), _("Key Manager"), MB_ERR);
184 return -1;
185 }
186
187 return 0;
188 }
189
190
191 /* Return all key flags ORed. */
192 int
193 km_get_key_status (listview_ctrl_t lv, int pos)
194 {
195 gpgme_key_t key;
196 int flags = 0;
197
198 if (pos == -1)
199 return 0;
200 key = (gpgme_key_t)listview_get_item2 (lv, pos);
201 if (key == NULL)
202 return 0;
203
204 if (key->expired)
205 flags |= KM_FLAG_EXPIRED;
206 if (key->revoked)
207 flags |= KM_FLAG_REVOKED;
208 if (key->disabled)
209 flags |= KM_FLAG_DISABLED;
210 return flags;
211 }
212
213
214 /* Interface to enable or disable a key (@enable = 1 then enable).
215 The key is retrieved from a list control @lv at the pos @pos. */
216 int
217 km_enable_disable_key (listview_ctrl_t lv, HWND dlg, int pos, int enable)
218 {
219 gpgme_error_t err;
220 gpgme_key_t key;
221 GpgKeyEdit *ke;
222
223 key = (gpgme_key_t)listview_get_item2 (lv, pos);
224 if (!key)
225 BUG (NULL);
226 ke = new GpgKeyEdit (key->subkeys->keyid);
227 if (!ke)
228 BUG (NULL);
229
230 err = enable? ke->enable () : ke->disable ();
231 if (!err)
232 show_msg (dlg, 1500, _("Key status changed."));
233 else
234 msg_box (dlg, gpgme_strerror (err), _("Key Manager"), MB_ERR);
235 delete ke;
236 return err? WPTERR_GENERAL : 0;
237 }
238
239
240
241 /* Create a string that contain all keyids from
242 the key list @rset separated by a space. */
243 char*
244 gpg_keylist_to_pattern (gpgme_key_t *rset, int n)
245 {
246 char *p;
247 int i;
248
249 if (!n)
250 return NULL;
251 p = (char *)calloc (1, n*(16+1)+n+2);
252 if (!p)
253 BUG (NULL);
254 for (i=0; i < n; i++) {
255 strcat (p, rset[i]->subkeys->keyid);
256 strcat (p, " ");
257 }
258 return p;
259 }
260
261
262 /* Export the keys given in @rset to the clipboard.
263 Return value: 0 on success. */
264 static gpgme_error_t
265 gpg_clip_export (gpgme_key_t *rset, int n)
266 {
267 gpgme_error_t err = 0;
268 gpgme_ctx_t ctx = NULL;
269 gpgme_data_t keydata = NULL;
270 char *patt=NULL;
271
272 err = gpgme_new (&ctx);
273 if (err)
274 return err;
275 gpgme_set_armor (ctx, 1);
276 err = gpgme_data_new (&keydata);
277 if (err)
278 goto leave;
279
280 patt = gpg_keylist_to_pattern (rset, n);
281 if (!patt) {
282 err = gpg_error (GPG_ERR_ENOMEM);
283 goto leave;
284 }
285
286 err = gpgme_op_export (ctx, patt, 0, keydata);
287 if (err)
288 goto leave;
289
290 gpg_data_release_and_set_clipboard (keydata, 1);
291
292 leave:
293 if (patt)
294 free (patt);
295 gpgme_release (ctx);
296 return err;
297 }
298
299
300 /* Export the selected keys in @lv to the clipboard. */
301 int
302 km_clip_export (HWND dlg, listview_ctrl_t lv)
303 {
304 gpgme_error_t err;
305 gpgme_key_t *rset;
306 char buf[256];
307 int n=0;
308 int rc=0;
309
310 rset = keylist_enum_recipients (lv, KEYLIST_LIST, &n);
311 if (!n) {
312 msg_box (dlg, _("No key was selected for export."),
313 _("Key Manager"), MB_ERR);
314 rc = WPTERR_GENERAL;
315 goto leave;
316 }
317
318 err = gpg_clip_export (rset, n);
319 if (err) {
320 msg_box( dlg, gpgme_strerror (err), _("Key Manager"), MB_ERR);
321 rc = WPTERR_GENERAL;
322 goto leave;
323 }
324 if (n == 1) {
325 key_get_clip_info (rset[0]->subkeys->keyid, buf, sizeof (buf)-1);
326 set_clip_text2 (NULL, buf, strlen (buf), 0);
327 }
328
329 show_msg (dlg, 1500, _("GnuPG Status: Finished"));
330
331 leave:
332 free (rset);
333 return rc;
334 }
335
336
337 /* Export the selected secret key from @lv into @fname.
338 It is only allowed to export a single secret key. */
339 int
340 km_privkey_export (HWND dlg, listview_ctrl_t lv, const char *fname)
341 {
342 gpgme_key_t *rset;
343 gpgme_error_t err;
344 int n = 0;
345
346 rset = keylist_enum_recipients (lv, KEYLIST_LIST, &n);
347 if (!n) {
348 msg_box (dlg, _("No key was selected for export."),
349 _("Key Manager"), MB_ERR);
350 return WPTERR_GENERAL;
351 }
352 if (n > 1) {
353 msg_box (dlg, _("Only one secret key can be exported."),
354 _("Key Manager"), MB_ERR);
355 free (rset);
356 return 0; /* we checked this before, so we just quit */
357 }
358
359 err = gpg_export_seckey (rset[0]->subkeys->keyid, fname);
360 if (err)
361 msg_box (dlg, gpgme_strerror (err), _("Key Manager"), MB_ERR);
362 else
363 log_box (_("Key Manager"), MB_OK,
364 _("Secret key successfully saved in '%s'."), fname);
365
366 free (rset);
367 return err? WPTERR_GENERAL : 0;
368 }
369
370
371 /* Export the selected recipients from @lv into the file @fname. */
372 int
373 km_file_export (HWND dlg, listview_ctrl_t lv, const char *fname)
374 {
375 GPGME *ctx;
376 gpgme_key_t *rset;
377 gpgme_error_t err;
378 char *patt;
379 int n;
380
381 rset = keylist_enum_recipients (lv, KEYLIST_LIST, &n);
382 if (!n) {
383 msg_box (dlg, _("No key was selected for export."),
384 _("Key Manager"), MB_ERR);
385 return WPTERR_GENERAL;
386 }
387 patt = gpg_keylist_to_pattern (rset, n);
388
389 ctx = new GPGME ();
390 ctx->setArmor (true);
391 err = ctx->exportToFile (patt, fname);
392 if (err) {
393 msg_box (dlg, gpgme_strerror (err), _("Key Manager"), MB_ERR);
394 goto leave;
395 }
396 else
397 log_box (_("Key Manager"), MB_OK,
398 _("Key(s) successfully saved in '%s'."), fname);
399
400 leave:
401 delete ctx;
402 safe_free (patt);
403 return (int)err;
404 }
405
406
407 /* Read a dash escaped key from the clipboard
408 unescape it and write it back. */
409 static int
410 extract_dash_escaped_key (void)
411 {
412 gpgme_data_t inp, plain;
413 gpgme_error_t err;
414
415 err = gpg_data_new_from_clipboard (&inp, 0);
416 if (err) {
417 msg_box (NULL, gpgme_strerror (err), _("Key Manager"), MB_ERR);
418 return -1;
419 }
420 gpg_data_extract_plaintext (inp, &plain);
421 gpg_data_release_and_set_clipboard (plain, 0);
422 gpgme_data_release (inp);
423
424 return 0;
425 }
426
427
428 /* Import the PGP key data from the clipboard.
429 Return value: 0 on success. */
430 static gpgme_error_t
431 gpg_op_clip_import (gpgme_ctx_t ctx)
432 {
433 gpgme_error_t err = 0;
434 gpgme_data_t keydata = NULL;
435
436 err = gpg_data_new_from_clipboard (&keydata, 0);
437 if (!err)
438 err = gpgme_op_import (ctx, keydata);
439
440 gpgme_data_release (keydata);
441 return err;
442 }
443
444 /* Import keys from the clipboard. */
445 int
446 km_clip_import (HWND dlg, int *r_newkeys, int *r_newsks)
447 {
448 gpgme_error_t err;
449 gpgme_ctx_t ctx = NULL;
450 gpgme_import_result_t res;
451 fm_state_s fm_stat;
452 int pgptype;
453 int id, has_data = 0;
454 int new_keys = 0, new_sks = 0;
455
456 if (!gpg_clip_istext_avail (&has_data) && !has_data) {
457 msg_box (dlg, winpt_strerror (WPTERR_CLIP_ISEMPTY),
458 _("Key Manager"), MB_ERR);
459 return WPTERR_CLIP_ISEMPTY;
460 }
461 err = gpg_clip_is_secured (&pgptype, &has_data);
462 if (err)
463 msg_box (dlg, gpgme_strerror (err), _("Key Manager"), MB_ERR);
464 if (!has_data) {
465 msg_box (dlg, _("No valid OpenPGP data found."),
466 _("Key Manager"), MB_ERR);
467 return WPTERR_NODATA;
468 }
469 if (!(pgptype & PGP_PUBKEY) && !(pgptype & PGP_SECKEY)) {
470 msg_box (dlg, _("No valid OpenPGP keys found."),
471 _("Key Manager"), MB_ERR);
472 return WPTERR_NODATA;
473 }
474 if (pgptype & PGP_DASH_ESCAPED) {
475 id = msg_box (dlg, _("The key you want to import is dash escacped.\n"
476 "Do you want to extract the key?"),
477 _("Key Manager"), MB_YESNO);
478 if (id == IDYES)
479 extract_dash_escaped_key ();
480 else
481 msg_box (dlg, _("Cannot import dash escaped OpenPGP keys."),
482 _("Key Manager"), MB_INFO);
483 }
484
485 memset (&fm_stat, 0, sizeof (fm_stat));
486 fm_stat.opaque = m_strdup ("Clipboard");
487 fm_stat.import.is_clip = 1;
488 has_data = dialog_box_param (glob_hinst, (LPCSTR)IDD_WINPT_IMPORT, dlg,
489 file_import_dlg_proc, (LPARAM)&fm_stat,
490 _("Key Import"), IDS_WINPT_IMPORT);
491 if (!has_data)
492 goto leave;
493
494 err = gpgme_new (&ctx);
495 if (err)
496 BUG (NULL);
497 op_begin ();
498 err = gpg_op_clip_import (ctx);
499 op_end ();
500 if (err) {
501 msg_box (dlg, gpgme_strerror (err), _("Import"), MB_ERR);
502 goto leave;
503 }
504
505 res = gpgme_op_import_result (ctx);
506 print_import_status (res);
507 new_keys = res->considered - res->unchanged;
508 new_sks = res->secret_imported - res->secret_unchanged;
509 if (res->no_user_id > 0) {
510 msg_box (dlg, _("Key without a self signature was dectected!\n"
511 "(This key is NOT usable for encryption, etc)\n"),
512 _("Import"), MB_WARN);
513 }
514
515 leave:
516 if (ctx)
517 gpgme_release (ctx);
518 free_if_alloc (fm_stat.opaque);
519 if (r_newkeys)
520 *r_newkeys = new_keys;
521 if (r_newsks)
522 *r_newsks = new_sks;
523 if (!new_keys || !has_data)
524 return WPTERR_NODATA;
525 return (int)err;
526 }
527
528
529 /* Import a key from the http URL @url. */
530 int
531 km_http_import (HWND dlg, const char *url)
532 {
533 http_hd_t hd;
534 FILE *fp;
535 char tmpfile[500];
536 int statcode;
537 int rc = 0;
538
539 if (strncmp (url, "http://", 7)) {
540 log_box (_("Key Import HTTP"), MB_ERR, _("Invalid HTTP URL: %s"), url);
541 return WPTERR_GENERAL;
542 }
543
544 get_temp_name (tmpfile, sizeof (tmpfile), "winpt_file_http.tmp");
545 fp = fopen (tmpfile, "wb");
546 if (!fp) {
547 log_box (_("Key Import HTTP"), MB_ERR, "%s: %s", tmpfile,
548 winpt_strerror (WPTERR_FILE_CREAT));
549 return WPTERR_FILE_CREAT;
550 }
551
552 /* parse URL */
553 rc = http_send_request2 (url, &hd);
554 if (!rc)
555 rc = http_parse_response (hd, &statcode);
556 if (!rc)
557 rc = http_parse_data (hd, fp);
558 http_hd_free (hd);
559 fclose (fp);
560 if (rc) {
561 msg_box (dlg, winpt_strerror (rc), _("Key Import HTTP"), MB_ERR);
562 rc = WPTERR_GENERAL;
563 }
564 km_file_import (dlg, tmpfile, NULL, NULL);
565 DeleteFile (tmpfile);
566 return rc;
567 }
568
569
570 /* Import a key from the given file @fname, if @fname is
571 NULL use the common 'file open' dialog.
572 On success an import statistics dialog is shown. */
573 int
574 km_file_import (HWND dlg, const char *fname, int *r_newkeys, int *r_newsks)
575 {
576 gpgme_data_t keydata = NULL;
577 gpgme_ctx_t ctx;
578 gpgme_error_t err;
579 fm_state_s fm_stat;
580 gpgme_import_result_t res;
581 const char *name;
582 int no_data = 0;
583 int new_keys = 0, new_sks = 0;
584
585 if (!fname) {
586 name = get_fileopen_dlg (dlg, _("Choose Name of the Key File"),
587 NULL, NULL);
588 if (!name)
589 return WPTERR_GENERAL;
590 }
591 else
592 name = fname;
593
594 memset (&fm_stat, 0, sizeof (fm_stat));
595 fm_stat.opaque = m_strdup (name);
596
597 dialog_box_param (glob_hinst, (LPCSTR)IDD_WINPT_IMPORT, dlg,
598 file_import_dlg_proc, (LPARAM)&fm_stat,
599 _("File Import"), IDS_WINPT_IMPORT);
600 if (fm_stat.cancel == 1) {
601 free_if_alloc (fm_stat.opaque);
602 return WPTERR_GENERAL;
603 }
604
605 err = gpgme_new (&ctx);
606 if (err)
607 BUG (NULL);
608 err = gpgme_data_new_from_file (&keydata, name, 1);
609 if (err) {
610 msg_box (dlg, _("Could not read key-data from file."),
611 _("Key Manager"), MB_ERR);
612 goto leave;
613 }
614
615 op_begin ();
616 err = gpgme_op_import (ctx, keydata);
617 op_end ();
618 if (err) {
619 msg_box (dlg, gpgme_strerror (err), _("Key Manager"), MB_ERR);
620 goto leave;
621 }
622
623 res = gpgme_op_import_result (ctx);
624 if (res->unchanged == res->considered &&
625 res->secret_unchanged == res->secret_imported)
626 no_data = 1;
627 new_keys = res->considered - res->unchanged;
628 new_sks = res->secret_imported - res->secret_unchanged;
629 if (res->new_revocations == 0 && fm_stat.import.revcert == 1)
630 res->new_revocations = 1;
631 if (res->secret_imported == 0 && fm_stat.import.has_seckey == 1)
632 res->secret_imported = 1;
633
634 /* XXX: if we import a key pair but the secret key comes first,
635 no_{valid}_user_id is 1 even so the public key, which comes
636 later is valid and self-signed. */
637 print_import_status (res);
638 if (res->no_user_id > 0) {
639 msg_box (dlg, _("Key without a self signature was dectected!\n"
640 "(This key is NOT usable for encryption, etc)\n"),
641 _("Import"), MB_WARN);
642 }
643
644 leave:
645 gpgme_data_release (keydata);
646 gpgme_release (ctx);
647 free_if_alloc (fm_stat.opaque);
648 if (r_newkeys)
649 *r_newkeys = new_keys;
650 if (r_newsks)
651 *r_newsks = new_sks;
652 if (no_data)
653 return WPTERR_NODATA;
654 return (int)err;
655 }
656
657
658 /* Import all dropped files. */
659 int
660 km_dropped_file_import (HWND dlg, HDROP hdrop,
661 int *r_newkeys, int *r_newsks)
662 {
663 char name[MAX_PATH+1];
664 UINT n = DragQueryFile (hdrop, 0xFFFFFFFF, NULL, 0);
665 UINT i;
666 int newk=0, newsk=0, err=0;
667
668 for (i=0; i < n; i++) {
669 DragQueryFile (hdrop, i, name, MAX_PATH);
670 err = km_file_import (dlg, name, &newk, &newsk);
671 *r_newkeys = (*r_newkeys) + newk;
672 *r_newsks = (*r_newsks) + newsk;
673 }
674 DragFinish (hdrop);
675 return err;
676 }
677
678
679 /* Mark the keys in @rset as deleted in the keycache. */
680 static void
681 delete_keys_from_cache (gpgme_key_t *rset, size_t n)
682 {
683 gpg_keycache_t pub = keycache_get_ctx (1);
684 gpg_keycache_t sec = keycache_get_ctx (0);
685 gpgme_key_t sk;
686 int i=0;
687
688 while (n-- > 0) {
689 if (!get_seckey (rset[i]->subkeys->keyid, &sk))
690 gpg_keycache_delete_key (sec, sk->subkeys->keyid);
691 gpg_keycache_delete_key (pub, rset[i]->subkeys->keyid);
692 i++;
693 }
694 }
695
696
697 /* Delete all selected keys from the list view @lv. */
698 int
699 km_delete_keys (listview_ctrl_t lv, HWND dlg)
700 {
701 gpgme_error_t err;
702 gpgme_ctx_t ctx;
703 gpgme_key_t *rset;
704 gpgme_key_t key;
705 char *p;
706 int with_seckey=0, seckey_type=0, confirm=0;
707 int i, rc, n, k_pos=0;
708
709 if (listview_get_curr_pos (lv) == -1) {
710 msg_box (dlg, _("Please select a key."), _("Key Manager"), MB_ERR);
711 return -1;
712 }
713
714 if (listview_count_items (lv, 1) > 8) {
715 i = msg_box (NULL, _("Do you really want to confirm each key?"),
716 _("Delete Confirmation"), MB_YESNOCANCEL|MB_ICONQUESTION);
717 if (i == IDCANCEL)
718 return 0;
719 if (i != IDNO)
720 confirm = 1;
721 }
722 else
723 confirm = 1;
724
725 /* n = total amount of keys, i is the selected amount. */
726 n = listview_count_items (lv, 0);
727 i = listview_count_items (lv, 1);
728 rset = (gpgme_key_t *)calloc (i+1, sizeof (gpgme_key_t));
729 if (!rset)
730 BUG (NULL);
731 for (i = 0; i < n; i++) {
732 if (listview_get_item_state(lv, i)) {
733 key = (gpgme_key_t)listview_get_item2 (lv, i);
734 if (!key)
735 BUG (NULL);
736 seckey_type = km_check_for_seckey (lv, i, NULL);
737 if (confirm && !seckey_type) {
738 p = km_key_get_info (key, 0);
739 rc = log_box (_("Key Manager"), MB_YESNO|MB_ICONWARNING,
740 _("Do you really want to delete this key?\n\n"
741 "%s"), p);
742 if (rc == IDYES)
743 rset[k_pos++] = key;
744 with_seckey = 0;
745 free_if_alloc (p);
746 }
747 else if (confirm) {
748 p = km_key_get_info (key, 1);
749 rc = log_box (_("Key Manager"), MB_YESNO|MB_ICONWARNING,
750 _("Do you really want to delete this KEY PAIR?\n\n"
751 "Please remember that you are not able to decrypt\n"
752 "messages you stored with this key any longer.\n"
753 "\n"
754 "%s"), p);
755 if (rc == IDYES) {
756 if (seckey_type == 2)
757 msg_box (dlg, _("The actual secret key is stored on a smartcard.\n"
758 "Only the public key and the secret key \n"
759 "placeholder will be deleted.\n"),
760 _("Key Manager"), MB_OK);
761 rset[k_pos++] = key;
762 }
763 with_seckey = 1;
764 free_if_alloc (p);
765 }
766 else {
767 with_seckey = 1;
768 rset[k_pos++] = key;
769 }
770 }
771 }
772
773 if (k_pos == 0) {
774 free (rset);
775 return 0;
776 }
777
778 err = gpgme_new (&ctx);
779 if (err)
780 BUG (NULL);
781 n = k_pos;
782 op_begin ();
783 for (i=0; i < k_pos; i++) {
784 err = gpgme_op_delete (ctx, rset[i], with_seckey);
785 if (err)
786 msg_box (dlg, gpgme_strerror (err), _("Key Manager"), MB_ERR);
787 else
788 n--;
789 }
790 op_end ();
791 if (n == 0)
792 show_msg (dlg, 1500, _("GnuPG Status: Finished"));
793 gpgme_release (ctx);
794 listview_del_sel_items (lv);
795 delete_keys_from_cache (rset, k_pos);
796 free (rset);
797
798 return (int)err;
799 }
800
801
802 /* Send the select key in @lv to the keyserver @host:@port. */
803 int
804 km_send_to_keyserver (listview_ctrl_t lv, HWND dlg, const char *host, u16 port)
805 {
806 gpgme_key_t key;
807 int id;
808
809 id = listview_get_curr_pos (lv);
810 if (id == -1) {
811 msg_box( dlg, _("Please select a key."), _("Key Manager"), MB_ERR );
812 return WPTERR_GENERAL;
813 }
814
815 key = (gpgme_key_t)listview_get_item2 (lv, id);
816 if (!key)
817 BUG (NULL);
818 id = log_box (_("Key Manager"), MB_YESNO,
819 _("Do you really want to send '%s' to keyserver %s?"),
820 key->subkeys->keyid+8, host);
821 if (id == IDYES)
822 hkp_send_key (dlg, host, port, key->subkeys->keyid+8);
823
824 return 0;
825 }
826
827
828 /* Send the selected key in @lv via MAPI to a mail recipient. */
829 int
830 km_send_to_mail_recipient (listview_ctrl_t lv, HWND dlg)
831 {
832 gpgme_key_t key;
833 gpgme_error_t rc;
834 GPGME *ctx;
835 char *fname;
836 char *name;
837 int pos;
838 int n;
839
840 if (listview_count_items (lv, 1) > 1) {
841 msg_box (dlg, _("Please only select one key."),
842 _("Key Manager"), MB_INFO|MB_OK);
843 return WPTERR_GENERAL;
844 }
845 pos = listview_get_curr_pos (lv);
846 if (pos == -1) {
847 msg_box (dlg, _("Please select a key."), _("Key Manager"), MB_ERR);
848 return WPTERR_GENERAL;
849 }
850 key = (gpgme_key_t)listview_get_item2 (lv, pos);
851 if (!key)
852 BUG (NULL);
853
854 name = utf8_to_wincp2 (key->uids->name);
855 n = strlen (name)+1 + MAX_PATH + 5;
856 fname = new char[n+1];
857 get_temp_name (fname, n-5, name);
858 for (pos=0; pos < (int)strlen (fname); pos++) {
859 if (fname[pos] == ' ')
860 fname[pos] = '_';
861 }
862 strcat (fname, ".asc");
863 ctx = new GPGME ();
864 ctx->setArmor (true);
865 rc = ctx->exportToFile (key->subkeys->keyid, fname);
866 if (rc)
867 msg_box (dlg, gpgme_strerror (rc), _("Key Manager"), MB_ERR);
868 else
869 mapi_send_pubkey (key->subkeys->keyid+8, fname);
870
871 delete ctx;
872 safe_free (name);
873 free_if_alloc (fname);
874 return rc;
875 }
876
877
878 static void
879 km_refresh_one_key (listview_ctrl_t lv, HWND dlg, int pos, int flags)
880 {
881 gpgme_key_t key;
882 char keyid[16+1];
883 int idx, err = 0;
884
885 if (pos != 0)
886 idx = pos;
887 else
888 idx = listview_get_curr_pos (lv);
889 if (idx != -1) {
890 key = (gpgme_key_t)listview_get_item2 (lv, idx);
891 if (!key)
892 BUG (0);
893 _snprintf (keyid, sizeof (keyid)-1, "%s", key->subkeys->keyid+8);
894 err = hkp_recv_key (dlg, default_keyserver, default_keyserver_port,
895 keyid, 0, flags);
896 /* if we receive just a single key (no refresh mode), update it. */
897 if (!flags && !err)
898 keycache_update (0, keyid);
899 }
900 }
901
902
903 /* Refresh the selected keys from the default keyserver. */
904 void
905 km_refresh_from_keyserver (listview_ctrl_t lv, HWND dlg)
906 {
907 int cnt, id, i;
908
909 cnt = listview_count_items (lv, 0);
910 if (listview_count_items (lv, 1) == cnt) {
911 id = msg_box (dlg, _("Do you really want to refresh all keys in the keyring?"),
912 _("Key Manager"), MB_YESNO);
913 if (id == IDNO)
914 return;
915 if (kserver_check_inet_connection ()) {
916 msg_box (dlg, _("Could not connect to keyserver, abort procedure."),
917 _("Key Manager"), MB_ERR);
918 return;
919 }
920 }
921 if (listview_count_items (lv, 1) == 1)
922 km_refresh_one_key (lv, dlg, listview_get_curr_pos (lv), 0);
923 else {
924 for (i=0; i < cnt; i++) {
925 if (listview_get_item_state (lv, i))
926 km_refresh_one_key (lv, dlg, i, KM_KS_REFRESH);
927 }
928 }
929 }
930
931
932 void
933 km_set_clip_info (const char *uid)
934 {
935 char buf[256];
936
937 key_get_clip_info (uid, buf, sizeof (buf)-1);
938 set_clip_text (NULL, buf, strlen (buf));
939 }
940
941
942
943 /* Return TRUE if the key in the list @lv at pos @pos is an
944 old version 3 key. */
945 int
946 km_key_is_v3 (listview_ctrl_t lv, int pos)
947 {
948 gpgme_key_t pk;
949
950 pk = (gpgme_key_t)listview_get_item2 (lv, pos);
951 if (!pk)
952 BUG (NULL);
953 if (strlen (pk->subkeys->fpr) == 32 &&
954 pk->subkeys->pubkey_algo == GPGME_PK_RSA)
955 return -1;
956 return 0;
957 }
958
959
960 /* Set trust of selected key in @lv (at @pos) to ultimate. */
961 int
962 km_set_implicit_trust (HWND dlg, listview_ctrl_t lv, int pos)
963 {
964 gpgme_error_t err;
965 gpgme_key_t key;
966 GpgKeyEdit *ke;
967
968 key = (gpgme_key_t)listview_get_item2 (lv, pos);
969 if (!key)
970 BUG (NULL);
971 ke = new GpgKeyEdit (key->subkeys->keyid);
972 if (!ke)
973 BUG (0);
974
975 err = ke->setTrust (GPGME_VALIDITY_ULTIMATE);
976 if (err)
977 msg_box (dlg, gpgme_strerror (err), _("Key Manager"), MB_ERR);
978 else
979 show_msg (dlg, 1500, _("GnuPG Status: Finished"));
980
981 delete ke;
982 return (int)err;
983 }
984
985
986 void
987 km_find_key (HWND dlg, listview_ctrl_t lv)
988 {
989 int oldpos = listview_get_curr_pos (lv);
990 int n;
991 char *name = get_input_dialog (dlg, _("Search"), _("Search for:"));
992 if (name == NULL)
993 return;
994 if (oldpos < 0)
995 oldpos = 0;
996 n = listview_find (lv, name);
997 if (n != -1) {
998 listview_select_one (lv, n);
999 listview_scroll (lv, oldpos, n);
1000 }
1001 else {
1002 const char *s = _("String pattern \"%s\" not found.");
1003 char *p = new char[strlen (s) + strlen (name) + 2];
1004 if (!p)
1005 BUG (0);
1006 sprintf (p, s, name);
1007 msg_box (dlg, p, _("Key Manager"), MB_INFO);
1008 free_if_alloc (p);
1009 }
1010 free_if_alloc (name);
1011 }
1012
1013
1014 /* Return a user-friendly name for a key derrived from
1015 name. If @is_secret is 1, a secret key name will be generated. */
1016 char*
1017 km_gen_export_filename (const char *keyid, int is_secret)
1018 {
1019 gpgme_key_t key;
1020 char *p, *uid;
1021
1022 if (get_pubkey (keyid, &key))
1023 return m_strdup (keyid);
1024 uid = utf8_to_wincp2 (key->uids->name);
1025 if (!uid)
1026 return m_strdup (keyid);
1027 p = new char[strlen (uid) + 8 + 16];
1028 if (!p)
1029 BUG (0);
1030 sprintf (p, "%s%s.asc", uid, is_secret? "_sec" : "");
1031 for (size_t i=0; i < strlen (p); i++) {
1032 if (p[i] == ' ' || p[i] == ':' || p[i] == '?' || p[i] == '|')
1033 p[i] = '_';
1034 }
1035 safe_free (uid);
1036 return p;
1037 }

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26