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

Contents of /trunk/Src/wptGPGME.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 181 - (show annotations)
Tue Mar 14 11:01:22 2006 UTC (18 years, 11 months ago) by twoaday
File size: 8258 byte(s)
2006-03-12  Timo Schulz  <ts@g10code.de>
 
        * wptGPG.cpp (gnupg_load_config): Search for 'ask-cert-expire'.
        * wptKeyPropsDlg.cpp (display_key_info): Automatically update
        sym algorithm preferences if needed.
        * wptKeysignDlg.cpp (date_is_today): New.
        (keysign_dlg_proc): Only allow to set cert expire date if
        the option was found.
        * wptGPGPrefsDlg.cpp (gpgprefs_dlg_proc): Allow to set
        'ask-cert-expire'.
         


1 /* wptGPGME.cpp - WinPT GPGME interface
2 * Copyright (C) 2001-2005 Timo Schulz
3 *
4 * This file is part of WinPT.
5 *
6 * WinPT is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (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 GNU
14 * 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 <sys/types.h>
25 #include <windows.h>
26
27 #include "resource.h"
28 #include "wptNLS.h"
29 #include "wptGPG.h"
30 #include "wptErrors.h"
31 #include "wptTypes.h"
32 #include "wptW32API.h"
33 #include "wptVersion.h"
34 #include "wptCommonCtl.h"
35 #include "wptContext.h"
36 #include "wptRegistry.h"
37 #include "wptDlgs.h"
38
39 #include "openpgp.h"
40
41 BOOL CALLBACK keycache_dlg_proc (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam);
42 void progress_cleanup (progress_filter_s * pfx);
43
44 static gpg_keycache_t pub = NULL;
45 static gpg_keycache_t sec = NULL;
46 static char *gpg_secring = NULL;
47
48
49 /* Reload the key cache. */
50 void
51 keycache_reload (HWND dlg)
52 {
53 refresh_cache_s rcs;
54
55 memset (&rcs, 0, sizeof rcs);
56 rcs.kr_reload = rcs.kr_update = 1;
57 rcs.tr_update = 0;
58 DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_KEYCACHE, dlg,
59 keycache_dlg_proc, (LPARAM)&rcs);
60 }
61
62
63 /* Release both key cache objects. If @cleanup is 1,
64 also release other global structs. */
65 void
66 keycache_release (int cleanup)
67 {
68 int n = gpg_keycache_get_size (pub);
69 char tmpbuf[64];
70
71 /* XXX: update the value when the cache has changed. */
72 sprintf (tmpbuf, "%d", n);
73 set_reg_key (HKEY_CURRENT_USER, "Software\\WinPT", "nKeys", tmpbuf);
74
75 if (pub) {
76 gpg_keycache_release (pub);
77 pub = NULL;
78 }
79 if (sec) {
80 gpg_keycache_release (sec);
81 sec = NULL;
82 }
83 if (cleanup) {
84 if (gpg_secring)
85 free (gpg_secring);
86 gpg_secring = NULL;
87 }
88 }
89
90
91 /* Update the key with the keyid @keyid in the key cache.
92 If @is_sec is 1, the secret key cache is used. */
93 gpgme_error_t
94 keycache_update (int is_sec, const char *keyid)
95 {
96 gpg_keycache_t ctx = pub;
97 gpgme_error_t err;
98
99 if (is_sec)
100 ctx = sec;
101 err = gpg_keycache_update_key (ctx, is_sec, pub, keyid);
102 if (is_sec)
103 gpg_keycache_prepare_single (ctx, keyid, NULL, gpg_secring);
104 return err;
105 }
106
107
108 /* Initialize both cache contexts. Use @pubring for the public
109 keyring and @secring for the secret keyring. */
110 gpgme_error_t
111 keycache_init (const char *pubring, const char *secring)
112 {
113 struct progress_filter_s pfx;
114 gpgme_error_t err;
115 int val = 0;
116 char *p;
117
118 if (secring != NULL) {
119 free_if_alloc (gpg_secring);
120 gpg_secring = get_gnupg_keyring (0, NO_STRICT);
121 }
122
123 p = get_reg_entry (HKEY_CURRENT_USER, "Software\\WinPT", "nKeys");
124 if (p && *p != ' ') {
125 val = atoi (p);
126 free_if_alloc (p);
127 }
128
129 memset (&pfx, 0, sizeof (pfx));
130 /* Release old contexts first. */
131 keycache_release (0);
132
133 err = gpg_keycache_new (&pub);
134 if (err)
135 return err;
136 if (val != 0)
137 gpg_keycache_set_cb (pub, progress_callback, &pfx, val);
138 err = gpg_keycache_new (&sec);
139 if (!err)
140 err = gpg_keycache_init (pub, NULL, 0);
141 if (!err)
142 err = gpg_keycache_init (sec, NULL, 1);
143 if (!err && pubring && *pubring)
144 err = gpg_keycache_prepare (pub, pubring, NULL);
145 if (!err && secring && * secring)
146 err = gpg_keycache_prepare (sec, NULL, secring);
147 if (!err)
148 gpg_keycache_sync (pub, sec);
149 if (val != 0)
150 progress_cleanup (&pfx);
151 return err;
152 }
153
154
155 /* Return the public cache context if @is_pub is set
156 the secre cache context otherwise. */
157 gpg_keycache_t
158 keycache_get_ctx (int is_pub)
159 {
160 return is_pub? pub : sec;
161 }
162
163
164 /* Get the GPG key with keyid @keyid from the cache. Return it
165 in @r_key on success. */
166 static int
167 get_key_from_cache (const char *keyid, gpgme_key_t *r_key,
168 struct keycache_s **c, int secret)
169 {
170 gpg_keycache_t cache;
171 gpgme_error_t err;
172 int mode = secret? KEYCACHE_PRV : KEYCACHE_PUB;
173
174 if (!keyid)
175 return WPTERR_GENERAL;
176 if (r_key)
177 *r_key = NULL;
178 cache = keycache_get_ctx (mode);
179 if (!cache)
180 BUG (0);
181 if (!c)
182 err = gpg_keycache_find_key (cache, keyid, 0, r_key);
183 else
184 err = gpg_keycache_find_key2 (cache, keyid, 0, r_key, c);
185 return err? WPTERR_GENERAL : 0;
186 }
187
188
189 /* Get GPG key with keyid @keyid directly from GPG and return
190 it in @r_key on success. */
191 static int
192 get_key_directly (const char *keyid, gpgme_key_t *r_key, int secret)
193 {
194 gpgme_ctx_t ctx;
195 gpgme_error_t err;
196
197 err = gpgme_new (&ctx);
198 if (err)
199 return WPTERR_GENERAL;
200 err = gpgme_get_key (ctx, keyid, r_key, secret);
201 gpgme_release (ctx);
202 return err? WPTERR_GENERAL : 0;
203 }
204
205
206 /* Search the public key with @keyid as the keyid in the cache and
207 return the item in @k. */
208 int
209 winpt_get_pubkey (const char *keyid, winpt_key_s *k)
210 {
211 int rc;
212
213 rc = get_key_from_cache (keyid, &k->ctx, &k->ext, 0);
214 if (rc)
215 return rc;
216 k->is_v3 = k->ctx->subkeys->pubkey_algo == GPGME_PK_RSA &&
217 strlen (k->ctx->subkeys->fpr) == 32;
218 k->is_protected = k->ext->gloflags.is_protected;
219 k->keyid = k->ctx->subkeys->keyid;
220 k->uid = k->ctx->uids->uid;
221 return rc;
222 }
223
224
225 int
226 winpt_get_seckey (const char *keyid, winpt_key_s *k)
227 {
228 int rc;
229 rc = get_key_from_cache (keyid, &k->ctx, &k->ext, 1);
230 if (rc)
231 return rc;
232 k->is_v3 = k->ctx->subkeys->pubkey_algo == GPGME_PK_RSA &&
233 strlen (k->ctx->subkeys->fpr) == 32;
234 k->is_protected = k->ext->gloflags.is_protected;
235 k->keyid = k->ctx->subkeys->keyid;
236 k->uid = k->ctx->uids->uid;
237 return rc;
238 }
239
240
241 int
242 get_pubkey (const char *keyid, gpgme_key_t *ret_key)
243 {
244 int rc;
245
246 if (pub && sec)
247 rc = get_key_from_cache (keyid, ret_key, NULL, 0);
248 else
249 rc = get_key_directly (keyid, ret_key, 0);
250 return rc;
251 }
252
253
254 int
255 get_seckey (const char *keyid, gpgme_key_t *ret_skey)
256 {
257 int rc;
258
259 if (pub && sec)
260 rc = get_key_from_cache (keyid, ret_skey, NULL, 1);
261 else
262 rc = get_key_directly (keyid, ret_skey, 1);
263 return rc;
264 }
265
266
267 /* Search for insecure ElGamal keys and return the
268 number of founded keys. */
269 int
270 count_insecure_elgkeys (void)
271 {
272 gpg_keycache_t pc;
273 gpgme_key_t key;
274 int n=0;
275
276 pc = keycache_get_ctx (1);
277 if (!pc)
278 BUG (0);
279 while (!gpg_keycache_next_key (pc, 0, &key)) {
280 if (key->subkeys->pubkey_algo == GPGME_PK_ELG)
281 n++;
282 }
283 gpg_keycache_rewind (pc);
284 return n;
285 }
286
287
288
289 /* Map the signature summary in @sum to signature status table index.
290 Return value: index to table. */
291 static int
292 sigsum_to_index (gpgme_sigsum_t sum)
293 {
294 if ((sum & GPGME_SIGSUM_VALID) && (sum & GPGME_SIGSUM_KEY_REVOKED))
295 return 7;
296 if ((sum & GPGME_SIGSUM_VALID) && (sum & GPGME_SIGSUM_SIG_EXPIRED))
297 return 6;
298 if (sum & GPGME_SIGSUM_GREEN)
299 return 1;
300 else if (sum & GPGME_SIGSUM_RED)
301 return 2;
302 else if (sum & GPGME_SIGSUM_KEY_MISSING)
303 return 3;
304 return 0;
305 }
306
307
308 /* Return a humand readable description for the signature status @sum. */
309 const char*
310 get_gpg_sigstat (gpgme_sigsum_t sum)
311 {
312 const char *gpg_sigstat[] = {
313 _("Error during verification process."),
314 _("The signature is good."),
315 _("The signature is BAD!"),
316 _("The signature could not be checked due to a missing key."),
317 _("No valid OpenPGP signature."),
318 _("Signature Error"),
319 _("Good Signature (Expired Key)"),
320 _("Good Signature (Revoked Key)"),
321 NULL
322 };
323 const unsigned int mask = 8;
324
325 return gpg_sigstat[sigsum_to_index (sum) % mask];
326 }
327
328
329 /* Check if the secret keyring contains at least one
330 key with ultimate trust.
331 Return value: 0 on success. */
332 int
333 check_ultimate_trusted_key (void)
334 {
335 struct keycache_s *n;
336
337 for (n = sec->item; n; n = n->next) {
338 if (n->pubpart &&
339 n->pubpart->key->owner_trust == GPGME_VALIDITY_ULTIMATE)
340 return 0;
341 }
342 return -1;
343 }

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26