/[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 32 by twoaday, Mon Oct 24 08:03:48 2005 UTC revision 197 by twoaday, Mon Apr 10 07:38:06 2006 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-2006 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"  #include <shlobj.h>
26  #include "wptErrors.h"  
27  #include "wptGPG.h"  #include "resource.h"
28  #include "wptRegistry.h"  #include "wptTypes.h"
29  #include "wptCommonCtl.h"  #include "wptW32API.h"
30  #include "wptDlgs.h"  #include "wptVersion.h"
31  #include "wptNLS.h"  #include "wptErrors.h"
32  #include "wptKeyserver.h"  #include "wptGPG.h"
33  #include "wptCard.h"  #include "wptRegistry.h"
34  #include "wptFileManager.h"  #include "wptCommonCtl.h"
35  #include "wptContext.h"  #include "wptDlgs.h"
36  #include "wptCardEdit.h"  #include "wptNLS.h"
37    #include "wptKeyserver.h"
38    #include "wptCard.h"
39  #define MIN_GPG_VER   "1.4.3"   /* Minimal GPG version. */  #include "wptFileManager.h"
40  #define MIN_GPGME_VER "1.2.0"   /* Minimal GPGME version. */  #include "wptContext.h"
41  #define MIN_PTD_VER   "0.8.1"   /* Minimal PTD version. */  #include "wptCardEdit.h"
42    #include "wptCrypto.h"
43    #include "wptUTF8.h"
44  HINSTANCE glob_hinst;   /* global instance for the dialogs */  
45  HWND glob_hwnd;         /* global window handle for the dialogs */  void remove_crit_file_attrs (const char *fname, int force);
46  HWND activ_hwnd;  
47  LOCK mo_file;  
48  int scard_support = 0;  HINSTANCE glob_hinst;   /* global instance for the dialogs */
49  int debug = 0;  HWND glob_hwnd;         /* global window handle for the dialogs */
50  int mobile = 0;  HWND activ_hwnd;
51  int gpg_read_only = 0;  int scard_support = 0;
52  char gpgver[3];  int debug = 0;
53    int mobile_mode_active = 0;
54    int gpg_read_only = 0;
55  /* Load the key cache and rebuild the signature cache. */  char gpgver[3];
56  static void  
57  update_keycache (HWND hwnd)  
58  {  /* Load the key cache and rebuild the signature cache. */
59      refresh_cache_s rcs = {0};  void
60      rcs.kr_reload = 0;  update_keycache (HWND hwnd)
61      rcs.kr_update = 1;  {
62      rcs.tr_update = 1;      refresh_cache_s rcs = {0};
63      DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_KEYCACHE, hwnd,      rcs.kr_reload = 0;
64                      keycache_dlg_proc, (LPARAM)&rcs);      rcs.kr_update = 1;
65  }      rcs.tr_update = 1;
66        DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_KEYCACHE, hwnd,
67                        keycache_dlg_proc, (LPARAM)&rcs);
68  /* Set GPGME debug mode. If @val is 0, the debug mode is disabled. */  }
69  void  
70  gpg_set_debug_mode (int val)  
71  {        /* Set GPGME debug mode. If @val is 0, the debug mode is disabled. */
72      if (val)  void
73          putenv ("GPGME_DEBUG=5:gpgme.dbg");  gpg_set_debug_mode (int val)
74      else  {
75          putenv ("GPGME_DEBUG=");      static char buf[256];
76  }      char tmp[128];
77        
78        /* XXX: no gpgme.dbg is created. */
79  /* Return the name of the gettext language file. */      if (val > 0) {
80  static char*          GetTempPath (sizeof (tmp)-1, tmp);
81  get_gettext_lang (void)          _snprintf (buf, sizeof (buf)-1, "GPGME_DEBUG=5:%sgpgme.dbg", tmp);
82  {              putenv (buf);
83      char *fname;      }
84      fname = get_reg_entry_mo ();      else
85      if (!fname)          putenv ("GPGME_DEBUG=");
86          return NULL;  }
87      return fname;  
88  }  
89    /* Initialize the gettext sub system. */
90    static void
91  /* Initialize the gettext sub system. */  load_gettext (void)
92  static void  {
93  load_gettext (void)      char *nls = NULL;
94  {  
95      char *nls = NULL;      /* Return the name of the gettext language file. */
96      char *file = NULL;      nls = get_reg_entry_mo ();
97        if (nls != NULL) {
98      nls = get_gettext_lang ();          set_gettext_file ("winpt", nls);
99      if (nls) {          free_if_alloc (nls);
100          set_gettext_file ("winpt", nls);      }
101          file = make_filename (nls, "winpt", "mo");  }
102          if (!file_exist_check (nls) && init_file_lock (&mo_file, file))  {  
103              msg_box (NULL, _("Could not initizalize file lock.\n"  
104                               "Native Language Support"),  /* Return true if the GPG environment is useable. */
105                       _("WinPT Error"), MB_ERR);  static bool
106          }  gpg_prefs_ok (void)
107          free_if_alloc (nls);  {
108          free_if_alloc (file);      char *p;
109      }  
110  }      p = get_reg_entry_gpg4win ("gpg.exe");
111        if (!p || file_exist_check (p) != 0) {
112            free_if_alloc (p);
113  /* check if the default key from the gpg.conf file is available in the          p = get_reg_entry_gpg ("gpgProgram");
114     keyring. if not, bail out because encryption won't work properly then. */          if (!p || file_exist_check (p) != 0) {
115  static int              free_if_alloc (p);
116  check_default_key (gpg_keycache_t kc)              log_debug ("gpg_prefs_ok: could not locate gpg.exe");
117  {              return false;
118      gpgme_key_t key;          }
119      gpgme_error_t err = GPG_ERR_NO_ERROR;      }
120      char * defkey;      free_if_alloc (p);
121        p = get_reg_entry_gpg4win (NULL);    
122      defkey = get_gnupg_default_key ();      if (!p || dir_exist_check (p) != 0) {
123      if (defkey)          free_if_alloc (p);
124          err = gpg_keycache_find_key (kc, defkey, 0, &key);          p = get_reg_entry_gpg ("HomeDir");
125      free_if_alloc (defkey);          if (!p || dir_exist_check (p) != 0) {
126      return err? -1 : 0;              free_if_alloc (p);
127  }              log_debug ("gpg_prefs_ok: could not determine home directory");
128                return false;
129            }
130  /* Return the WinPT program file name (with full pathname). */      }
131  static const char *      free_if_alloc (p);
132  get_prog_part (const char * fname, int use_cwd)      return true;
133  {  }
134      static char program[512];  
135      char currdir[256];  
136      char *cmd = NULL;  /* Check gpg files if they are read-only and ask the user
137      int j;     if this should be corrected. */
138            static void
139      memset (currdir, 0, DIM (currdir));  check_readonly_attr (const char *homedir)
140      memset (program, 0, DIM (program));  {
141                const char *files[] = {"pubring.gpg", "secring.gpg", "trustdb.gpg", NULL};
142      if (use_cwd) {      char *file;
143          GetCurrentDirectory (DIM (currdir)-1, currdir);      int i;
144          _snprintf (program, DIM (program)-1, "%s\\%s", currdir, fname);  
145      }      for (i=0; files[i] != NULL; i++) {
146      else {          file = make_filename (homedir, files[i], NULL);
147          cmd = GetCommandLine ();          remove_crit_file_attrs (file, 0);
148          if (cmd == NULL)          free_if_alloc (file);
149              return NULL;      }
150          strncpy (currdir, cmd, sizeof (currdir)-1);  }
151          j = strlen (currdir);  
152          while (j--) {  
153              if (currdir[j] == '\\')  /* Load the GPG environment. On the first start, some
154                  break;     checks are performed to find out in what state GPG is.
155          }     Return value: 0  everything OK.
156          currdir[j] = 0;                   >0  fatal error.
157          _snprintf (program, DIM (program)-1, "%s\\%s", currdir + 1, fname);                   -1 public keyring is empty or does not exist. */
158      }  static int
159      return program;  load_gpg_env (void)
160  }  {
161        SECURITY_ATTRIBUTES sec_attr;
162        char *p;
163  /* Check that the underlying crypto engine fullfills the minimal      char *pkr;
164     requirements so all commands work properly. */  
165  static int      p = get_reg_entry_gpg4win ("gpg.exe");
166  check_crypto_engine (void)      if (!p)
167  {          return (1);
168      int ma=1, mi=4, pa=3; /* GPG 1.4.3 */      if (file_exist_check (p)) {
169      int rc;          free_if_alloc (p);
170            return (1);
171      rc = check_gnupg_engine (&ma, &mi, &pa);      }
172      if (rc == -1) {      free_if_alloc (p);
173          msg_box (NULL, _("Could not read GnuPG version."),  
174                   _("WinPT Error"), MB_ERR);      p = get_reg_entry_gpg ("HomeDir");
175          return rc;      if (!p || dir_exist_check (p) != 0) {
176      }          free_if_alloc (p);
177      else if (rc) {          p = multi_gnupg_path (0);
178          log_box (_("WinPT Error"), MB_ERR,      }
179                   _("Sorry, you need a newer GPG version.\n"      if (p && dir_exist_check (p)) {
180                     "GPG version %d.%d.%d required GPG version "MIN_GPG_VER),          memset (&sec_attr, 0, sizeof (sec_attr));
181                     ma, mi, pa);          sec_attr.nLength = sizeof (sec_attr);
182          return rc;          if (!CreateDirectory (p, &sec_attr)) {
183      }              msg_box (NULL, _("Could not create GPG home directory"),
184      /* We enable smartcard support for GPG: 1.9 or >= 1.4 */                       _("WinPT Error"), MB_ERR);
185      if (ma >= 1 && mi >= 4)              free_if_alloc (p);
186          scard_support = 1;              return (2);
187            }
188      gpgver[0] = ma;      }
189      gpgver[1] = mi;      check_readonly_attr (p);
190      gpgver[2] = pa;      pkr = make_filename (p, "pubring", "gpg");
191      return rc;      free_if_alloc (p);
192  }      if (!pkr)
193            return -1;
194        if (get_file_size (pkr) == 0) {
195  /* Try to load the keyserver config file. If @quiet is 1          free_if_alloc (pkr);
196     do not show any errors. */          return -1;
197  static int      }
198  load_keyserver_conf (int quiet)      return 0;
199  {  }
200      const char * t;  
201      int rc;  
202    /* check if the default key from the gpg.conf file is available in the
203      if (reg_prefs.kserv_conf)     keyring. if not, bail out because encryption won't work properly then. */
204          t = reg_prefs.kserv_conf;  static int
205      else if (!file_exist_check (get_prog_part ("keyserver.conf", 0)))  check_default_key (gpg_keycache_t kc)
206          t = get_prog_part ("keyserver.conf", 0);  {
207      else      gpgme_key_t key;
208          t = "keyserver.conf";      gpgme_error_t err = gpg_error (GPG_ERR_NO_ERROR);
209      rc = kserver_load_conf (t);      char *defkey;
210      if (rc && !quiet)  
211          msg_box (NULL, winpt_strerror (rc), _("Keyserver"), MB_ERR);      defkey = get_gnupg_default_key ();
212      return rc;      if (defkey)
213  }          err = gpg_keycache_find_key (kc, defkey, 0, &key);
214        else
215            msg_box (NULL, _("No useable secret key found."),
216  /* Enable the mobility mode. */                   _("WinPT Error"), MB_ERR);
217  static void      free_if_alloc (defkey);
218  enable_mobile_mode (void)      return err? -1 : 0;
219  {  }
220      memset (&reg_prefs, 0, sizeof (reg_prefs));  
221      reg_prefs.always_trust = 0;  
222      reg_prefs.auto_backup = 0;  /* Return the WinPT program file name (with full pathname). */
223      reg_prefs.cache_time = 0;  static const char*
224      reg_prefs.expert = 0;  get_prog_part (const char * fname, int use_cwd)
225      reg_prefs.keylist_mode = 1;  {
226      reg_prefs.kserv_conf = m_strdup ("keyserver.conf");      static char program[512];
227      reg_prefs.no_zip_mmedia = 1;      char currdir[256];
228      reg_prefs.use_tmpfiles = 1;      char *cmd = NULL;
229      reg_prefs.word_wrap = 80;      int j;
230      reg_prefs.use_viewer = 0; /* XXX */          
231  }      memset (currdir, 0, DIM (currdir));
232        memset (program, 0, DIM (program));
233            
234  /* Main entry point. */      if (use_cwd) {
235  int WINAPI          GetCurrentDirectory (DIM (currdir)-1, currdir);
236  WinMain (HINSTANCE hinst, HINSTANCE hprev, LPSTR cmdline, int showcmd)          _snprintf (program, DIM (program)-1, "%s\\%s", currdir, fname);
237  {      }
238      WNDCLASS wc = {0, winpt_main_proc, 0, 0, hinst, 0, 0, 0, 0, PGM_NAME};      else {
239      HACCEL accel_tab;          cmd = GetCommandLine ();
240      int rc, ec, created = 0, use_cwd = 0, nfiles = 0;          if (cmd == NULL)
241      int first_start = 0, start_gpgprefs = 0;              return NULL;
242      const char * s;          strncpy (currdir, cmd, sizeof (currdir)-1);
243      MSG msg;          j = strlen (currdir);
244      HWND hwnd = NULL;          while (j--) {
245                if (currdir[j] == '\\')
246      glob_hinst = hinst;                  break;
247            }
248      #ifdef _DEBUG          currdir[j] = 0;
249      gpg_set_debug_mode (1);          _snprintf (program, DIM (program)-1, "%s\\%s", currdir + 1, fname);
250      debug = 1;      }
251      #endif      return program;
252    }
253      s = PTD_get_version ();  
254      if (strcmp (s, MIN_PTD_VER)) {  
255          log_box (_("Privacy Tray Dynamic (PTD)"), MB_ERR,  /* Check that the underlying crypto engine fullfills the minimal
256                   _("Please update your PTD.dll to the newest version, "     requirements so all commands work properly. */
257                     "the version (%s) you use is too old."), s);  static bool
258          return 0;  check_crypto_engine (void)
259      }  {
260        int ma = 0, mi = 0, pa = 0;
261      if (gpg_md_selftest ()) {      int rc;
262          msg_box (NULL, _("Cryptographic selftest failed."),  
263                   _("WinPT Error"), MB_ERR);      rc = check_gnupg_engine (NEED_GPG_VERSION, &ma, &mi, &pa);
264          return 0;      if (rc == -1) {
265      }          msg_box (NULL, _("Could not read GnuPG version."),
266                     _("WinPT Error"), MB_ERR);
267      s = gpgme_check_version (MIN_GPGME_VER);          return false;
268      if (!s || !*s) {      }
269          msg_box (NULL, _("A newer GPGME version is needed; at least "MIN_GPGME_VER),      else if (rc) {
270                   _("WinPT Error"), MB_ERR);          log_box (_("WinPT Error"), MB_ERR,
271          return 0;                   _("Sorry, you need a newer GPG version.\n"
272      }                     "GPG version %d.%d.%d required GPG version "NEED_GPG_VERSION),
273                       ma, mi, pa);
274      if (cmdline && stristr (cmdline, "--mobile")) {          return false;
275          msg_box (NULL, "WARNING: mobile modus is not fully implemented yet!",      }
276                   "WinPT", MB_INFO);      /* We enable smartcard support for GPG: >= 2 or >= 1.4.3 */
277          mobile = 1;      if (ma > 1 || pa >= 3)
278      }          scard_support = 1;
279    
280      set_default_kserver ();      gpgver[0] = ma;
281        gpgver[1] = mi;
282      if (!mobile) {      gpgver[2] = pa;
283          regist_inst_gnupg (1);      return true;
284          regist_inst_winpt (1, &created);  }
285      }  
286      else {  
287          enable_mobile_mode ();  /* Try to load the keyserver config file. If @quiet is 1
288          /* XXX: ask for GPG path */     do not show any errors. */
289          created = 1; /* Disable registry writing */  static int
290      }  load_keyserver_conf (int quiet)
291    {
292      if (!created) {      char *buf;
293          memset (&reg_prefs, 0, sizeof (reg_prefs));      const char *t, *conf;
294          reg_prefs.use_tmpfiles = 1; /* default */      int rc;
295          reg_prefs.fm.progress = 0; /* XXX: fix the bug and enable it again */  
296          get_reg_winpt_prefs (&reg_prefs);      /* Create $APPDATA\winpt if needed. */
297          if (!reg_prefs.no_hotkeys)      buf = make_special_filename (CSIDL_APPDATA, "winpt", NULL);
298              hotkeys_modify ();      if (buf && dir_exist_check (buf) && !CreateDirectory (buf, NULL)) {
299      }          MessageBox (NULL, _("Failed to create WinPT directory"),
300                        _("Keyserver"), MB_ERR);
301      rc = gnupg_check_homedir ();          free_if_alloc (buf);
302      if (rc) {          return -1;
303          log_box (_("WinPT Error"), MB_ERR,      }
304                   _("GPG home directory is not set correctly.\n"      free_if_alloc (buf);
305                     "Please check the GPG registry settings:\n%s."),  
306                   winpt_strerror (rc));      /* Check for $APPDATA\winpt\keyserver.conf */
307          const char * s = get_fileopen_dlg (GetActiveWindow (),      buf = make_special_filename (CSIDL_APPDATA, "winpt\\keyserver.conf", NULL);
308                                             _("Select GPG Public Keyring"),  
309                                             _("GPG Keyrings (*.gpg)\0*.gpg\0\0"),      conf = get_prog_part ("keyserver.conf", 0);
310                                             NULL);      if (!file_exist_check (conf))
311          if (s != NULL) {          t = conf;
312              size_t n;      else
313              char * p = strrchr (s, '\\');          t = "keyserver.conf";
314              if (!p)      if (file_exist_check (t) == 0 && file_exist_check (buf) != 0) {
315                  BUG (0);          if (!CopyFile (t, buf, FALSE)) {
316              n = p - s;              MessageBox (NULL, _("Failed to copy the keyserver.conf"),
317              if (n)                          _("Keyserver"), MB_ERR);
318              {              free_if_alloc (buf);
319                  char * file = new char[n+1];              return -1;
320                  if (!file)          }
321                      BUG (NULL);          t = buf;
322                  memset (file, 0, n);      }
323                  memcpy (file, s, n);      else
324                  file[n] = '\0';                  t = buf;
325                  set_reg_entry_gpg ("HomeDir", file);      
326                  free_if_alloc (file);      rc = kserver_load_conf (t);
327                  gnupg_check_homedir (); /* change gpgProgram if needed */      if (rc && !quiet)
328              }          msg_box (NULL, winpt_strerror (rc), _("Keyserver"), MB_ERR);
329          }      else {
330          else {          free_if_alloc (reg_prefs.kserv_conf);
331              msg_box (NULL, _("GPG home directory could not be determited."),          reg_prefs.kserv_conf = m_strdup (t);
332                       _("WinPT Error"), MB_ERR);      }
333              goto start;      free_if_alloc (buf);
334          }      return rc;
335      }  }
336    
337      rc = check_gnupg_prog ();  
338      if (rc) {  /* Check if both keyrings are empty. This indicates that
339          if (msg_box (NULL, _("Could not find the GPG binary (gpg.exe).\n"     WinPT should offer to generate a key pair. */
340                               "Do you want to start the GPG preferences to "  static bool
341                               "correct  this problem?"), _("WinPT Error"),  check_for_empty_keyrings (bool pub_only)
342                               MB_INFO|MB_YESNO) == IDYES)  {
343              start_gpgprefs = 1;      char *p;
344          else      int n = 0;
345          {  
346              msg_box (NULL, winpt_strerror (rc), _("WinPT Error"), MB_ERR);      p = get_gnupg_keyring (1, 0);
347              return 0;      if (file_exist_check (p) == 0 && get_file_size (p) == 0)
348          }          n++;
349      }      free_if_alloc (p);
350        if (pub_only)
351      rc = gnupg_access_files ();          return n == 1? true : false;
352      if (!start_gpgprefs && rc) {      p = get_gnupg_keyring (0, 0);
353          if (rc == WPTERR_GPG_KEYRINGS || rc == WPTERR_GPG_OPT_KEYRINGS) {      if (file_exist_check (p) == 0 && get_file_size (p) == 0)
354              ec = msg_box (NULL,          n++;
355                  _("Could not access and/or find the public and secret keyring.\n"      free_if_alloc (p);
356                    "If this is an accident, quit the program and fix it.\n\n"      return n==2? true : false;
357                    "Continue if you want that WinPT offers you more choices.\n"),  }
358                    "WinPT", MB_INFO|MB_YESNO);  
359              if (ec == IDYES)  
360                  first_start = 1;  /* Enable the mobility mode. */
361          }  static int
362          if (!first_start) {  enable_mobile_mode (void)
363              msg_box (NULL, winpt_strerror (rc), _("WinPT Error"), MB_ERR);  {
364              return 0;      if (dir_exist_check ("temp") != 0) {
365          }          if (!CreateDirectory ("temp", NULL)) {
366      }              MessageBox (NULL, "Could not create mobile temp directory",
367                            "WinPT Mobile Error", MB_ERR);
368      if (!first_start) {              return -1;
369          rc = gpg_check_permissions (1);          }
370          if (rc && rc == 2)      }
371              gpg_read_only = 1;  
372          else if (rc)      memset (&reg_prefs, 0, sizeof (reg_prefs));
373              return 0;      reg_prefs.always_trust = 0;
374      }      reg_prefs.auto_backup = 0;
375        reg_prefs.cache_time = 0;
376      load_gettext ();      reg_prefs.expert = 0;
377      init_gnupg_table ();      reg_prefs.kserv_conf = m_strdup ("keyserver.conf");
378        reg_prefs.no_zip_mmedia = 1;
379      nfiles = fm_parse_command_line (cmdline);      reg_prefs.use_tmpfiles = 1;
380      if (nfiles > 0) {      reg_prefs.word_wrap = 80;
381          free_gnupg_table ();      reg_prefs.use_viewer = 0; /* XXX */
382          return 0;      return 0;
383      }  }
384    
385      if (cmdline && stristr (cmdline, "--wipe-freespace")) {  
386          dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_SPACE_SECDEL,  void
387                              GetDesktopWindow(), space_wipefrees_dlg_proc, NULL,  set_default_keyserver (void)
388                              _("Wipe Free Space"), IDS_WINPT_SPACE_SECDEL);  {
389          free_gnupg_table ();      char *host = get_reg_entry_keyserver ("Default");
390          return 0;      char *str_port = get_reg_entry_keyserver ("Default_Port");
391      }      WORD port = HKP_PORT;
392    
393      load_keyserver_conf (cmdline? 1 : 0);      if (!host)
394            keyserver_set_default (NULL, 0);
395      if (cmdline && (stristr (cmdline, "--keymanager")      else {
396                  || stristr (cmdline, "--cardmanager"))) {          if (str_port && *str_port)
397          update_keycache (GetDesktopWindow ());              port = atoi (str_port);
398          if (stristr (cmdline, "keymanager"))          keyserver_set_default (host, port);
399              dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_KEYMISC,      }
400                              GetDesktopWindow(), keymanager_dlg_proc, NULL,      free_if_alloc (host);
401                              _("Key Manager"), IDS_WINPT_KEYMISC);        free_if_alloc (str_port);
402          else {  }
403              gpg_card_t crd = gpg_card_load ();  
404              if (crd)  
405                  dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_CARD_EDIT,  /* Display info message that WinPT is now in debug mode. */
406                                    GetDesktopWindow(), card_edit_dlg_proc,  void
407                                    (LPARAM)crd, _("Card Manager"),  winpt_debug_msg (void)
408                                    IDS_WINPT_CARD_EDIT);  {      
409              gpg_card_release (crd);      char output[512];
410          }      char temp[128];
411          keycache_release (0);          
412          free_gnupg_table ();      GetTempPath (sizeof temp -1, temp);
413          return 0;      _snprintf (output, sizeof output - 1,
414      }          "The GPGME output file is %sgpgme.dbg\n"
415            "The WinPT output file is %swinpt.log\n", temp, temp);
416      CreateMutex (NULL, TRUE, PGM_NAME);      MessageBox (NULL, output, "WinPT now runs in DEBUG MODE", MB_INFO);
417      if (GetLastError () == ERROR_ALREADY_EXISTS) {  }
418          free_gnupg_table ();  
419          return 0;  
420      }  /* Main entry point. */
421    int WINAPI
422      if (cmdline) {  WinMain (HINSTANCE hinst, HINSTANCE hprev, LPSTR cmdline, int showcmd)
423          if (stristr (cmdline, "--enable-debug") || stristr (cmdline, "--debug")) {  {
424              gpg_set_debug_mode (1);      WNDCLASS wc = {0, winpt_main_proc, 0, 0, hinst, 0, 0, 0, 0, PGM_NAME};
425              winpt_debug_msg ();      HACCEL accel_tab;
426              debug = 1;      MSG msg;
427          }      HWND hwnd = NULL;
428      }      /*WORD ver[3], ptdver[4];*/
429        int rc, ec, created = 0;
430      wc.hIcon = LoadIcon (glob_hinst, MAKEINTRESOURCE (IDI_WINPT));      int first_start = 0, start_gpgprefs = 0;
431      rc = RegisterClass (&wc);      int winpt_inst_found = 0;
432      if (rc == FALSE) {      int start_manager = 0;
433          msg_box (NULL, _("Could not register window class"),      const char *s;
434                   _("WinPT Error"), MB_ERR);  
435          free_gnupg_table ();      glob_hinst = hinst;
436          return 0;      if (cmdline && stristr (cmdline, "--stop")) {
437      }          hwnd = FindWindow ("WinPT", "WinPT");
438            if (hwnd != NULL)
439      hwnd = CreateWindow (PGM_NAME,              PostMessage (hwnd, WM_DESTROY, 0, 0);
440                           PGM_NAME,          return 0;
441                           0, 0, 0, 0, 0,      }
442                           NULL,  
443                           NULL,      #ifdef _DEBUG
444                           hinst,      gpg_set_debug_mode (1);
445                           NULL);      debug = 1;
446      if (hwnd == NULL) {      #endif
447          msg_box (NULL, _("Could not create window"), _("WinPT Error"), MB_ERR);  
448          free_gnupg_table ();      /* XXX
449          return 0;      get_file_version ("WinPT.exe", &ver[0], &ver[1], &ver[2], &ver[3]);
450      }      get_file_version ("PTD.dll", &ptdver[0], &ptdver[1],
451      glob_hwnd = hwnd;                                   &ptdver[2], &ptdver[3]);
452      UpdateWindow (hwnd);      
453        if (ptdver[0] != ver[0] || ptdver[1] != ver[1]|| ptdver[2] != ver[2]) {
454      if (!first_start && !start_gpgprefs) {          log_box (_("WinPT Error"), MB_ERR,
455          gnupg_backup_options ();                           _("The PTD.dll file has a different version than WinPT.exe\n"
456          rc = check_crypto_engine ();                     "Please update the PTD.dll to version %d.%d.%d"),
457          if (rc) {                     ver[0], ver[1], ver[2]);
458              DestroyWindow (hwnd);          return 0;
459              free_gnupg_table ();      }
460              return 0;      */
461          }  
462      }      if (gpg_md_selftest ()) {
463                msg_box (NULL, _("Cryptographic selftest failed."),
464      if (start_gpgprefs) {                   _("WinPT Error"), MB_ERR);
465          char *ring;          return 0;
466          size_t size = 0;      }
467          DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_GPGPREFS, hwnd,  
468                          gpgprefs_dlg_proc, NULL);      s = gpgme_check_version (NEED_GPGME_VERSION);
469          ring = get_gnupg_keyring (0, !NO_STRICT);      if (!s || !*s) {
470          if (gnupg_access_keyring (0) == -1 && get_file_size (ring) == 0)          msg_box (NULL, _("A newer GPGME version is needed; at least "NEED_GPGME_VERSION),
471              first_start = 1; /* The keyring is empty! */                   _("WinPT Error"), MB_ERR);
472          free_if_alloc (ring);          return 0;
473      }      }
474    
475      if (first_start) {      CreateMutex (NULL, TRUE, PGM_NAME);
476          struct first_start_s fs;      if (GetLastError () == ERROR_ALREADY_EXISTS)
477          struct genkey_s c;          winpt_inst_found = 1;
478          HWND h;  
479  start:      if (cmdline && stristr (cmdline, "--mobile")) {
480          h = GetDesktopWindow ();          msg_box (NULL, "WARNING: mobile modus is not fully implemented yet!",
481          DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_GPGPREFS, h,                   "WinPT", MB_INFO);
482                              gpgprefs_dlg_proc, NULL);          mobile_mode_active = 1;
483          DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_FIRST, h,      }
484                          first_run_dlg_proc, (LPARAM)&fs);      
485          switch (fs.choice) {      set_default_keyserver ();
486          case SETUP_KEYGEN:      load_gettext ();
487              c.interactive = 1;  
488              c.first_start = 1;      if (!mobile_mode_active) {
489              rc = DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_KEYWIZARD,          regist_inst_gnupg (1);
490                                   h, keygen_wizard_dlg_proc, (LPARAM)&c);          regist_inst_winpt (1, &created);
491              if (!rc)      }
492                  goto start;      else {
493              break;          if (enable_mobile_mode ())
494                return 0;
495          case SETUP_IMPORT:          created = 1; /* Disable registry writing */
496              rc = gnupg_copy_keyrings ();      }
497              if (rc) {  
498                  msg_box (hwnd, winpt_strerror (rc), _("WinPT Error"), MB_ERR);      if (!created) {
499                  goto start;          memset (&reg_prefs, 0, sizeof (reg_prefs));
500              }          reg_prefs.use_tmpfiles = 1; /* default */
501              break;          reg_prefs.fm.progress = 0; /* XXX: fix the bug and enable it again */
502            get_reg_winpt_prefs (&reg_prefs);
503          case -1:          gnupg_load_config ();
504              DestroyWindow (hwnd);      }
505              free_gnupg_table ();  
506              return 0;      if (is_gpg4win_installed ())
507          }          load_gpg_env (); /* XXX: check return code. */
508          update_keycache (hwnd);  
509          check_crypto_engine ();      rc = gnupg_check_homedir ();
510      }      if (rc) {
511      else {          log_box (_("WinPT Error"), MB_ERR,
512          gpg_keycache_t c;                   _("GPG home directory is not set correctly.\n"
513          update_keycache (hwnd);                     "Please check the GPG registry settings:\n%s."),
514          c = keycache_get_ctx (1);                   winpt_strerror (rc));
515          if (!c || !gpg_keycache_get_size (c)) {          s = get_fileopen_dlg (GetActiveWindow (),
516              gnupg_display_error ();                                _("Select GPG Public Keyring"),
517              msg_box (hwnd, _("The keycache was not initialized or is empty.\n"                                "GPG Keyrings (*.gpg)\0*.gpg\0\0",
518                               "Please check your GPG config (keyrings, pathes...)"),                                NULL);
519                               _("WinPT Error"), MB_ERR);          if (s != NULL) {
520              ec = msg_box (NULL, _("It seems that GPG is not set properly.\n"              size_t n;
521                                    "Do you want to start the GPG preferences dialog?"),              char *p = strrchr (s, '\\');
522                              "WinPT", MB_INFO|MB_YESNO);              if (!p)
523              if (ec == IDYES) {                  BUG (0);
524                  DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_GPGPREFS, hwnd,              n = p - s;
525                                  gpgprefs_dlg_proc, NULL);              if (n) {
526                  update_keycache (hwnd);                  char *file = new char[n+1];
527              }                  if (!file)
528              else {                      BUG (NULL);
529                  DestroyWindow (hwnd);                  memset (file, 0, n);
530                  free_gnupg_table ();                  memcpy (file, s, n);
531                  return 0;                  file[n] = '\0';        
532              }                  set_reg_entry_gpg ("HomeDir", file);
533          }                  free_if_alloc (file);
534          if (check_default_key (c)) {                  gnupg_check_homedir (); /* change gpgProgram if needed */
535              char * p = get_gnupg_default_key ();              }
536              log_box (_("WinPT Error"), MB_ERR,          }
537                       _("Default key from the GPG options file could not be found.\n"          else {
538                         "Please check your gpg.conf (options) to correct this:\n\n"              msg_box (NULL, _("GPG home directory could not be determited."),
539                         "%s: public key not found."), p? p : "[null]");                       _("WinPT Error"), MB_ERR);
540              free_if_alloc (p);              goto start;
541              DestroyWindow (hwnd);          }
542              free_gnupg_table ();      }
543              return 0;  
544          }      rc = check_gnupg_prog ();
545          if (count_insecure_elgkeys ())      if (rc) {
546              DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_ELGWARN, glob_hwnd,          if (msg_box (NULL, _("Could not find the GPG binary (gpg.exe).\n"
547                              elgamal_warn_dlg_proc, NULL);                               "Do you want to start the GPG preferences to "
548      }                               "correct  this problem?"), _("WinPT Error"),
549                                 MB_INFO|MB_YESNO) == IDYES)
550      accel_tab = LoadAccelerators (glob_hinst, (LPCTSTR)IDR_WINPT_ACCELERATOR);              start_gpgprefs = 1;
551      keyring_check_last_access (); /* init */          else {
552      while (GetMessage (&msg, hwnd, 0, 0)) {              msg_box (NULL, winpt_strerror (rc), _("WinPT Error"), MB_ERR);
553          if (!TranslateAccelerator (msg.hwnd, accel_tab, &msg)) {              return 0;
554              TranslateMessage (&msg);          }
555              DispatchMessage (&msg);      }
556          }  
557      }      rc = gnupg_access_files ();
558                if (!start_gpgprefs && rc) {
559      return 0;          if (rc == WPTERR_GPG_KEYRINGS || rc == WPTERR_GPG_OPT_KEYRINGS) {
560  }              ec = msg_box (NULL,
561                    _("Could not access and/or find the public and secret keyring.\n"
562                      "If this is an accident, quit the program and fix it.\n\n"
563                      "Continue if you want that WinPT offers you more choices.\n"),
564                      "WinPT", MB_INFO|MB_YESNO);
565                if (ec == IDYES)
566                    first_start = 1;
567            }
568            if (!first_start) {
569                msg_box (NULL, winpt_strerror (rc), _("WinPT Error"), MB_ERR);
570                return 0;
571            }
572        }
573        if (check_for_empty_keyrings (false))
574            first_start = 1;
575    
576        if (!first_start) {
577            rc = gpg_check_permissions (1);
578            if (rc && rc == 2)
579                gpg_read_only = 1;
580            else if (rc)
581                return 0;
582        }
583        
584        init_gnupg_table ();
585    
586        if (fm_parse_command_line (cmdline) > 0) {
587            free_gnupg_table ();
588            return 0;
589        }
590    
591        if (cmdline && stristr (cmdline, "--wipe-freespace")) {
592            dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_SPACE_SECDEL,
593                                GetDesktopWindow(), space_wipefrees_dlg_proc, 0,
594                                _("Wipe Free Space"), IDS_WINPT_SPACE_SECDEL);
595            free_gnupg_table ();
596            return 0;
597        }
598    
599        load_keyserver_conf (cmdline? 1 : 0);
600    
601        if (cmdline && (stristr (cmdline, "--keymanager")
602                    || stristr (cmdline, "--cardmanager"))) {
603            /* If an instance of WinPT is running, just send the command
604               to open the key manager. Otherwise start a new instance.
605             */
606            HWND tray = FindWindow ("WinPT", "WinPT");
607            if (stristr (cmdline, "keymanager"))
608                start_manager = ID_WINPT_KEY;
609            else
610                start_manager = ID_WINPT_CARD;
611            if (tray != NULL) {
612                PostMessage (tray, WM_COMMAND, start_manager, 0);
613                free_gnupg_table ();
614                return 0;
615            }
616        }
617    
618        /* If we found another WinPT instance, just quit to avoid it
619           will be executed twice. */
620        if (winpt_inst_found) {
621            log_debug ("%s", "WinMain: WinPT is already running.");
622            free_gnupg_table ();
623            return 0;
624        }
625    
626        if (cmdline && (stristr (cmdline, "--enable-debug") ||
627                        stristr (cmdline, "--debug"))) {
628            gpg_set_debug_mode (1);
629            winpt_debug_msg ();
630            debug = 1;
631        }
632    
633        wc.hIcon = LoadIcon (glob_hinst, MAKEINTRESOURCE (IDI_WINPT));
634        rc = RegisterClass (&wc);
635        if (rc == FALSE) {
636            msg_box (NULL, _("Could not register window class"),
637                     _("WinPT Error"), MB_ERR);
638            free_gnupg_table ();
639            return 0;
640        }
641    
642        hwnd = CreateWindow (PGM_NAME,
643                             PGM_NAME,
644                             0, 0, 0, 0, 0,
645                             NULL,
646                             NULL,
647                             hinst,
648                             NULL);
649        if (hwnd == NULL) {
650            msg_box (NULL, _("Could not create window"), _("WinPT Error"), MB_ERR);
651            free_gnupg_table ();
652            return 0;
653        }
654        glob_hwnd = hwnd;
655        UpdateWindow (hwnd);
656    
657        if (!first_start && !start_gpgprefs) {
658            gnupg_backup_options ();        
659            if (!check_crypto_engine ()) {
660                DestroyWindow (hwnd);
661                free_gnupg_table ();
662                return 0;
663            }
664        }
665        
666        if (start_gpgprefs) {
667            DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_GPGPREFS, hwnd,
668                            gpgprefs_dlg_proc, 0);
669            if (check_for_empty_keyrings (true))
670                first_start = 1; /* The public keyring is empty! */
671        }
672    
673        if (first_start) {
674            struct genkey_s c;
675            int choice;
676            HWND h;
677    start:
678            h = GetDesktopWindow ();
679            if (!gpg_prefs_ok ())
680                DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_GPGPREFS, h,
681                                gpgprefs_dlg_proc, 0);
682            choice = DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_FIRST, h,
683                                     first_run_dlg_proc, 0);
684            switch (choice) {
685            case SETUP_KEYGEN:
686                c.interactive = 1;
687                c.first_start = 1;
688                rc = DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_KEYWIZARD,
689                                     h, keygen_wizard_dlg_proc, (LPARAM)&c);
690                if (!rc)
691                    goto start;
692                break;
693    
694            case SETUP_IMPORT:
695                rc = gnupg_copy_keyrings ();
696                if (rc) {
697                    msg_box (hwnd, winpt_strerror (rc), _("WinPT Error"), MB_ERR);
698                    goto start;
699                }
700                break;
701    
702            case 0: /* Cancel/Abort. */
703            default:
704                DestroyWindow (hwnd);
705                free_gnupg_table ();
706                return 0;
707            }
708            update_keycache (hwnd);
709            if (!check_crypto_engine ()) {
710                DestroyWindow (hwnd);
711                free_gnupg_table ();
712                return 0;
713            }
714            if (!is_gpg4win_installed ()) {
715                select_language ();
716                load_gettext ();
717            }
718        }
719        else {
720            gpg_keycache_t c, sec_c;
721            update_keycache (hwnd);
722            c = keycache_get_ctx (1);
723            if (!c || !gpg_keycache_get_size (c)) {
724                gnupg_display_error ();
725                msg_box (hwnd, _("The keycache was not initialized or is empty.\n"
726                                 "Please check your GPG config (keyrings, pathes...)"),
727                                 _("WinPT Error"), MB_ERR);
728                ec = msg_box (NULL, _("It seems that GPG is not set properly.\n"
729                                      "Do you want to start the GPG preferences dialog?"),
730                                "WinPT", MB_INFO|MB_YESNO);
731                if (ec == IDYES) {
732                    DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_GPGPREFS, hwnd,
733                                    gpgprefs_dlg_proc, 0);
734                    update_keycache (hwnd);
735                }
736                else {
737                    DestroyWindow (hwnd);
738                    free_gnupg_table ();
739                    return 0;
740                }
741            }
742            sec_c = keycache_get_ctx (0);
743            if (check_default_key (sec_c)) {
744                char *p = get_gnupg_default_key ();
745                log_box (_("WinPT Error"), MB_ERR,
746                         _("Default key (from the GPG config file) could not be found.\n"
747                           "Please check your gpg.conf or set a new default key to correct it:\n\n"
748                           "%s: public key not found."), p? p : "[null]");
749                set_gnupg_default_key (NULL);
750            }
751            if (count_insecure_elgkeys ())
752                DialogBoxParam (glob_hinst, (LPCTSTR)IDD_WINPT_ELGWARN, glob_hwnd,
753                                elgamal_warn_dlg_proc, 0);
754        }
755    
756        if (start_manager)
757            PostMessage (hwnd, WM_COMMAND, start_manager, 0);
758    
759        accel_tab = LoadAccelerators (glob_hinst, (LPCTSTR)IDR_WINPT_ACCELERATOR);
760        keyring_check_last_access (); /* init */
761        while (GetMessage (&msg, hwnd, 0, 0)) {
762            if (!TranslateAccelerator (msg.hwnd, accel_tab, &msg)) {
763                TranslateMessage (&msg);
764                DispatchMessage (&msg);
765            }
766        }
767            
768        return 0;
769    }

Legend:
Removed from v.32  
changed lines
  Added in v.197

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26