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

Legend:
Removed from v.5  
changed lines
  Added in v.270

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26