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

Legend:
Removed from v.4  
changed lines
  Added in v.66

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26