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

Legend:
Removed from v.30  
changed lines
  Added in v.180

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26