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

Legend:
Removed from v.12  
changed lines
  Added in v.193

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26