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

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26