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

Legend:
Removed from v.20  
changed lines
  Added in v.159

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26