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

Legend:
Removed from v.4  
changed lines
  Added in v.172

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26