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

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26