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

Diff of /trunk/Src/WinPT.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 23 by twoaday, Fri Sep 30 10:10:16 2005 UTC revision 73 by twoaday, Tue Nov 8 07:15:13 2005 UTC
# Line 1  Line 1 
1  /* WinPT.cpp - Windows Privacy Tray (WinPT)  /* WinPT.cpp - Windows Privacy Tray (WinPT)
2   *      Copyright (C) 2000-2005 Timo Schulz   *      Copyright (C) 2000-2005 Timo Schulz
3   *   *
4   * This file is part of WinPT.   * This file is part of WinPT.
5   *   *
6   * WinPT is free software; you can redistribute it and/or modify   * 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   * 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   * the Free Software Foundation; either version 2 of the License, or
9   * (at your option) any later version.   * (at your option) any later version.
10   *   *
11   * WinPT is distributed in the hope that it will be useful,   * WinPT is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU General Public License for more details.   * GNU General Public License for more details.
15   *   *
16   * You should have received a copy of the GNU General Public License   * You should have received a copy of the GNU General Public License
17   * along with WinPT; if not, write to the Free Software Foundation,   * along with WinPT; if not, write to the Free Software Foundation,
18   * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA   * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
19   */   */
20  #include <windows.h>  #ifdef HAVE_CONFIG_H
21    #include <config.h>
22  #include "../resource.h"  #endif
23  #include "wptTypes.h"  
24  #include "wptW32API.h"  #include <windows.h>
25  #include "wptVersion.h"  
26  #include "wptErrors.h"  #include "resource.h"
27  #include "wptGPG.h"  #include "wptTypes.h"
28  #include "wptRegistry.h"  #include "wptW32API.h"
29  #include "wptCommonCtl.h"  #include "wptVersion.h"
30  #include "wptDlgs.h"  #include "wptErrors.h"
31  #include "wptNLS.h"  #include "wptGPG.h"
32  #include "wptKeyserver.h"  #include "wptRegistry.h"
33  #include "wptCard.h"  #include "wptCommonCtl.h"
34  #include "wptFileManager.h"  #include "wptDlgs.h"
35  #include "wptContext.h"  #include "wptNLS.h"
36  #include "wptCardEdit.h"  #include "wptKeyserver.h"
37    #include "wptCard.h"
38  HINSTANCE glob_hinst; /* global instance for the dialogs */  #include "wptFileManager.h"
39  HWND glob_hwnd; /* global window handle for the dialogs */  #include "wptContext.h"
40  HWND activ_hwnd;  #include "wptCardEdit.h"
41  LOCK mo_file;  #include "wptCrypto.h"
42  int scard_support = 0;  
43  int debug = 0;  #define MIN_GPG_VER   "1.4.3"   /* Minimal GPG version. */
44  int mobile = 0;  #define MIN_GPGME_VER "1.2.0"   /* Minimal GPGME version. */
45  int gpg_read_only = 0;  
46  char gpgver[3];  
47    HINSTANCE glob_hinst;   /* global instance for the dialogs */
48  /* Internal IPC */  HWND glob_hwnd;         /* global window handle for the dialogs */
49  int start_keymanager = 0;  HWND activ_hwnd;
50    LOCK mo_file;
51  static void  int scard_support = 0;
52  update_keycache (HWND hwnd)  int debug = 0;
53  {  int mobile = 0;
54      refresh_cache_s rcs = {0};  int gpg_read_only = 0;
55      rcs.kr_reload = 0;  char gpgver[3];
56      rcs.kr_update = 1;  
57      rcs.tr_update = 1;  
58      DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_KEYCACHE, hwnd,  /* Load the key cache and rebuild the signature cache. */
59                      keycache_dlg_proc, (LPARAM)&rcs);  static void
60  } /* update_keycache */  update_keycache (HWND hwnd)
61    {
62        refresh_cache_s rcs = {0};
63  static char *      rcs.kr_reload = 0;
64  get_gettext_lang (void)      rcs.kr_update = 1;
65  {          rcs.tr_update = 1;
66      char * fname;      DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_KEYCACHE, hwnd,
67      fname = get_reg_entry_mo ();                      keycache_dlg_proc, (LPARAM)&rcs);
68      if (!fname)  }
69          return NULL;  
70      return fname;  
71  } /* get_gettext_lang */  /* Set GPGME debug mode. If @val is 0, the debug mode is disabled. */
72    void
73    gpg_set_debug_mode (int val)
74  static void  {      
75  load_gettext (void)      if (val)
76  {          putenv ("GPGME_DEBUG=5:gpgme.dbg");
77      char * nls = NULL;      else
78      char * file = NULL;          putenv ("GPGME_DEBUG=");
79    }
80      nls = get_gettext_lang ();  
81      if (nls) {  
82          set_gettext_file ("winpt", nls);  /* Return the name of the gettext language file. */
83          file = make_filename (nls, "winpt", "mo");  static char*
84          if (!file_exist_check (nls) && init_file_lock (&mo_file, file))  {  get_gettext_lang (void)
85              msg_box (NULL, _("Could not initizalize file lock.\n"  {    
86                               "Native Language Support"),      char *fname;
87                       _("WinPT Error"), MB_ERR);      fname = get_reg_entry_mo ();
88          }      if (!fname)
89          free_if_alloc (nls);          return NULL;
90          free_if_alloc (file);      return fname;
91      }  }
92  } /* load_gettext */  
93    
94    /* Initialize the gettext sub system. */
95  /* check if the default key from the gpg.conf file is available in the  static void
96     keyring. if not, bail out because encryption won't work properly then. */  load_gettext (int prev_inst)
97  static int  {
98  check_default_key (gpgme_keycache_t kc)      char *nls = NULL;
99  {      char *file = NULL;
100      gpgme_key_t key;  
101      gpgme_error_t err = GPG_ERR_NO_ERROR;      nls = get_gettext_lang ();
102      char * defkey;      if (nls) {
103            set_gettext_file ("winpt", nls);
104      defkey = get_gnupg_default_key ();          file = make_filename (nls, "winpt", "mo");
105      if (defkey)          if (!file_exist_check (nls) && init_file_lock (&mo_file, file))  {
106          err = gpgme_keycache_find_key (kc, defkey, 0, &key);              if (!prev_inst)
107      free_if_alloc (defkey);                  msg_box (NULL, _("Could not initizalize file lock.\n"
108      return err? -1 : 0;                                   "Native Language Support"),
109  } /* check_default_key */                           _("WinPT Error"), MB_ERR);
110            }
111            free_if_alloc (nls);
112  /* Return the WinPT program file name (with full pathname). */          free_if_alloc (file);
113  static const char *      }
114  get_prog_part (const char * fname, int use_cwd)  }
115  {  
116      static char program[1024];  
117      char currdir[256], * cmd = NULL;  /* check if the default key from the gpg.conf file is available in the
118      int j;     keyring. if not, bail out because encryption won't work properly then. */
119            static int
120      memset (currdir, 0, DIM (currdir));  check_default_key (gpg_keycache_t kc)
121      memset (program, 0, DIM (program));  {
122                gpgme_key_t key;
123      if (use_cwd) {      gpgme_error_t err = GPG_ERR_NO_ERROR;
124          GetCurrentDirectory (DIM (currdir)-1, currdir);      char * defkey;
125          _snprintf (program, DIM (program)-1, "%s\\%s", currdir, fname);  
126      }      defkey = get_gnupg_default_key ();
127      else {      if (defkey)
128          cmd = GetCommandLine ();          err = gpg_keycache_find_key (kc, defkey, 0, &key);
129          if (cmd == NULL)      else
130              return NULL;          msg_box (NULL, _("No useable secret key found."), _("WinPT Error"), MB_ERR);
131          strncpy (currdir, cmd, 255);      free_if_alloc (defkey);
132          j = strlen (currdir);      return err? -1 : 0;
133          while (j--) {  }
134              if (currdir[j] == '\\')  
135                  break;            
136          }  /* Return the WinPT program file name (with full pathname). */
137          currdir[j] = 0;  static const char *
138          _snprintf (program, DIM (program)-1, "%s\\%s", currdir + 1, fname);  get_prog_part (const char * fname, int use_cwd)
139      }  {
140      return program;      static char program[512];
141  } /* get_prog_part */      char currdir[256];
142        char *cmd = NULL;
143        int j;
144  static int          
145  check_crypto_engine (void)      memset (currdir, 0, DIM (currdir));
146  {      memset (program, 0, DIM (program));
147      int ma=1, mi=4, pa=0; /* GPG 1.4.0 */          
148      int rc;      if (use_cwd) {
149            GetCurrentDirectory (DIM (currdir)-1, currdir);
150      rc = check_gnupg_engine (&ma, &mi, &pa);          _snprintf (program, DIM (program)-1, "%s\\%s", currdir, fname);
151      if (rc == -1) {      }
152          msg_box (NULL, _("Could not read GnuPG version."), _("WinPT Error"), MB_ERR);      else {
153          return rc;          cmd = GetCommandLine ();
154      }          if (cmd == NULL)
155      else if (rc) {              return NULL;
156          log_box (_("WinPT Error"), MB_ERR,          strncpy (currdir, cmd, sizeof (currdir)-1);
157                   _("Sorry, you need a newer GPG version.\n"          j = strlen (currdir);
158                     "GPG version %d.%d.%d required GPG version 1.4.0"),          while (j--) {
159                     ma, mi, pa);              if (currdir[j] == '\\')
160          return rc;                  break;
161      }          }
162      /* We enable smartcard support for GPG: 1.9.x or >= 1.4.0 */          currdir[j] = 0;
163      if (ma >= 1 && mi >= 4)          _snprintf (program, DIM (program)-1, "%s\\%s", currdir + 1, fname);
164          scard_support = 1;      }
165        return program;
166      gpgver[0] = ma;  }
167      gpgver[1] = mi;  
168      gpgver[2] = pa;  
169      return rc;  /* Check that the underlying crypto engine fullfills the minimal
170  } /* check_crypto_engine */     requirements so all commands work properly. */
171    static int
172    check_crypto_engine (void)
173  static int  {
174  load_keyserver_conf (int quiet)      int ma=1, mi=4, pa=3; /* GPG 1.4.3 */
175  {      int rc;
176      const char * t;  
177      int rc;      rc = check_gnupg_engine (&ma, &mi, &pa);
178        if (rc == -1) {
179      if (reg_prefs.kserv_conf)          msg_box (NULL, _("Could not read GnuPG version."),
180          t = reg_prefs.kserv_conf;                   _("WinPT Error"), MB_ERR);
181      else if (!file_exist_check (get_prog_part ("keyserver.conf", 0)))          return rc;
182          t = get_prog_part ("keyserver.conf", 0);      }
183      else      else if (rc) {
184          t = "keyserver.conf";          log_box (_("WinPT Error"), MB_ERR,
185      rc = kserver_load_conf (t);                   _("Sorry, you need a newer GPG version.\n"
186      if (rc && !quiet)                     "GPG version %d.%d.%d required GPG version "MIN_GPG_VER),
187          msg_box (NULL, winpt_strerror (rc), _("Keyserver"), MB_ERR);                     ma, mi, pa);
188      return rc;          return rc;
189  }      }
190        /* We enable smartcard support for GPG: 1.9 or >= 1.4 */
191        if ((ma == 1 && mi >= 4) || ma > 1)
192  static void          scard_support = 1;
193  enable_mobile_mode (void)  
194  {      gpgver[0] = ma;
195      memset (&reg_prefs, 0, sizeof (reg_prefs));      gpgver[1] = mi;
196      reg_prefs.always_trust = 0;      gpgver[2] = pa;
197      reg_prefs.auto_backup = 0;      return rc;
198      reg_prefs.cache_time = 0;  }
199      reg_prefs.expert = 0;  
200      reg_prefs.keylist_mode = 1;  
201      reg_prefs.kserv_conf = m_strdup ("keyserver.conf");  /* Try to load the keyserver config file. If @quiet is 1
202      reg_prefs.no_zip_mmedia = 1;     do not show any errors. */
203      reg_prefs.use_tmpfiles = 1;  static int
204      reg_prefs.word_wrap = 80;  load_keyserver_conf (int quiet)
205      reg_prefs.use_viewer = 0; /* XXX */  {
206  }      const char * t;
207        int rc;
208  char* get_subkey_fingerprint (gpgme_ctx_t ctx, const char *keyid);  
209        if (reg_prefs.kserv_conf)
210  int WINAPI          t = reg_prefs.kserv_conf;
211  #ifndef WINPT_IPC      else if (!file_exist_check (get_prog_part ("keyserver.conf", 0)))
212  WinMain (HINSTANCE hinst, HINSTANCE hprev, LPSTR cmdline, int showcmd)          t = get_prog_part ("keyserver.conf", 0);
213  #else      else
214  win_main (HINSTANCE hinst, HINSTANCE hprev, LPSTR cmdline, int showcmd)          t = "keyserver.conf";
215  #endif      rc = kserver_load_conf (t);
216  {      if (rc && !quiet)
217      WNDCLASS wc = {0, winpt_main_proc, 0, 0, hinst, 0, 0, 0, 0, PGM_NAME};          msg_box (NULL, winpt_strerror (rc), _("Keyserver"), MB_ERR);
218      HACCEL accel_tab;      return rc;
219      int rc, ec, created = 0, use_cwd = 0, nfiles = 0;  }
220      int first_start = 0, start_gpgprefs = 0;  
221      const char * s;  
222      MSG msg;  /* Enable the mobility mode. */
223      HWND hwnd = NULL;  static void
224    enable_mobile_mode (void)
225      glob_hinst = hinst;  {
226            memset (&reg_prefs, 0, sizeof (reg_prefs));
227      #ifdef _DEBUG      reg_prefs.always_trust = 0;
228      gpgme_set_debug_mode (1);      reg_prefs.auto_backup = 0;
229      #endif      reg_prefs.cache_time = 0;
230        reg_prefs.expert = 0;
231      s = PTD_get_version ();      reg_prefs.keylist_mode = 1;
232      if (strcmp (s, "0.8.0")) {      reg_prefs.kserv_conf = m_strdup ("keyserver.conf");
233          log_box (_("Privacy Tray Dynamic (PTD)"), MB_ERR,      reg_prefs.no_zip_mmedia = 1;
234                   _("Please update your PTD.dll to the newest version, "      reg_prefs.use_tmpfiles = 1;
235                     "the version (%s) you use is too old."), s);      reg_prefs.word_wrap = 80;
236          return 0;      reg_prefs.use_viewer = 0; /* XXX */
237      }  }
238    
239      if (gpg_md_selftest ()) {  char* multi_gnupg_path (void);
240          msg_box (NULL, _("Cryptographic selftest failed."),  
241                   _("WinPT Error"), MB_ERR);  const char * fm_get_file_type (const char *fname, int *r_type);
242          return 0;  
243      }  /* Main entry point. */
244    int WINAPI
245      if (cmdline && stristr (cmdline, "--mobile")) {  WinMain (HINSTANCE hinst, HINSTANCE hprev, LPSTR cmdline, int showcmd)
246          msg_box (NULL, "WARNING: mobile modus is not fully implemented yet!",  {
247                   "WinPT", MB_INFO);      WNDCLASS wc = {0, winpt_main_proc, 0, 0, hinst, 0, 0, 0, 0, PGM_NAME};
248          mobile = 1;      HACCEL accel_tab;
249      }      int rc, ec, created = 0, nfiles = 0;
250        int first_start = 0, start_gpgprefs = 0;
251      set_default_kserver ();      int winpt_inst_found = 0;
252        const char *s;
253      if (!mobile) {      MSG msg;
254          regist_inst_gnupg (1);      HWND hwnd = NULL;
255          regist_inst_winpt (1, &created);  
256      }      glob_hinst = hinst;
257      else {  
258          enable_mobile_mode ();  #ifdef _DEBUG
259          /* XXX: ask for GPG path */      gpg_set_debug_mode (1);
260          created = 1; /* Disable registry writing */      debug = 1;
261      }  #endif
262    
263      if (!created) {      if (gpg_md_selftest ()) {
264          memset (&reg_prefs, 0, sizeof (reg_prefs));          msg_box (NULL, _("Cryptographic selftest failed."),
265          reg_prefs.use_tmpfiles = 1; /* default */                   _("WinPT Error"), MB_ERR);
266          reg_prefs.fm.progress = 0; /* XXX: fix the bug and enable it again */          return 0;
267          get_reg_winpt_prefs (&reg_prefs);      }
268          if (!reg_prefs.no_hotkeys)  
269              hotkeys_modify ();      s = gpgme_check_version (MIN_GPGME_VER);
270      }      if (!s || !*s) {
271            msg_box (NULL, _("A newer GPGME version is needed; at least "MIN_GPGME_VER),
272      rc = gnupg_check_homedir ();                   _("WinPT Error"), MB_ERR);
273      if (rc) {          return 0;
274          log_box (_("WinPT Error"), MB_ERR,      }
275                   _("GPG home directory is not set correctly.\n"  
276                     "Please check the GPG registry settings:\n%s."),      CreateMutex (NULL, TRUE, PGM_NAME);
277                   winpt_strerror (rc));      if (GetLastError () == ERROR_ALREADY_EXISTS)
278          const char * s = get_filename_dlg (GetActiveWindow (), FILE_OPEN,          winpt_inst_found = 1;
279                                             _("Select GPG Public Keyring"),  
280                                             _("GPG Keyrings (*.gpg)\0*.gpg\0\0"),      if (cmdline && stristr (cmdline, "--mobile")) {
281                                             NULL);          msg_box (NULL, "WARNING: mobile modus is not fully implemented yet!",
282          if (s != NULL) {                   "WinPT", MB_INFO);
283              size_t n;          mobile = 1;
284              char * p = strrchr (s, '\\');      }
285              if (!p)  
286                  BUG (0);      set_default_kserver ();
287              n = p - s;  
288              if (n)      if (!mobile) {
289              {          regist_inst_gnupg (1);
290                  char * file = new char[n+1];          regist_inst_winpt (1, &created);
291                  if (!file)      }
292                      BUG (NULL);      else {
293                  memset (file, 0, n);          enable_mobile_mode ();
294                  memcpy (file, s, n);          /* XXX: ask for GPG path */
295                  file[n] = '\0';                  created = 1; /* Disable registry writing */
296                  set_reg_entry_gpg ("HomeDir", file);      }
297                  free_if_alloc (file);  
298                  gnupg_check_homedir (); /* change gpgProgram if needed */      if (!created) {
299              }          memset (&reg_prefs, 0, sizeof (reg_prefs));
300          }          reg_prefs.use_tmpfiles = 1; /* default */
301          else {          reg_prefs.fm.progress = 0; /* XXX: fix the bug and enable it again */
302              msg_box (NULL, _("GPG home directory could not be determited."),          get_reg_winpt_prefs (&reg_prefs);
303                       _("WinPT Error"), MB_ERR);          if (!reg_prefs.no_hotkeys)
304              goto start;              hotkeys_modify ();
305          }          gnupg_load_config ();
306      }      }
307    
308      rc = check_gnupg_prog ();      rc = gnupg_check_homedir ();
309      if (rc) {      if (rc) {
310          if (msg_box (NULL, _("Could not find the GPG binary (gpg.exe).\n"          log_box (_("WinPT Error"), MB_ERR,
311                               "Do you want to start the GPG preferences to "                   _("GPG home directory is not set correctly.\n"
312                               "correct  this problem?"), _("WinPT Error"),                     "Please check the GPG registry settings:\n%s."),
313                               MB_INFO|MB_YESNO) == IDYES)                   winpt_strerror (rc));
314              start_gpgprefs = 1;          s = get_fileopen_dlg (GetActiveWindow (),
315          else                                _("Select GPG Public Keyring"),
316          {                                _("GPG Keyrings (*.gpg)\0*.gpg\0\0"),
317              msg_box (NULL, winpt_strerror (rc), _("WinPT Error"), MB_ERR);                                NULL);
318              return 0;          if (s != NULL) {
319          }              size_t n;
320      }              char * p = strrchr (s, '\\');
321                if (!p)
322      rc = gnupg_access_files ();                  BUG (0);
323      if (!start_gpgprefs && rc)              n = p - s;
324      {              if (n) {
325          if (rc == WPTERR_GPG_KEYRINGS || rc == WPTERR_GPG_OPT_KEYRINGS)                  char * file = new char[n+1];
326          {                  if (!file)
327              ec = msg_box (NULL,                      BUG (NULL);
328                  _("Could not access and/or find the public and secret keyring.\n"                  memset (file, 0, n);
329                    "If this is an accident, quit the program and fix it.\n\n"                  memcpy (file, s, n);
330                    "Continue if you want that WinPT offers you more choices.\n"),                  file[n] = '\0';        
331                    "WinPT", MB_INFO|MB_YESNO);                  set_reg_entry_gpg ("HomeDir", file);
332              if (ec == IDYES)                  free_if_alloc (file);
333                  first_start = 1;                  gnupg_check_homedir (); /* change gpgProgram if needed */
334          }              }
335          if (!first_start)          }
336          {          else {
337              msg_box (NULL, winpt_strerror (rc), _("WinPT Error"), MB_ERR);              msg_box (NULL, _("GPG home directory could not be determited."),
338              return 0;                       _("WinPT Error"), MB_ERR);
339          }              goto start;
340      }          }
341        }
342      if (!first_start)  
343      {      rc = check_gnupg_prog ();
344          rc = gpg_check_permissions (1);      if (rc) {
345          if (rc && rc == 2)          if (msg_box (NULL, _("Could not find the GPG binary (gpg.exe).\n"
346              gpg_read_only = 1;                               "Do you want to start the GPG preferences to "
347          else if (rc)                               "correct  this problem?"), _("WinPT Error"),
348              return 0;                               MB_INFO|MB_YESNO) == IDYES)
349      }              start_gpgprefs = 1;
350            else
351      load_gettext ();          {
352      init_gnupg_table ();              msg_box (NULL, winpt_strerror (rc), _("WinPT Error"), MB_ERR);
353                return 0;
354      nfiles = fm_parse_command_line (cmdline);          }
355      if (nfiles > 0)      }
356          return 0;  
357        rc = gnupg_access_files ();
358      if (cmdline && stristr (cmdline, "--wipe-freespace")) {      if (!start_gpgprefs && rc) {
359          dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_SPACE_SECDEL,          if (rc == WPTERR_GPG_KEYRINGS || rc == WPTERR_GPG_OPT_KEYRINGS) {
360                              GetDesktopWindow(), space_wipefrees_dlg_proc, NULL,              ec = msg_box (NULL,
361                              _("Wipe Free Space"), IDS_WINPT_SPACE_SECDEL);                  _("Could not access and/or find the public and secret keyring.\n"
362          free_gnupg_table ();                    "If this is an accident, quit the program and fix it.\n\n"
363          return 0;                    "Continue if you want that WinPT offers you more choices.\n"),
364      }                    "WinPT", MB_INFO|MB_YESNO);
365                if (ec == IDYES)
366      load_keyserver_conf (cmdline? 1 : 0);                  first_start = 1;
367      if (start_keymanager) {          }
368          dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_KEYMISC,          if (!first_start) {
369                              GetDesktopWindow(), keymanager_dlg_proc, NULL,              msg_box (NULL, winpt_strerror (rc), _("WinPT Error"), MB_ERR);
370                              _("Key Manager"), IDS_WINPT_KEYMISC);              return 0;
371          keycache_release ();          }
372          free_gnupg_table ();      }
373          return 0;  
374      }      if (!first_start) {
375            rc = gpg_check_permissions (1);
376      if (cmdline && (stristr (cmdline, "--keymanager")          if (rc && rc == 2)
377                  || stristr (cmdline, "--cardmanager"))) {              gpg_read_only = 1;
378          update_keycache (GetDesktopWindow ());          else if (rc)
379          if (stristr (cmdline, "keymanager"))              return 0;
380              dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_KEYMISC,      }
381                              GetDesktopWindow(), keymanager_dlg_proc, NULL,  
382                              _("Key Manager"), IDS_WINPT_KEYMISC);        load_gettext (winpt_inst_found);
383          else {      init_gnupg_table ();
384              gpg_card_t crd = smartcard_init ();  
385              if (crd)      nfiles = fm_parse_command_line (cmdline);
386                  dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_CARD_EDIT,      if (nfiles > 0) {
387                                    GetDesktopWindow(), card_edit_dlg_proc,          free_gnupg_table ();
388                                    (LPARAM)crd, _("Card Manager"),          return 0;
389                                    IDS_WINPT_CARD_EDIT);      }
390              gpg_card_release (crd);  
391          }      if (cmdline && stristr (cmdline, "--wipe-freespace")) {
392          keycache_release ();          dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_SPACE_SECDEL,
393          free_gnupg_table ();                              GetDesktopWindow(), space_wipefrees_dlg_proc, 0,
394          return 0;                              _("Wipe Free Space"), IDS_WINPT_SPACE_SECDEL);
395      }          free_gnupg_table ();
396            return 0;
397      CreateMutex (NULL, TRUE, PGM_NAME);      }
398      if (GetLastError () == ERROR_ALREADY_EXISTS) {  
399          free_gnupg_table ();      load_keyserver_conf (cmdline? 1 : 0);
400          return 0;  
401      }      if (cmdline && (stristr (cmdline, "--keymanager")
402                    || stristr (cmdline, "--cardmanager"))) {
403      if (cmdline) {          update_keycache (GetDesktopWindow ());
404          if (stristr (cmdline, "--enable-debug") || stristr (cmdline, "--debug")) {          if (stristr (cmdline, "keymanager"))
405              gpg_set_debug_mode (1);              dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_KEYMISC,
406              winpt_debug_msg ();                              GetDesktopWindow(), keymanager_dlg_proc, 0,
407              debug = 1;                              _("Key Manager"), IDS_WINPT_KEYMISC);  
408          }          else {
409      }              gpg_card_t crd = gpg_card_load ();
410                if (crd)
411      wc.hIcon = LoadIcon (glob_hinst, MAKEINTRESOURCE (IDI_WINPT));                  dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_CARD_EDIT,
412      rc = RegisterClass (&wc);                                    GetDesktopWindow(), card_edit_dlg_proc,
413      if (rc == FALSE) {                                    (LPARAM)crd, _("Card Manager"),
414          msg_box (NULL, _("Could not register window class"), _("WinPT Error"), MB_ERR);                                    IDS_WINPT_CARD_EDIT);
415          free_gnupg_table ();              gpg_card_release (crd);
416          return 0;          }
417      }          keycache_release (0);
418            free_gnupg_table ();
419      hwnd = CreateWindow (PGM_NAME,          return 0;
420                           PGM_NAME,      }
421                           0, 0, 0, 0, 0,  
422                           NULL,      /* If we found another WinPT instance, just quit to avoid it
423                           NULL,         will be executed twice. */
424                           hinst,      if (winpt_inst_found) {
425                           NULL);          log_debug ("%s", "WinMain: WinPT is already running.");
426      if (hwnd == NULL) {          free_gnupg_table ();
427          msg_box (NULL, _("Could not create window"), _("WinPT Error"), MB_ERR);          return 0;
428          free_gnupg_table ();      }
429          return 0;  
430      }      if (cmdline) {
431      glob_hwnd = hwnd;          if (stristr (cmdline, "--enable-debug") || stristr (cmdline, "--debug")) {
432      UpdateWindow (hwnd);              gpg_set_debug_mode (1);
433                winpt_debug_msg ();
434      if (!first_start && !start_gpgprefs) {              debug = 1;
435          gnupg_backup_options ();                  }
436          rc = check_crypto_engine ();      }
437          if (rc) {  
438              DestroyWindow (hwnd);      wc.hIcon = LoadIcon (glob_hinst, MAKEINTRESOURCE (IDI_WINPT));
439              free_gnupg_table ();      rc = RegisterClass (&wc);
440              return 0;      if (rc == FALSE) {
441          }          msg_box (NULL, _("Could not register window class"),
442      }                   _("WinPT Error"), MB_ERR);
443                free_gnupg_table ();
444      if (start_gpgprefs) {          return 0;
445          char *ring;      }
446          size_t size = 0;  
447          DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_GPGPREFS, hwnd,      hwnd = CreateWindow (PGM_NAME,
448                          gpgprefs_dlg_proc, NULL);                           PGM_NAME,
449          ring = get_gnupg_keyring (0, !NO_STRICT);                           0, 0, 0, 0, 0,
450          if (gnupg_access_keyring (0) == -1 && get_file_size (ring) == 0)                           NULL,
451              first_start = 1; /* The keyring is empty! */                           NULL,
452          free_if_alloc (ring);                           hinst,
453      }                           NULL);
454        if (hwnd == NULL) {
455      if (first_start) {          msg_box (NULL, _("Could not create window"), _("WinPT Error"), MB_ERR);
456          struct first_start_s fs;          free_gnupg_table ();
457          struct genkey_s c;          return 0;
458          HWND h;      }
459  start:      glob_hwnd = hwnd;
460          h = GetDesktopWindow ();      UpdateWindow (hwnd);
461          DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_GPGPREFS, h,  
462                              gpgprefs_dlg_proc, NULL);      if (!first_start && !start_gpgprefs) {
463          DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_FIRST, h,          gnupg_backup_options ();        
464                          first_run_dlg_proc, (LPARAM)&fs);          rc = check_crypto_engine ();
465          switch (fs.choice) {          if (rc) {
466          case SETUP_KEYGEN:              DestroyWindow (hwnd);
467              c.interactive = 1;              free_gnupg_table ();
468              c.first_start = 1;              return 0;
469              rc = DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_KEYWIZARD,          }
470                                   h, keygen_wizard_dlg_proc, (LPARAM)&c);      }
471              if (!rc)      
472                  goto start;      if (start_gpgprefs) {
473              break;          char *ring;
474    
475          case SETUP_IMPORT:          DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_GPGPREFS, hwnd,
476              rc = gnupg_copy_keyrings ();                          gpgprefs_dlg_proc, 0);
477              if (rc) {          ring = get_gnupg_keyring (0, !NO_STRICT);
478                  msg_box (hwnd, winpt_strerror (rc), _("WinPT Error"), MB_ERR);          if (gnupg_access_keyring (0) == -1 && get_file_size (ring) == 0)
479                  goto start;              first_start = 1; /* The keyring is empty! */
480              }          free_if_alloc (ring);
481              break;      }
482    
483          case -1:      if (first_start) {
484              DestroyWindow (hwnd);          struct first_start_s fs;
485              free_gnupg_table ();          struct genkey_s c;
486              return 0;          HWND h;
487          }  start:
488          update_keycache (hwnd);          h = GetDesktopWindow ();
489          check_crypto_engine ();          DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_GPGPREFS, h,
490      }                              gpgprefs_dlg_proc, 0);
491      else {          DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_FIRST, h,
492          gpgme_keycache_t c;                          first_run_dlg_proc, (LPARAM)&fs);
493          update_keycache (hwnd);          switch (fs.choice) {
494          c = keycache_get_ctx (1);          case SETUP_KEYGEN:
495          if (!c || !gpgme_keycache_count (c)) {              c.interactive = 1;
496              gnupg_display_error ();              c.first_start = 1;
497              msg_box (hwnd, _("The keycache was not initialized or is empty.\n"              rc = DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_KEYWIZARD,
498                               "Please check your GPG config (keyrings, pathes...)"),                                   h, keygen_wizard_dlg_proc, (LPARAM)&c);
499                               _("WinPT Error"), MB_ERR);              if (!rc)
500              ec = msg_box (NULL, _("It seems that GPG is not set properly.\n"                  goto start;
501                                    "Do you want to start the GPG preferences dialog?"),              break;
502                              "WinPT", MB_INFO|MB_YESNO);  
503              if (ec == IDYES) {          case SETUP_IMPORT:
504                  DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_GPGPREFS, hwnd,              rc = gnupg_copy_keyrings ();
505                                  gpgprefs_dlg_proc, NULL);              if (rc) {
506                  update_keycache (hwnd);                  msg_box (hwnd, winpt_strerror (rc), _("WinPT Error"), MB_ERR);
507              }                  goto start;
508              else {              }
509                  DestroyWindow (hwnd);              break;
510                  free_gnupg_table ();  
511                  return 0;          case -1:
512              }              DestroyWindow (hwnd);
513          }              free_gnupg_table ();
514          if (check_default_key (c)) {              return 0;
515              char * p = get_gnupg_default_key ();          }
516              log_box (_("WinPT Error"), MB_ERR,          update_keycache (hwnd);
517                       _("Default key from the GPG options file could not be found.\n"          check_crypto_engine ();
518                         "Please check your gpg.conf (options) to correct this:\n\n"      }
519                         "%s: public key not found."), p? p : "[null]");      else {
520              free_if_alloc (p);          gpg_keycache_t c;
521              DestroyWindow (hwnd);          update_keycache (hwnd);
522              free_gnupg_table ();          c = keycache_get_ctx (1);
523              return 0;          if (!c || !gpg_keycache_get_size (c)) {
524          }              gnupg_display_error ();
525          if (count_insecure_elgkeys ())              msg_box (hwnd, _("The keycache was not initialized or is empty.\n"
526              DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_ELGWARN, glob_hwnd,                               "Please check your GPG config (keyrings, pathes...)"),
527                              elgamal_warn_dlg_proc, NULL);                               _("WinPT Error"), MB_ERR);
528      }              ec = msg_box (NULL, _("It seems that GPG is not set properly.\n"
529                                      "Do you want to start the GPG preferences dialog?"),
530      accel_tab = LoadAccelerators (glob_hinst, (LPCTSTR)IDR_WINPT_ACCELERATOR);                              "WinPT", MB_INFO|MB_YESNO);
531      keyring_check_last_access (); /* init */              if (ec == IDYES) {
532      while (GetMessage (&msg, hwnd, 0, 0)) {                  DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_GPGPREFS, hwnd,
533          if (!TranslateAccelerator (msg.hwnd, accel_tab, &msg)) {                                  gpgprefs_dlg_proc, 0);
534              TranslateMessage (&msg);                  update_keycache (hwnd);
535              DispatchMessage (&msg);              }
536          }              else {
537      }                  DestroyWindow (hwnd);
538                            free_gnupg_table ();
539      return 0;                  return 0;
540  } /* WinMain */              }
541            }
542            if (check_default_key (c)) {
543                char * p = get_gnupg_default_key ();
544                log_box (_("WinPT Error"), MB_ERR,
545                         _("Default key from the GPG options file could not be found.\n"
546                           "Please check your gpg.conf (options) to correct this:\n\n"
547                           "%s: public key not found."), p? p : "[null]");
548                free_if_alloc (p);
549                DestroyWindow (hwnd);
550                free_gnupg_table ();
551                return 0;
552            }
553            if (count_insecure_elgkeys ())
554                DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_ELGWARN, glob_hwnd,
555                                elgamal_warn_dlg_proc, 0);
556        }
557    
558        accel_tab = LoadAccelerators (glob_hinst, (LPCTSTR)IDR_WINPT_ACCELERATOR);
559        keyring_check_last_access (); /* init */
560        while (GetMessage (&msg, hwnd, 0, 0)) {
561            if (!TranslateAccelerator (msg.hwnd, accel_tab, &msg)) {
562                TranslateMessage (&msg);
563                DispatchMessage (&msg);
564            }
565        }
566            
567        return 0;
568    }

Legend:
Removed from v.23  
changed lines
  Added in v.73

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26