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

Legend:
Removed from v.2  
changed lines
  Added in v.115

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26