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

Legend:
Removed from v.14  
changed lines
  Added in v.262

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26