/[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 22 by twoaday, Wed Aug 10 11:33:35 2005 UTC revision 34 by twoaday, Wed Oct 26 11:20:09 2005 UTC
# Line 33  Line 33 
33  #include "wptCard.h"  #include "wptCard.h"
34  #include "wptFileManager.h"  #include "wptFileManager.h"
35  #include "wptContext.h"  #include "wptContext.h"
36    #include "wptCardEdit.h"
37    
38  HINSTANCE glob_hinst; /* global instance for the dialogs */  
39  HWND glob_hwnd; /* global window handle for the dialogs */  #define MIN_GPG_VER   "1.4.3"   /* Minimal GPG version. */
40    #define MIN_GPGME_VER "1.2.0"   /* Minimal GPGME version. */
41    #define MIN_PTD_VER   "0.8.1"   /* Minimal PTD version. */
42    
43    
44    HINSTANCE glob_hinst;   /* global instance for the dialogs */
45    HWND glob_hwnd;         /* global window handle for the dialogs */
46  HWND activ_hwnd;  HWND activ_hwnd;
47  LOCK mo_file;  LOCK mo_file;
48  int scard_support = 0;  int scard_support = 0;
# Line 44  int mobile = 0; Line 51  int mobile = 0;
51  int gpg_read_only = 0;  int gpg_read_only = 0;
52  char gpgver[3];  char gpgver[3];
53    
 /* Internal IPC */  
 int start_keymanager = 0;  
54    
55    /* Load the key cache and rebuild the signature cache. */
56  static void  static void
57  update_keycache (HWND hwnd)  update_keycache (HWND hwnd)
58  {  {
# Line 56  update_keycache (HWND hwnd) Line 62  update_keycache (HWND hwnd)
62      rcs.tr_update = 1;      rcs.tr_update = 1;
63      DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_KEYCACHE, hwnd,      DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_KEYCACHE, hwnd,
64                      keycache_dlg_proc, (LPARAM)&rcs);                      keycache_dlg_proc, (LPARAM)&rcs);
65  } /* update_keycache */  }
66    
67    
68  static char *  /* Set GPGME debug mode. If @val is 0, the debug mode is disabled. */
69    void
70    gpg_set_debug_mode (int val)
71    {      
72        if (val)
73            putenv ("GPGME_DEBUG=5:gpgme.dbg");
74        else
75            putenv ("GPGME_DEBUG=");
76    }
77    
78    
79    /* Return the name of the gettext language file. */
80    static char*
81  get_gettext_lang (void)  get_gettext_lang (void)
82  {      {    
83      char * fname;      char *fname;
84      fname = get_reg_entry_mo ();      fname = get_reg_entry_mo ();
85      if (!fname)      if (!fname)
86          return NULL;          return NULL;
87      return fname;      return fname;
88  } /* get_gettext_lang */  }
89    
90    
91    /* Initialize the gettext sub system. */
92  static void  static void
93  load_gettext (void)  load_gettext (int prev_inst)
94  {  {
95      char * nls = NULL;      char *nls = NULL;
96      char * file = NULL;      char *file = NULL;
97    
98      nls = get_gettext_lang ();      nls = get_gettext_lang ();
99      if (nls) {      if (nls) {
100          set_gettext_file ("winpt", nls);          set_gettext_file ("winpt", nls);
101          file = make_filename (nls, "winpt", "mo");          file = make_filename (nls, "winpt", "mo");
102          if (!file_exist_check (nls) && init_file_lock (&mo_file, file))  {          if (!file_exist_check (nls) && init_file_lock (&mo_file, file))  {
103              msg_box (NULL, _("Could not initizalize file lock.\n"              if (!prev_inst)
104                               "Native Language Support"),                  msg_box (NULL, _("Could not initizalize file lock.\n"
105                       _("WinPT Error"), MB_ERR);                                   "Native Language Support"),
106                             _("WinPT Error"), MB_ERR);
107          }          }
108          free_if_alloc (nls);          free_if_alloc (nls);
109          free_if_alloc (file);          free_if_alloc (file);
110      }      }
111  } /* load_gettext */  }
112    
113    
114  /* check if the default key from the gpg.conf file is available in the  /* check if the default key from the gpg.conf file is available in the
115     keyring. if not, bail out because encryption won't work properly then. */     keyring. if not, bail out because encryption won't work properly then. */
116  static int  static int
117  check_default_key (gpgme_keycache_t kc)  check_default_key (gpg_keycache_t kc)
118  {  {
119      gpgme_key_t key;      gpgme_key_t key;
120      gpgme_error_t err = GPGME_No_Error;      gpgme_error_t err = GPG_ERR_NO_ERROR;
121      char * defkey;      char * defkey;
122    
123      defkey = get_gnupg_default_key ();      defkey = get_gnupg_default_key ();
124      if (defkey)      if (defkey)
125          err = gpgme_keycache_find_key (kc, defkey, 0, &key);          err = gpg_keycache_find_key (kc, defkey, 0, &key);
126      free_if_alloc (defkey);      free_if_alloc (defkey);
127      return err? -1 : 0;      return err? -1 : 0;
128  } /* check_default_key */  }
129    
130    
131  /* Return the WinPT program file name (with full pathname). */  /* Return the WinPT program file name (with full pathname). */
132  static const char *  static const char *
133  get_prog_part (const char * fname, int use_cwd)  get_prog_part (const char * fname, int use_cwd)
134  {  {
135      static char program[1024];      static char program[512];
136      char currdir[256], * cmd = NULL;      char currdir[256];
137        char *cmd = NULL;
138      int j;      int j;
139                    
140      memset (currdir, 0, DIM (currdir));      memset (currdir, 0, DIM (currdir));
# Line 127  get_prog_part (const char * fname, int u Line 148  get_prog_part (const char * fname, int u
148          cmd = GetCommandLine ();          cmd = GetCommandLine ();
149          if (cmd == NULL)          if (cmd == NULL)
150              return NULL;              return NULL;
151          strncpy (currdir, cmd, 255);          strncpy (currdir, cmd, sizeof (currdir)-1);
152          j = strlen (currdir);          j = strlen (currdir);
153          while (j--) {          while (j--) {
154              if (currdir[j] == '\\')              if (currdir[j] == '\\')
155                  break;                            break;
156          }          }
157          currdir[j] = 0;          currdir[j] = 0;
158          _snprintf (program, DIM (program)-1, "%s\\%s", currdir + 1, fname);          _snprintf (program, DIM (program)-1, "%s\\%s", currdir + 1, fname);
159      }      }
160      return program;      return program;
161  } /* get_prog_part */  }
162    
163    
164    /* Check that the underlying crypto engine fullfills the minimal
165       requirements so all commands work properly. */
166  static int  static int
167  check_crypto_engine (void)  check_crypto_engine (void)
168  {  {
169      int ma=1, mi=4, pa=0; /* GPG 1.4.0 */      int ma=1, mi=4, pa=3; /* GPG 1.4.3 */
170      int rc;      int rc;
171    
172      rc = check_gnupg_engine (&ma, &mi, &pa);      rc = check_gnupg_engine (&ma, &mi, &pa);
173      if (rc == -1) {      if (rc == -1) {
174          msg_box (NULL, _("Could not read GnuPG version."), _("WinPT Error"), MB_ERR);          msg_box (NULL, _("Could not read GnuPG version."),
175                     _("WinPT Error"), MB_ERR);
176          return rc;          return rc;
177      }      }
178      else if (rc) {      else if (rc) {
179          log_box (_("WinPT Error"), MB_ERR,          log_box (_("WinPT Error"), MB_ERR,
180                   _("Sorry, you need a newer GPG version.\n"                   _("Sorry, you need a newer GPG version.\n"
181                     "GPG version %d.%d.%d required GPG version 1.4.0"),                     "GPG version %d.%d.%d required GPG version "MIN_GPG_VER),
182                     ma, mi, pa);                     ma, mi, pa);
183          return rc;          return rc;
184      }      }
185      /* We enable smartcard support for GPG: 1.9.x or >= 1.4.0 */      /* We enable smartcard support for GPG: 1.9 or >= 1.4 */
186      if (ma >= 1 && mi >= 4)      if (ma >= 1 && mi >= 4)
187          scard_support = 1;          scard_support = 1;
188    
# Line 166  check_crypto_engine (void) Line 190  check_crypto_engine (void)
190      gpgver[1] = mi;      gpgver[1] = mi;
191      gpgver[2] = pa;      gpgver[2] = pa;
192      return rc;      return rc;
193  } /* check_crypto_engine */  }
194    
195    
196    /* Try to load the keyserver config file. If @quiet is 1
197       do not show any errors. */
198  static int  static int
199  load_keyserver_conf (int quiet)  load_keyserver_conf (int quiet)
200  {  {
# Line 188  load_keyserver_conf (int quiet) Line 214  load_keyserver_conf (int quiet)
214  }  }
215    
216    
217    /* Enable the mobility mode. */
218  static void  static void
219  enable_mobile_mode (void)  enable_mobile_mode (void)
220  {  {
# Line 204  enable_mobile_mode (void) Line 231  enable_mobile_mode (void)
231      reg_prefs.use_viewer = 0; /* XXX */      reg_prefs.use_viewer = 0; /* XXX */
232  }  }
233    
234  char* get_subkey_fingerprint (gpgme_ctx_t ctx, const char *keyid);  char* multi_gnupg_path (void);
235    
236    /* Main entry point. */
237  int WINAPI  int WINAPI
 #ifndef WINPT_IPC  
