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

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26