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

Contents of /trunk/Src/wptKeyPropsDlg.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 310 - (show annotations)
Sat Apr 7 11:07:20 2007 UTC (17 years, 10 months ago) by twoaday
File size: 10607 byte(s)


1 /* wptKeyPropsDlg.cpp - WinPT key property dialog
2 * Copyright (C) 2000, 2001, 2002, 2003, 2005, 2006 Timo Schulz
3 *
4 * This file is part of WinPT.
5 *
6 * WinPT is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * WinPT is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with WinPT; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
19 */
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23
24 #include <windows.h>
25 #include <assert.h>
26
27 #include "resource.h"
28 #include "wptErrors.h"
29 #include "wptGPG.h"
30 #include "wptCommonCtl.h"
31 #include "wptContext.h" /* for passphrase_s */
32 #include "wptNLS.h"
33 #include "wptDlgs.h"
34 #include "wptTypes.h"
35 #include "wptKeylist.h"
36 #include "wptW32API.h"
37 #include "wptVersion.h"
38 #include "wptKeyEdit.h"
39
40
41 /* Check that the key is not expired or revoked. */
42 static int
43 do_check_key (gpgme_key_t key)
44 {
45 int invalid;
46
47 invalid = key->expired;
48 if (!invalid)
49 invalid = key->revoked;
50 return invalid;
51 }
52
53
54 /* Convert a trust integer into a string representation. */
55 static const char*
56 ownertrust_to_string (int val, bool is_keypair)
57 {
58 const char *inf;
59 int id = val;
60
61 switch (id) {
62 case 1: inf = _("Don't know"); break;
63 case 2: inf = _("I do NOT trust"); break;
64 case 3: inf = _("I trust marginally"); break;
65 case 4: inf = _("I trust fully"); break;
66 case 5:
67 case 6:
68 if (is_keypair)
69 inf = _("I trust ultimately (implicit)");
70 else
71 inf = _("I trust ultimately"); break;
72 default:inf = _("Unknown"); break;
73 }
74
75 return inf;
76 }
77
78
79 /* Generate a unique temp name for the photo which
80 depends on the dialog handle and return it. */
81 const char*
82 get_photo_tmpname (HWND dlg)
83 {
84 static char buf[MAX_PATH+128+1];
85 char name[64];
86
87 _snprintf (name, DIM (name)-1, "winpt_photo_%08lX.tmp", (DWORD)dlg);
88 get_temp_name (buf, DIM (buf)-1, name);
89 return buf;
90 }
91
92
93 static void
94 draw_nophoto_img (HWND dlg)
95 {
96 /*..
97 n = DrawText (hdc, "No Photo-ID", -1, &r, DT_LEFT);
98 ..*/
99 }
100
101
102
103 /* Delete temporary photo file. */
104 void
105 key_unload_photo (HWND dlg)
106 {
107 DeleteFile (get_photo_tmpname (dlg));
108 }
109
110
111 /* Load the photo from the key @key */
112 int
113 key_load_photo (HWND dlg, gpgme_key_t key, gpgme_validity_t *r_valid)
114 {
115 winpt_key_s k;
116 FILE *fp;
117 const BYTE *img;
118 DWORD imglen;
119
120 if (winpt_get_pubkey (key->subkeys->keyid, &k))
121 BUG (0);
122 img = k.ext->attrib.d;
123 imglen = k.ext->attrib.len;
124 if (img && !k.ext->attrib.validity)
125 get_uat_validity (key->subkeys->keyid, &k.ext->attrib.validity);
126 if (r_valid)
127 *r_valid = k.ext->attrib.validity;
128
129 if (!img || !imglen) {
130 draw_nophoto_img (dlg);
131 return -1;
132 }
133
134 fp = fopen (get_photo_tmpname (dlg), "wb");
135 if (fp) {
136 const int pos = 16;
137 fwrite (img + pos, 1, imglen - pos, fp);
138 fclose (fp);
139 }
140 return 0;
141 }
142
143
144 /* Return string representation of the key validity. @key. */
145 static const char*
146 get_validity (gpgme_key_t key)
147 {
148 if (key->expired)
149 return _("Expired");
150 if (key->revoked)
151 return _("Revoked");
152 if (key->disabled)
153 return _("Disabled");
154 if (key->invalid)
155 return _("Invalid");
156 return get_key_trust2 (NULL, key->uids->validity, 0, 0);
157 }
158
159
160 /* Return the preferred sym. algorithm from @key as a string. */
161 static const char*
162 get_pref_cipher (winpt_key_t k)
163 {
164 if (k->is_v3)
165 return "IDEA";
166 if (!k->ext || !k->ext->sym_prefs)
167 return "3DES";
168 switch (*k->ext->sym_prefs) {
169 case 1: return "IDEA";
170 case 2: return "3DES";
171 case 3: return "CAST5";
172 case 4: return "Blowfish";
173 case 7: return "AES128";
174 case 8: return "AES192";
175 case 9: return "AES256";
176 case 10:return "Twofish";
177 default:break;
178 }
179 return "Unknown";
180 }
181
182
183 /* Return true if the key has designated revokers. */
184 static bool
185 check_for_desig_rev (gpgme_key_t key)
186 {
187 winpt_key_s k;
188
189 memset (&k, 0, sizeof (k));
190 if (!winpt_get_pubkey (key->subkeys->keyid, &k))
191 return k.ext->gloflags.has_desig_rev? true : false;
192 return false;
193 }
194
195
196 /* Print information (name) of the smart card. */
197 static const char*
198 get_card_type (winpt_key_t k)
199 {
200 static char buf[64];
201
202 if (!k->ext || !k->ext->card_type)
203 return "";
204 _snprintf (buf, DIM (buf)-1, _("Card-Type: %s\r\n"), k->ext->card_type);
205 return buf;
206 }
207
208
209 /* Return 1 if at least one user-ID is valid. */
210 static int
211 key_is_valid (gpgme_key_t key)
212 {
213 gpgme_user_id_t u;
214
215 for (u=key->uids; u; u=u->next) {
216 if (u->validity >= GPGME_VALIDITY_MARGINAL)
217 return 1;
218 }
219 return 0;
220 }
221
222
223 /* Return extended algorithm information. */
224 const char*
225 props_get_key_algo (gpgme_key_t key, int idx)
226 {
227 /* PGP calls the old RSAv3 keys 'RSA Legacy' and because this
228 is a good method to differ between OpenPGP v4 cert-only keys
229 and v3 RSA keys, we use the same notation. */
230 if (key->subkeys != NULL && strlen (key->subkeys->fpr) == 32)
231 return "RSA Legacy";
232 return get_key_algo (key, idx);
233 }
234
235
236 /* Display the key information for key @k.
237 Return value: gpgme key on success. */
238 static void
239 display_key_info (HWND dlg, winpt_key_t k)
240 {
241 gpgme_key_t key;
242 struct winpt_key_s sk;
243 char info[512];
244 const char *inf;
245 DWORD created, expires;
246
247 gpg_keycache_update_attr (k->ext, KC_ATTR_PREFSYM, 0);
248 memset (&sk, 0, sizeof (sk));
249 if (k->key_pair && !winpt_get_seckey (k->keyid, &sk))
250 k->is_protected = sk.is_protected;
251 key = k->ext->key;
252 created = key->subkeys->timestamp;
253 expires = key->subkeys->expires;
254 _snprintf (info, DIM (info)-1,
255 _("Type: %s\r\n"
256 "Key ID: 0x%s\r\n"
257 "Algorithm: %s\r\n"
258 "Size: %s bits\r\n"
259 "Created: %s\r\n"
260 "Expires: %s\r\n"
261 "Validity: %s\r\n"
262 "Cipher: %s\r\n"
263 "%s\r\n"),
264 get_key_type (key),
265 k->keyid,
266 props_get_key_algo (key, 0),
267 get_key_size (key, 0),
268 get_key_created (created),
269 get_key_expire_date (expires),
270 get_validity (key),
271 get_pref_cipher (k),
272 get_card_type (&sk));
273
274 SetDlgItemText (dlg, IDC_KEYPROPS_INFO, info);
275 SetDlgItemText (dlg, IDC_KEYPROPS_FPR, get_key_fpr (key));
276 inf = ownertrust_to_string (key->owner_trust, k->key_pair);
277 SetDlgItemText (dlg, IDC_KEYPROPS_OT, inf);
278 }
279
280
281 /* Context to store associated data of the dialog. */
282 struct prop_info_s {
283 winpt_key_t key;
284 };
285
286
287 static void
288 on_init_dialog (HWND dlg, WPARAM wparam, LPARAM lparam)
289 {
290 gpgme_validity_t valid;
291
292 winpt_key_t k = (winpt_key_t)lparam;
293 assert (k != NULL);
294 SetWindowText (dlg, _("Key Properties"));
295 SetDlgItemText (dlg, IDC_KEYPROPS_OT_CHANGE, _("&Change"));
296 SetDlgItemText (dlg, IDC_KEYPROPS_REVOKERS, _("&Revokers"));
297 SetDlgItemText (dlg, IDC_KEYPROPS_CHANGE_PWD, _("Change &Password"));
298 SetDlgItemText (dlg, IDC_KEYPROPS_OTINF, _("Ownertrust"));
299
300 display_key_info (dlg, k);
301 if (!key_load_photo (dlg, k->ctx, &valid)) {
302 k->has_photo = 1;
303 if (valid < GPGME_VALIDITY_MARGINAL)
304 SetDlgItemText (dlg, IDC_KEYPROPS_IMGINF, _("Photo-ID not validated."));
305 }
306 if (k->key_pair)
307 EnableWindow (GetDlgItem (dlg, IDC_KEYPROPS_CHANGE_PWD), TRUE);
308 if (check_for_desig_rev (k->ctx))
309 EnableWindow (GetDlgItem (dlg, IDC_KEYPROPS_REVOKERS), TRUE);
310 if (do_check_key (k->ctx))
311 EnableWindow (GetDlgItem (dlg, IDC_KEYPROPS_OT_CHANGE), FALSE);
312 center_window (dlg, NULL);
313 SetForegroundWindow (dlg);
314 }
315
316
317 /* Dialog box procedure to show the key properties. */
318 BOOL CALLBACK
319 keyprops_dlg_proc (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam)
320 {
321 struct prop_info_s *prop = NULL;
322 const char *inf;
323 int rc;
324
325 if (msg != WM_INITDIALOG &&
326 (prop = (prop_info_s*)GetWindowLong (dlg, GWL_USERDATA)) == NULL)
327 return FALSE;
328
329 switch (msg) {
330 case WM_INITDIALOG:
331 assert (lparam != 0);
332 prop = new struct prop_info_s;
333 prop->key = (winpt_key_t)lparam;
334 SetWindowLong (dlg, GWL_USERDATA, (LONG)prop);
335 on_init_dialog (dlg, wparam, lparam);
336 return TRUE;
337
338 case WM_DESTROY:
339 key_unload_photo (dlg);
340 delete prop;prop = NULL;
341 SetWindowLong (dlg, GWL_USERDATA, 0);
342 break;
343
344 case WM_PAINT:
345 /* Display the photo in the frame of the dialog @dlg.
346 The coordinates are fixed to (0,0). */
347 if (prop->key->has_photo) {
348 POINT p;
349 p.x = p.y = 0;
350 PTD_jpg_show (GetDlgItem (dlg, IDC_KEYPROPS_IMG),
351 &p, get_photo_tmpname (dlg));
352 }
353 break;
354
355 case WM_COMMAND:
356 switch (LOWORD (wparam)) {
357 case IDOK:
358 EndDialog (dlg, TRUE);
359 return TRUE;
360
361 case IDCANCEL:
362 EndDialog (dlg, FALSE);
363 return TRUE;
364
365 case IDC_KEYPROPS_OT_CHANGE:
366 if (!prop->key->key_pair && !key_is_valid (prop->key->ctx)) {
367 rc = msg_box (dlg, _("This is a non-valid key.\n"
368 "Modifying the ownertrust has no effect on such keys.\n\n"
369 "Do you really want to continue?"),
370 _("WinPT Warning"), MB_ICONWARNING|MB_YESNO);
371 if (rc == IDNO)
372 return TRUE;
373 }
374 rc = dialog_box_param (glob_hinst,
375 (LPCSTR)IDD_WINPT_KEYEDIT_OWNERTRUST,
376 dlg, keyedit_ownertrust_dlg_proc,
377 (LPARAM)prop->key, _("Change Ownertrust"),
378 IDS_WINPT_KEYEDIT_OWNERTRUST);
379 if (rc == FALSE) /* Cancel */
380 return TRUE;
381
382 inf = ownertrust_to_string (prop->key->callback.new_val,
383 prop->key->key_pair);
384 SetDlgItemText (dlg, IDC_KEYPROPS_OT, inf);
385 msg_box (dlg, _("Ownertrust successfully changed."),
386 _("GnuPG Status"), MB_OK);
387 prop->key->update = 1;
388 return TRUE;
389
390 case IDC_KEYPROPS_CHANGE_PWD:
391 keyedit_change_passwd (prop->key, dlg);
392 return TRUE;
393
394 case IDC_KEYPROPS_REVOKERS:
395 prop->key->update = dialog_box_param (glob_hinst,
396 (LPCTSTR)IDD_WINPT_KEYREVOKERS, dlg,
397 key_revokers_dlg_proc, (LPARAM)prop->key,
398 _("Key Revokers"),
399 IDS_WINPT_KEY_REVOKERS);
400 UpdateWindow (dlg);
401 break;
402 }
403 }
404
405 return FALSE;
406 }

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26