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

Legend:
Removed from v.25  
changed lines
  Added in v.231

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26