238  WinMain (HINSTANCE hinst, HINSTANCE hprev, LPSTR cmdline, int showcmd)  WinMain (HINSTANCE hinst, HINSTANCE hprev, LPSTR cmdline, int showcmd)
 #else  
 win_main (HINSTANCE hinst, HINSTANCE hprev, LPSTR cmdline, int showcmd)  
 #endif  
239  {  {
240      WNDCLASS wc = {0, winpt_main_proc, 0, 0, hinst, 0, 0, 0, 0, PGM_NAME};      WNDCLASS wc = {0, winpt_main_proc, 0, 0, hinst, 0, 0, 0, 0, PGM_NAME};
241      HACCEL accel_tab;      HACCEL accel_tab;
242      int rc, ec, created = 0, use_cwd = 0, nfiles = 0;      int rc, ec, created = 0, use_cwd = 0, nfiles = 0;
243      int first_start = 0, start_gpgprefs = 0;      int first_start = 0, start_gpgprefs = 0;
244      const char * s;      int winpt_inst_found = 0;
245        const char *s;
246      MSG msg;      MSG msg;
247      HWND hwnd = NULL;      HWND hwnd = NULL;
248    
249      glob_hinst = hinst;      glob_hinst = hinst;
250        
     gpgme_lib_init ();  
251      #ifdef _DEBUG      #ifdef _DEBUG
252      gpgme_set_debug_mode (1);      gpg_set_debug_mode (1);
253        debug = 1;
254      #endif      #endif
     gpgme_set_pgm_string ("WinPT "PGM_VERSION);  
255    
256      s = PTD_get_version ();      s = PTD_get_version ();
257      if (strcmp (s, "0.8.0")) {      if (strcmp (s, MIN_PTD_VER)) {
258          log_box (_("Privacy Tray Dynamic (PTD)"), MB_ERR,          log_box (_("Privacy Tray Dynamic (PTD)"), MB_ERR,
259                   _("Please update your PTD.dll to the newest version, "                   _("Please update your PTD.dll to the newest version, "
260                     "the version (%s) you use is too old."), s);                     "the version (%s) you use is too old."), s);
# Line 243  win_main (HINSTANCE hinst, HINSTANCE hpr Line 267  win_main (HINSTANCE hinst, HINSTANCE hpr
267          return 0;          return 0;
268      }      }
269    
270        s = gpgme_check_version (MIN_GPGME_VER);
271        if (!s || !*s) {
272            msg_box (NULL, _("A newer GPGME version is needed; at least "MIN_GPGME_VER),
273                     _("WinPT Error"), MB_ERR);
274            return 0;
275        }
276    
277        CreateMutex (NULL, TRUE, PGM_NAME);
278        if (GetLastError () == ERROR_ALREADY_EXISTS)
279            winpt_inst_found = 1;
280    
281      if (cmdline && stristr (cmdline, "--mobile")) {      if (cmdline && stristr (cmdline, "--mobile")) {
282          msg_box (NULL, "WARNING: mobile modus is not fully implemented yet!",          msg_box (NULL, "WARNING: mobile modus is not fully implemented yet!",
283                   "WinPT", MB_INFO);                   "WinPT", MB_INFO);
# Line 276  win_main (HINSTANCE hinst, HINSTANCE hpr Line 311  win_main (HINSTANCE hinst, HINSTANCE hpr
311                   _("GPG home directory is not set correctly.\n"                   _("GPG home directory is not set correctly.\n"
312                     "Please check the GPG registry settings:\n%s."),                     "Please check the GPG registry settings:\n%s."),
313                   winpt_strerror (rc));                   winpt_strerror (rc));
314          const char * s = get_filename_dlg (GetActiveWindow (), FILE_OPEN,          const char * s = get_fileopen_dlg (GetActiveWindow (),
315                                             _("Select GPG Public Keyring"),                                             _("Select GPG Public Keyring"),
316                                             _("GPG Keyrings (*.gpg)\0*.gpg\0\0"),                                             _("GPG Keyrings (*.gpg)\0*.gpg\0\0"),
317                                             NULL);                                             NULL);
318          if (s && !file_exist_check (s))          if (s != NULL) {
         {  
319              size_t n;              size_t n;
320              char * p = strrchr (s, '\\');              char * p = strrchr (s, '\\');
321              if (!p)              if (!p)
322                  BUG (0);                  BUG (0);
323              n = p - s;              n = p - s;
324              if (n)              if (n) {
             {  
325                  char * file = new char[n+1];                  char * file = new char[n+1];
326                  if (!file)                  if (!file)
327                      BUG (NULL);                      BUG (NULL);
# Line 322  win_main (HINSTANCE hinst, HINSTANCE hpr Line 355  win_main (HINSTANCE hinst, HINSTANCE hpr
355      }      }
356    
357      rc = gnupg_access_files ();      rc = gnupg_access_files ();
358      if (!start_gpgprefs && rc)      if (!start_gpgprefs && rc) {
359      {          if (rc == WPTERR_GPG_KEYRINGS || rc == WPTERR_GPG_OPT_KEYRINGS) {
         if (rc == WPTERR_GPG_KEYRINGS || rc == WPTERR_GPG_OPT_KEYRINGS)  
         {  
360              ec = msg_box (NULL,              ec = msg_box (NULL,
361                  _("Could not access and/or find the public and secret keyring.\n"                  _("Could not access and/or find the public and secret keyring.\n"
362                    "If this is an accident, quit the program and fix it.\n\n"                    "If this is an accident, quit the program and fix it.\n\n"
# Line 334  win_main (HINSTANCE hinst, HINSTANCE hpr Line 365  win_main (HINSTANCE hinst, HINSTANCE hpr
365              if (ec == IDYES)              if (ec == IDYES)
366                  first_start = 1;                  first_start = 1;
367          }          }
368          if (!first_start)          if (!first_start) {
         {  
369              msg_box (NULL, winpt_strerror (rc), _("WinPT Error"), MB_ERR);              msg_box (NULL, winpt_strerror (rc), _("WinPT Error"), MB_ERR);
370              return 0;              return 0;
371          }          }
372      }      }
373    
374      if (!first_start)      if (!first_start) {
     {  
375          rc = gpg_check_permissions (1);          rc = gpg_check_permissions (1);
376          if (rc && rc == 2)          if (rc && rc == 2)
377              gpg_read_only = 1;              gpg_read_only = 1;
# Line 350  win_main (HINSTANCE hinst, HINSTANCE hpr Line 379  win_main (HINSTANCE hinst, HINSTANCE hpr
379              return 0;              return 0;
380      }      }
381    
382      load_gettext ();      load_gettext (winpt_inst_found);
383      init_gnupg_table ();      init_gnupg_table ();
384    
385      nfiles = fm_parse_command_line (cmdline);      nfiles = fm_parse_command_line (cmdline);
386      if (nfiles > 0)      if (nfiles > 0) {
387            free_gnupg_table ();
388          return 0;          return 0;
389        }
390    
391      if (cmdline && stristr (cmdline, "--wipe-freespace")) {      if (cmdline && stristr (cmdline, "--wipe-freespace")) {
392          dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_SPACE_SECDEL,          dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_SPACE_SECDEL,
# Line 366  win_main (HINSTANCE hinst, HINSTANCE hpr Line 397  win_main (HINSTANCE hinst, HINSTANCE hpr
397      }      }
398    
399      load_keyserver_conf (cmdline? 1 : 0);      load_keyserver_conf (cmdline? 1 : 0);
     if (start_keymanager) {  
         dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_KEYMISC,  
                             GetDesktopWindow(), keymanager_dlg_proc, NULL,  
                             _("Key Manager"), IDS_WINPT_KEYMISC);  
         keycache_release ();  
         free_gnupg_table ();  
         return 0;  
     }  
400    
401      if (cmdline && (stristr (cmdline, "--keymanager")      if (cmdline && (stristr (cmdline, "--keymanager")
402                  || stristr (cmdline, "--cardmanager"))) {                  || stristr (cmdline, "--cardmanager"))) {
# Line 383  win_main (HINSTANCE hinst, HINSTANCE hpr Line 406  win_main (HINSTANCE hinst, HINSTANCE hpr
406                              GetDesktopWindow(), keymanager_dlg_proc, NULL,                              GetDesktopWindow(), keymanager_dlg_proc, NULL,
407                              _("Key Manager"), IDS_WINPT_KEYMISC);                                _("Key Manager"), IDS_WINPT_KEYMISC);  
408          else {          else {
409              gpgme_card_t crd = smartcard_init ();              gpg_card_t crd = gpg_card_load ();
410              if (crd)              if (crd)
411                  dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_CARD_EDIT,                  dialog_box_param (glob_hinst, (LPCTSTR)IDD_WINPT_CARD_EDIT,
412                                    GetDesktopWindow(), card_edit_dlg_proc,                                    GetDesktopWindow(), card_edit_dlg_proc,
413                                    (LPARAM)crd, _("Card Manager"),                                    (LPARAM)crd, _("Card Manager"),
414                                    IDS_WINPT_CARD_EDIT);                                    IDS_WINPT_CARD_EDIT);
415              gpgme_card_release (crd);              gpg_card_release (crd);
416          }          }
417          keycache_release ();          keycache_release (0);
418          free_gnupg_table ();          free_gnupg_table ();
419          return 0;          return 0;
420      }      }
421    
422      CreateMutex (NULL, TRUE, PGM_NAME);      /* If we found another WinPT instance, just quit to avoid it
423      if (GetLastError () == ERROR_ALREADY_EXISTS) {         will be executed twice. */
424        if (winpt_inst_found) {
425            log_debug ("%s", "WinMain: WinPT is already running.");
426          free_gnupg_table ();          free_gnupg_table ();
427          return 0;          return 0;
428      }      }
429    
430      if (cmdline) {      if (cmdline) {
431          if (stristr (cmdline, "--enable-debug") || stristr (cmdline, "--debug")) {          if (stristr (cmdline, "--enable-debug") || stristr (cmdline, "--debug")) {
432              gpgme_set_debug_mode (1);              gpg_set_debug_mode (1);
433              winpt_debug_msg ();              winpt_debug_msg ();
434              debug = 1;              debug = 1;
435          }          }
# Line 413  win_main (HINSTANCE hinst, HINSTANCE hpr Line 438  win_main (HINSTANCE hinst, HINSTANCE hpr
438      wc.hIcon = LoadIcon (glob_hinst, MAKEINTRESOURCE (IDI_WINPT));      wc.hIcon = LoadIcon (glob_hinst, MAKEINTRESOURCE (IDI_WINPT));
439      rc = RegisterClass (&wc);      rc = RegisterClass (&wc);
440      if (rc == FALSE) {      if (rc == FALSE) {
441          msg_box (NULL, _("Could not register window class"), _("WinPT Error"), MB_ERR);          msg_box (NULL, _("Could not register window class"),
442                     _("WinPT Error"), MB_ERR);
443          free_gnupg_table ();          free_gnupg_table ();
444          return 0;          return 0;
445      }      }
# Line 434  win_main (HINSTANCE hinst, HINSTANCE hpr Line 460  win_main (HINSTANCE hinst, HINSTANCE hpr
460      UpdateWindow (hwnd);      UpdateWindow (hwnd);
461    
462      if (!first_start && !start_gpgprefs) {      if (!first_start && !start_gpgprefs) {
463          gnupg_backup_options (1);          gnupg_backup_options ();        
         gnupg_backup_options (0);  
           
464          rc = check_crypto_engine ();          rc = check_crypto_engine ();
465          if (rc) {          if (rc) {
466              DestroyWindow (hwnd);              DestroyWindow (hwnd);
# Line 493  start: Line 517  start:
517          check_crypto_engine ();          check_crypto_engine ();
518      }      }
519      else {      else {
520          gpgme_keycache_t c;          gpg_keycache_t c;
521          update_keycache (hwnd);          update_keycache (hwnd);
522          c = keycache_get_ctx (1);          c = keycache_get_ctx (1);
523          if (!c || !gpgme_keycache_count (c)) {          if (!c || !gpg_keycache_get_size (c)) {
524              gnupg_display_error ();              gnupg_display_error ();
525              msg_box (hwnd, _("The keycache was not initialized or is empty.\n"              msg_box (hwnd, _("The keycache was not initialized or is empty.\n"
526                               "Please check your GPG config (keyrings, pathes...)"),                               "Please check your GPG config (keyrings, pathes...)"),
# Line 541  start: Line 565  start:
565      }      }
566                    
567      return 0;      return 0;
568  } /* WinMain */  }

Legend:
Removed from v.22  
changed lines
  Added in v.34

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26