/[winpt]/trunk/Src/wptPassphraseCB.cpp
ViewVC logotype

Diff of /trunk/Src/wptPassphraseCB.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 25 by twoaday, Wed Oct 12 10:04:26 2005 UTC revision 214 by twoaday, Sun May 14 18:40:36 2006 UTC
# Line 1  Line 1 
1  /* wptPassphraseCB.cpp - GPGME Passphrase Callback  /* wptPassphraseCB.cpp - GPGME Passphrase Callback
2   *      Copyright (C) 2001, 2002, 2003, 2005 Timo Schulz   *      Copyright (C) 2001, 2002, 2003, 2005, 2006 Timo Schulz
3   *      Copyright (C) 2005 g10 Code GmbH   *      Copyright (C) 2005 g10 Code GmbH
4   *   *
5   * This file is part of WinPT.   * This file is part of WinPT.
6   *   *
7   * WinPT is free software; you can redistribute it and/or   * WinPT is free software; you can redistribute it and/or
8   * modify it under the terms of the GNU General Public License   * modify it under the terms of the GNU General Public License
9   * as published by the Free Software Foundation; either version 2   * as published by the Free Software Foundation; either version 2
10   * of the License, or (at your option) any later version.   * of the License, or (at your option) any later version.
11   *     *  
12   * WinPT is distributed in the hope that it will be useful,   * WinPT is distributed in the hope that it will be useful,
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   * General Public License for more details.   * General Public License for more details.
16   *   *
17   * You should have received a copy of the GNU General Public License   * You should have received a copy of the GNU General Public License
18   * along with WinPT; if not, write to the Free Software Foundation,   * along with WinPT; if not, write to the Free Software Foundation,
19   * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA   * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20   */   */
21    
22  #include <windows.h>  #ifdef HAVE_CONFIG_H
23  #include <ctype.h>  #include <config.h>
24    #endif
25  #include "../resource.h"  
26  #include "wptNLS.h"  #include <windows.h>
27  #include "wptW32API.h"  #include <ctype.h>
28  #include "wptVersion.h"  
29  #include "wptGPG.h"  #include "resource.h"
30  #include "wptCommonCtl.h"  #include "wptNLS.h"
31  #include "wptContext.h"  #include "wptW32API.h"
32  #include "wptDlgs.h"  #include "wptVersion.h"
33  #include "wptUTF8.h"  #include "wptGPG.h"
34  #include "wptErrors.h"  #include "wptCommonCtl.h"
35  #include "wptTypes.h"  #include "wptContext.h"
36  #include "wptKeyList.h"  #include "wptDlgs.h"
37  #include "wptAgent.h"  #include "wptErrors.h"
38  #include "wptRegistry.h"  #include "wptTypes.h"
39    #include "wptKeylist.h"
40  const char* get_symkey_algo (int algo);  #include "wptAgent.h"
41    #include "wptRegistry.h"
42  #define item_ctrl_id( cmd ) \  #include "wptUTF8.h"
43      ((cmd) == GPG_CMD_DECRYPT? IDC_DECRYPT_PWD : IDC_DECRYPT_SIGN_PWD)  
44    const char* get_symkey_algo (int algo);
45  #define item_ctrl_id2(cmd) \  
46      ((cmd) == GPG_CMD_DECRYPT? IDC_DECRYPT_HIDE : IDC_DECRYPT_SIGN_HIDE)  #define item_ctrl_id(cmd) \
47        ((cmd) == GPG_CMD_DECRYPT? IDC_DECRYPT_PWD : IDC_DECRYPT_SIGN_PWD)
48    
49  /* Dialog procedure for the passphrase callback. */  #define item_ctrl_id2(cmd) \
50  static BOOL CALLBACK      ((cmd) == GPG_CMD_DECRYPT? IDC_DECRYPT_HIDE : IDC_DECRYPT_SIGN_HIDE)
51  passphrase_callback_proc (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam)  
52  {      
53      static passphrase_cb_s * c;  void ListBox_AddString_utf8 (HWND lb, const char *txt);
54      gpgme_decrypt_result_t res;  
55      gpgme_sign_result_t res_sig;  /* Overwrite passphrase and free memory. */
56      gpgme_key_t key;  static void
57      void *ctx = NULL, *item;  burn_passphrase (char **pwd)
58      const char *id;  {
59      char *info;      char *pass = *pwd;
60      int n;      wipememory (pass, strlen (pass));
61        delete []pass;
62      switch (msg) {      *pwd = NULL;
63      case WM_INITDIALOG:  }
64          c = (passphrase_cb_s *)lparam;  
65          if (!c)  
66              BUG (0);  /* Dialog procedure for the passphrase callback. */
67          SetWindowText (dlg, c->title);  static BOOL CALLBACK
68          if (c->gpg_cmd == GPG_CMD_DECRYPT) {  passphrase_callback_proc (HWND dlg, UINT msg, WPARAM wparam, LPARAM lparam)
69              SetDlgItemText( dlg, IDC_DECRYPT_LISTINF,  {    
70                  _("Encrypted with the following public key(s)") );      static passphrase_cb_s *c;
71              CheckDlgButton( dlg, IDC_DECRYPT_HIDE, BST_CHECKED );      gpgme_decrypt_result_t res=NULL;
72          }      gpgme_sign_result_t res_sig=NULL;
73          else if (c->gpg_cmd == GPG_CMD_SIGN)      gpgme_key_t key;
74              CheckDlgButton (dlg, IDC_DECRYPT_SIGN_HIDE, BST_CHECKED);      gpgme_recipient_t recip=NULL, r;
75          res = gpgme_op_decrypt_result (c->gpg);      void *item;
76          if (res != NULL && c->gpg_cmd == GPG_CMD_DECRYPT) {      const char *id;
77              gpgme_recipient_t r;      char *info;
78        int n;
79              /* XXX: not all ENCRYPT_TO entries are listed here. */  
80              for (r = res->recipients; r; r = r->next) {      switch (msg) {
81                  get_pubkey (r->keyid, &key);      case WM_ACTIVATE:
82                  if (key) {          safe_edit_control_init (dlg, item_ctrl_id (c->gpg_cmd));
83                      char *uid;          break;
84                      id = key->uids->name;  
85                      if (!id)      case WM_DESTROY:
86                          id = _("Invalid User ID");          safe_edit_control_free (dlg, item_ctrl_id (c->gpg_cmd));
87                      uid = utf8_to_wincp (id, strlen (id));          break;
88                      info = new char [32+strlen (uid)+1 + 4 + strlen (r->keyid)+1  
89                                       + strlen (key->uids->email)+1];      case WM_INITDIALOG:
90                      if (!info)          c = (passphrase_cb_s *)lparam;
91                          BUG (NULL);          if (!c)
92                      sprintf (info, "%s <%s> (%s, 0x%s)", uid, key->uids->email,              BUG (0);
93                               get_key_pubalgo (r->pubkey_algo), r->keyid+8);          SetDlgItemText (dlg, IDCANCEL, _("&Cancel"));
94                      free (uid);          SetWindowText (dlg, c->title);
95                                if (c->gpg_cmd == GPG_CMD_DECRYPT) {
96                  }              SetDlgItemText (dlg, IDC_DECRYPT_HIDE, _("&Hide Typing"));
97                  else {              SetDlgItemText (dlg, IDC_DECRYPT_LISTINF,
98                      info = new char [32 + strlen (r->keyid)+1 + 4];                              _("Encrypted with the following public key(s)"));
99                      if (!info)              CheckDlgButton (dlg, IDC_DECRYPT_HIDE, BST_CHECKED);
100                          BUG (NULL);          }
101                      sprintf (info, _("Unknown key ID (%s, 0x%s)"),          else if (c->gpg_cmd == GPG_CMD_SIGN) {
102                               get_key_pubalgo (r->pubkey_algo), r->keyid+8);              SetDlgItemText (dlg, IDC_DECRYPT_SIGN_HIDE, _("&Hide Typing"));
103                  }              CheckDlgButton (dlg, IDC_DECRYPT_SIGN_HIDE, BST_CHECKED);
104                  listbox_add_string (GetDlgItem (dlg, IDC_DECRYPT_LIST), info);          }
105                  free_if_alloc (info);          /* Because it depends on the order the keys are stored in the
106              }             keyring whether res->recipients is complete or not, we also
107          }             support that the recipients were externally extracted and then
108          else if (c->gpg_cmd == GPG_CMD_DECRYPT)             we use this list. */
109              EnableWindow (GetDlgItem (dlg, IDC_DECRYPT_LIST), FALSE);          if (c->recipients)
110          SetDlgItemText (dlg, c->gpg_cmd == GPG_CMD_DECRYPT?              recip = c->recipients; /* recipients were already extracted. */
111                          IDC_DECRYPT_PWDINFO : IDC_DECRYPT_SIGN_PWDINFO,          else {
112                          _("Please enter your passphrase"));              res = gpgme_op_decrypt_result (c->gpg);
113          if (c->gpg_cmd == GPG_CMD_DECRYPT) {              if (res && res->recipients)
114              SetFocus (GetDlgItem (dlg, IDC_DECRYPT_PWD));                  recip = res->recipients;
115              if (res && !res->recipients) {          }
116                  const char *s = _("Symmetric encryption.\n"          if (recip != NULL && c->gpg_cmd == GPG_CMD_DECRYPT) {
117                                    "%s encrypted data.");              for (r = recip; r; r = r->next) {
118                  const char *alg = get_symkey_algo (c->sym.sym_algo);                  get_pubkey (r->keyid, &key);
119                  info = new char[strlen (s) + strlen (alg) + 2];                  if (key) {
120                  if (!info)                      gpgme_user_id_t u = key->uids;
121                      BUG (NULL);  
122                  sprintf (info, s, alg);                      id = u->name;
123                  SetDlgItemText (dlg, IDC_DECRYPT_MSG, info);                      if (!id)
124                  free_if_alloc (info);                          id = _("Invalid User ID");
125              }                      n = 32+strlen (id)+1+4+strlen (r->keyid)+1;
126              else                      if (u->email)
127                  SetDlgItemText (dlg, IDC_DECRYPT_MSG, c->info);                          n += strlen (u->email)+1;
128          }                      info = new char [n+1];
129          else {                      if (!info)
130              SetFocus( GetDlgItem (dlg, IDC_DECRYPT_SIGN_PWD));                          BUG (NULL);
131              SetDlgItemText (dlg, IDC_DECRYPT_SIGN_MSG, c->info);                      if (!u->email || strlen (u->email) < 1)
132          }                          sprintf (info, "%s (%s, 0x%s)", id,
133          center_window (dlg, NULL);                                   get_key_pubalgo (r->pubkey_algo), r->keyid+8);
134          SetForegroundWindow (dlg);                      else
135          set_active_window (dlg);                          sprintf (info, "%s <%s> (%s, 0x%s)", id, u->email,
136          return FALSE;                                   get_key_pubalgo (r->pubkey_algo), r->keyid+8);
137                    }
138          case WM_SYSCOMMAND:                  else {
139              if( LOWORD( wparam ) == SC_CLOSE ) {                      info = new char [32 + strlen (r->keyid)+1 + 4];
140                  SetDlgItemText( dlg, item_ctrl_id( c->gpg_cmd ), "" );                      if (!info)
141                  c->cancel = 1;                          BUG (NULL);
142                  EndDialog( dlg, TRUE );                      sprintf (info, _("Unknown key ID (%s, 0x%s)"),
143              }                               get_key_pubalgo (r->pubkey_algo), r->keyid+8);
144              break;                  }
145                    ListBox_AddString_utf8 (GetDlgItem (dlg, IDC_DECRYPT_LIST), info);
146          case WM_COMMAND:                  free_if_alloc (info);
147              switch( HIWORD( wparam ) ) {              }
148              case BN_CLICKED:          }
149                  if ( LOWORD( wparam ) == IDC_DECRYPT_HIDE          else if (c->gpg_cmd == GPG_CMD_DECRYPT)
150                      || LOWORD( wparam ) == IDC_DECRYPT_SIGN_HIDE ) {              EnableWindow (GetDlgItem (dlg, IDC_DECRYPT_LIST), FALSE);
151                      HWND hwnd;          SetDlgItemText (dlg, c->gpg_cmd == GPG_CMD_DECRYPT?
152                      int hide = IsDlgButtonChecked (dlg, item_ctrl_id2 (c->gpg_cmd));                          IDC_DECRYPT_PWDINFO : IDC_DECRYPT_SIGN_PWDINFO,
153                      hwnd = GetDlgItem (dlg, item_ctrl_id (c->gpg_cmd));                          c->bad_pwd? _("Bad passphrase; Enter passphrase again") :
154                      SendMessage (hwnd, EM_SETPASSWORDCHAR, hide? '*' : 0, 0);                          _("Please enter your passphrase"));
155                      SetFocus (hwnd);          if (c->gpg_cmd == GPG_CMD_DECRYPT) {
156                  }              SetFocus (GetDlgItem (dlg, IDC_DECRYPT_PWD));
157              }              if (res && !res->recipients) {
158                    const char *s = _("Symmetric encryption.\n"
159              switch (LOWORD (wparam)) {                                    "%s encrypted data.");
160              case IDOK:                    const char *alg = get_symkey_algo (c->sym.sym_algo);
161                  /* fixme: the item is even cached when the passphrase is not                  info = new char[strlen (s) + strlen (alg) + 2];
162                            correct, which means that the user needs to delete all                  if (!info)
163                            cached entries to continue. */                      BUG (NULL);
164                  if (c->pwd) {                  sprintf (info, s, alg);
165                      delete []c->pwd;                  SetDlgItemText (dlg, IDC_DECRYPT_MSG, info);
166                      c->pwd = NULL;                  free_if_alloc (info);
167                  }              }
168                  n = item_get_text_length (dlg, item_ctrl_id (c->gpg_cmd));              else
169                  if (!n) {                  SetDlgItemText (dlg, IDC_DECRYPT_MSG, c->info);
170                      c->pwd = new char[2];          }
171                      strcpy (c->pwd, "");          else {
172                  }              SetFocus (GetDlgItem (dlg, IDC_DECRYPT_SIGN_PWD));
173                  else {              SetDlgItemText (dlg, IDC_DECRYPT_SIGN_MSG, c->info);
174                      c->pwd = new char[n+2];          }
175                      if (!c->pwd)          center_window (dlg, NULL);
176                          BUG (NULL);          SetForegroundWindow (dlg);
177                      GetDlgItemText (dlg, item_ctrl_id (c->gpg_cmd), c->pwd, n+1);          return FALSE;
178                  }  
179                  res = gpgme_op_decrypt_result (c->gpg);          case WM_SYSCOMMAND:
180                  if (!res)              if (LOWORD (wparam) == SC_CLOSE) {
181                      res_sig = gpgme_op_sign_result (c->gpg);                  SetDlgItemText (dlg, item_ctrl_id (c->gpg_cmd), "");
182                  if (reg_prefs.cache_time > 0 && !c->is_card &&                  c->cancel = 1;
183                      ((res && res->recipients) || (res_sig && res_sig->signatures))) {                  EndDialog (dlg, TRUE);
184                      if (agent_get_cache (c->keyid, &item))              }
185                          agent_unlock_cache_entry (&item);              break;
186                      else  
187                          agent_put_cache (c->keyid, c->pwd, reg_prefs.cache_time);          case WM_COMMAND:
188                  }              switch (HIWORD (wparam)) {
189                  EndDialog (dlg, TRUE);              case BN_CLICKED:
190                  return TRUE;                  if  (LOWORD (wparam) == IDC_DECRYPT_HIDE
191                                        || LOWORD (wparam) == IDC_DECRYPT_SIGN_HIDE) {
192              case IDCANCEL:                      HWND hwnd;
193                  SetDlgItemText (dlg, item_ctrl_id (c->gpg_cmd), "" );                      int hide = IsDlgButtonChecked (dlg, item_ctrl_id2 (c->gpg_cmd));
194                  c->cancel = 1;                      hwnd = GetDlgItem (dlg, item_ctrl_id (c->gpg_cmd));
195                  EndDialog (dlg, FALSE);                      SendMessage (hwnd, EM_SETPASSWORDCHAR, hide? '*' : 0, 0);
196                  return FALSE;                      SetFocus (hwnd);
197              }                  }
198              break;              }
199      }  
200                    switch (LOWORD (wparam)) {
201      return FALSE;              case IDOK:  
202  }                  /* XXX: the item is even cached when the passphrase is not
203                            correct, which means that the user needs to delete all
204                            cached entries to continue. */
205  /* Extract the main keyid from @pass_info.                  if (c->pwd)
206     Return value: long main keyid or NULL for an error. */                      burn_passphrase (&c->pwd);
207  static const char*                  n = item_get_text_length (dlg, item_ctrl_id (c->gpg_cmd));
208  parse_gpg_keyid (const char *pass_info)                  if (!n) {
209  {                      c->pwd = new char[2];
210      static char keyid[16+1];                      if (!c->pwd)
211                                BUG (NULL);
212      if (strlen (pass_info) < 16)                      strcpy (c->pwd, "");
213          return NULL;                  }
214      /* the format of the desc buffer looks like this:                  else {
215         request_keyid[16] main_keyid[16] keytype[1] keylength[4]                      c->pwd = new char[n+2];
216         we use the main keyid to use only one cache entry. */                      if (!c->pwd)
217      strncpy (keyid, pass_info+17, 16);                          BUG (NULL);
218      keyid[16] = 0;                      SafeGetDlgItemText (dlg, item_ctrl_id (c->gpg_cmd),
219      return keyid;                                          c->pwd, n+1);
220  }                  }
221                    res = gpgme_op_decrypt_result (c->gpg);
222                    if (!res)
223  /* Parse the information in @uid_hint and @pass_info to generate                      res_sig = gpgme_op_sign_result (c->gpg);            
224     a input message for the user in @desc. */                  if (reg_prefs.cache_time > 0 && !c->is_card &&
225  static void                      (res || res_sig)) {
226  parse_gpg_description (const char *uid_hint, const char *pass_info,                      if (agent_get_cache (c->keyid, &item))                      
227                         char *desc, int size)                          agent_unlock_cache_entry (&item);
228  {                      else
229      gpgme_pubkey_algo_t algo;                          agent_put_cache (c->keyid, c->pwd, reg_prefs.cache_time);
230      char usedkey[16+1], mainkey[16+1];                  }
231      char *uid, *p;                  c->cancel = 0;
232      int n=0;                  EndDialog (dlg, TRUE);
233                    return TRUE;
234      while (p = strsep ((char**)&pass_info, " ")) {                  
235          switch (n++) {              case IDCANCEL:
236          case 0: strncpy (mainkey, p, 16); mainkey[16] = 0; break;                  SetDlgItemText (dlg, item_ctrl_id (c->gpg_cmd), "");
237          case 1: strncpy (usedkey, p, 16); usedkey[16] = 0; break;                  c->cancel = 1;
238          case 2: algo = (gpgme_pubkey_algo_t)atol (p); break;                  EndDialog (dlg, FALSE);
239          }                  return FALSE;
240      }              }
241      uid_hint += 16; /* skip keyid */              break;
242      uid_hint += 1;  /* space */      }
243        
244      uid = utf8_to_wincp (uid_hint, strlen (uid_hint));      return FALSE;
245    }
246      if (strcmp (usedkey, mainkey))  
247          _snprintf (desc, size-1,  
248                     _("You need a passphrase to unlock the secret key for\n"  /* Extract the main keyid from @pass_info.
249                       "user: \"%s\"\n"     Return value: long main keyid or NULL for an error. */
250                       "%s key, ID %s (main key ID %s)\n"),  static const char*
251                     uid, get_key_pubalgo (algo), usedkey+8, mainkey+8);  parse_gpg_keyid (const char *pass_info)
252      else if (!strcmp (usedkey, mainkey))  {
253          _snprintf (desc, size-1,      static char keyid[16+1];
254                     _("You need a passphrase to unlock the secret key for\n"      
255                       "user: \"%s\"\n"      /* XXX: check for leading alpha-chars? */
256                       "%s key, ID %s\n"),      if (strlen (pass_info) < 16) {
257                       uid, get_key_pubalgo (algo), usedkey+8);          log_debug ("parse_gpg_keyid: error '%s'\r\n", pass_info);
258      free (uid);          return NULL;
259  }      }
260        /* the format of the desc buffer looks like this:
261           request_keyid[16] main_keyid[16] keytype[1] keylength[4]
262  static int inline         we use the main keyid to use only one cache entry. */
263  is_hexstring (const char * p)      strncpy (keyid, pass_info+17, 16);
264  {      keyid[16] = 0;
265      size_t i;      return keyid;
266    }
267      for (i=0; i < strlen (p); i++) {  
268          if (!isxdigit (p[i]))  
269              return -1;  /* Parse the information in @uid_hint and @pass_info to generate
270      }     a input message for the user in @desc. */
271      return 0;  static int
272  }  parse_gpg_description (const char *uid_hint, const char *pass_info,
273                           char *desc, int size)
274    {
275  /* Passphrase callback with the ability to support caching. */      gpgme_pubkey_algo_t algo;
276  gpgme_error_t      char usedkey[16+1];
277  passphrase_cb (void *hook, const char *uid_hint,      char mainkey[16+1];
278                 const char *passphrase_info,      char *p, *uid;
279                 int prev_was_bad, int fd)      int n=0;
280  {  
281      passphrase_cb_s *c = (passphrase_cb_s*)hook;      algo = (gpgme_pubkey_algo_t)0;
282      HANDLE hd = (HANDLE)fd;      /* Each uid_hint contains a long key-ID so it is at least 16 bytes. */
283      void *item;      if (strlen (uid_hint) < 17) {
284      const char *keyid, *pass;          *desc = 0;
285      DWORD n;          log_debug ("parse_gpg_description: error '%s'\r\n", uid_hint);
286      int rc;          return -1;
287        }
288      /* XXX: pubkey_enc cancel does not quit gpg.exe */  
289      /* XXX: handle prev_was_bad case. */      while (p = strsep ((char**)&pass_info, " ")) {
290      if (!c)          switch (n++) {
291          return gpg_error (GPG_ERR_INV_ARG);          case 0: strncpy (mainkey, p, 16); mainkey[16] = 0; break;
292            case 1: strncpy (usedkey, p, 16); usedkey[16] = 0; break;
293      if (passphrase_info) {          case 2: algo = (gpgme_pubkey_algo_t)atol (p); break;
294          if (strlen (passphrase_info) < 16) {/* assume symetric encryption. */          }
295              int n=2;      }
296              c->sym.sym_algo = atoi (passphrase_info);      uid_hint += 16; /* skip keyid */
297              if (c->sym.sym_algo > 9)      uid_hint += 1;  /* space */
298                  n++;  
299              /* XXX: be more strict. */      uid = utf8_to_native (uid_hint);
300              c->sym.s2k_mode = atoi (passphrase_info+n);      if (strcmp (usedkey, mainkey))
301              c->sym.s2k_hash = atoi (passphrase_info+n+2);          _snprintf (desc, size-1,
302          }                     _("You need a passphrase to unlock the secret key for\n"
303                         "user: \"%s\"\n"
304          keyid = parse_gpg_keyid (passphrase_info);                       "%s key, ID %s (main key ID %s)\n"),
305          pass = agent_get_cache (keyid+8, &item);                     uid, get_key_pubalgo (algo), usedkey+8, mainkey+8);
306          if (pass) {      else if (!strcmp (usedkey, mainkey))
307              agent_unlock_cache_entry (&item);          _snprintf (desc, size-1,
308              c->pwd_init = 0;                     _("You need a passphrase to unlock the secret key for\n"
309              if (!WriteFile (hd, pass, strlen (pass), &n, NULL))                       "user: \"%s\"\n"
310                  log_debug ("passphrase_cb: WriteFile() failed ec=%d\n", w32_errno);                       "%s key, ID %s\n"),
311              if (!WriteFile (hd, "\n", 1, &n, NULL))                       uid, get_key_pubalgo (algo), usedkey+8);
312                  log_debug ("passphrase_cb: WriteFile() failed ec=%d\n", w32_errno);      safe_free (uid);
313              return 0;      return 0;
314          }  }
315      }  
316    
317      if (c->pwd_init) {  /* Extract the serial number from the card ID @id and return it. */
318          if (keyid && strlen (keyid) == 16)  const char*
319              strcpy (c->keyid, keyid+8);  extract_serial_no (const char *id)
320    {
321          /* if the desc has a length of 32 and only hex digits, we assume a      static char buf[8];
322             smart card has been used. */      char *p;
323          if (uid_hint && strlen (uid_hint) == 32 && !is_hexstring (uid_hint)) {  
324              char buf[16];      p = strchr (id, '/');
325              memset (buf, 0, sizeof buf);      if (!p) {
326              strncpy (buf, uid_hint+20, 8);          log_debug ("extract_serial_no: error '%s'\r\n", id);
327              _snprintf (c->info, sizeof c->info-1,          return NULL;
328                         _("Please enter the PIN to unlock your secret card key\n"      }
329                           "Card: %s"), buf);      strncpy (buf, id+(p-id)-6, 6);
330              c->is_card = 1;      return buf;
331          }  }
332          else if (uid_hint)  
333              parse_gpg_description (uid_hint, passphrase_info,  
334                                     c->info, sizeof c->info - 1);  /* Passphrase callback with the ability to support caching. */
335          if (c->gpg_cmd == GPG_CMD_DECRYPT) {  gpgme_error_t
336              rc = DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_DECRYPT,  passphrase_cb (void *hook, const char *uid_hint,
337                                   (HWND)c->hwnd, passphrase_callback_proc,                 const char *passphrase_info,
338                                   (LPARAM)c);                 int prev_was_bad, int fd)
339          }  {
340          else if (c->gpg_cmd == GPG_CMD_SIGN) {      passphrase_cb_s *c = (passphrase_cb_s*)hook;
341              rc = DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_DECRYPT_SIGN,      HANDLE hd = (HANDLE)fd;
342                                   (HWND)c->hwnd, passphrase_callback_proc,      void *item;
343                                   (LPARAM)c);      const char *keyid=NULL, *pass;
344          }      DWORD n;
345          if (rc == -1) {      int rc = 0;
346              WriteFile (hd, "\n", 1, &n, NULL);  
347              return gpg_error (GPG_ERR_EOF);      if (!c) {
348          }          log_debug ("passphrase_cb: error '!c'\r\n");
349          c->pwd_init = 0;          return gpg_error (GPG_ERR_INV_ARG);
350      }      }
351      if (c->cancel) {      c->bad_pwd = prev_was_bad? 1 : 0;
352          WriteFile (hd, "\n", 1, &n, NULL);      if (prev_was_bad && !c->cancel) {
353          return gpg_error (GPG_ERR_EOF);          if (c->pwd)
354      }              burn_passphrase (&c->pwd);
355            agent_del_cache (c->keyid);
356      WriteFile (hd, c->pwd, strlen (c->pwd), &n, NULL);          c->pwd_init = 1;
357      WriteFile (hd, "\n", 1, &n, NULL);      }
358      return 0;  
359  }      if (passphrase_info) {
360            if (strlen (passphrase_info) < 16 &&
361                !strstr (passphrase_info, "OPENPGP")) {
362  /* Initialize the given passphrase callback @cb with the              /* assume symetric encryption. */
363     used gpgme context @ctx, the command @cmd and a title              int pos=2;
364     @title for the dialog. */              c->sym.sym_algo = atoi (passphrase_info);
365  void              if (c->sym.sym_algo > 9)
366  set_gpg_passphrase_cb (passphrase_cb_s *cb, gpgme_ctx_t ctx,                  pos++;
367                         int cmd, HWND hwnd, const char *title)              /* XXX: be more strict. */
368  {              c->sym.s2k_mode = atoi (passphrase_info+pos);
369      memset (cb, 0, sizeof *cb);              c->sym.s2k_hash = atoi (passphrase_info+pos+2);
370      cb->gpg_cmd = cmd;          }
371      cb->is_card = 0;  
372      cb->cancel = 0;          keyid = parse_gpg_keyid (passphrase_info);
373      cb->hwnd = hwnd;          pass = agent_get_cache (keyid+8, &item);        
374      cb->pwd_init = 1;          if (pass) {
375      free_if_alloc (cb->title);              agent_unlock_cache_entry (&item);
376      cb->title = m_strdup (title);              c->pwd_init = 0;
377      if (!cb->title)              if (!WriteFile (hd, pass, strlen (pass), &n, NULL))
378          BUG (NULL);                  log_debug ("passphrase_cb: WriteFile() failed ec=%d\n", w32_errno);
379      gpgme_set_passphrase_cb (ctx, passphrase_cb, cb);              if (!WriteFile (hd, "\n", 1, &n, NULL))
380      cb->gpg = ctx;                  log_debug ("passphrase_cb: WriteFile() failed ec=%d\n", w32_errno);
381  }              return 0;
382            }
383        }
384  /* Release a passphrase callback @ctx. */  
385  void      if (c->pwd_init) {
386  release_gpg_passphrase_cb (passphrase_cb_s *ctx)          if (keyid && strlen (keyid) == 16)
387  {              strcpy (c->keyid, keyid+8);
388      if (!ctx)  
389          return;          /* if @passphrase_info contains 'OPENPGP' we assume a smart card
390      sfree_if_alloc (ctx->pwd);              has been used. */
391      free_if_alloc (ctx->title);          if (strstr (passphrase_info, "OPENPGP")) {
392  }              const char *s=passphrase_info;
393                while (s && *s && *s != 'D')
394  /* Simple check to measure passphrase (@pass) quality.                  s++;
395     Return value: 0 on success. */              _snprintf (c->info, sizeof c->info-1,
396  int                         _("Please enter the PIN to unlock your secret card key\n"
397  check_passwd_quality (const char *pass, int strict)                           "Card: %s"), extract_serial_no (s));
398  {              c->is_card = 1;
399      int i, nd=0, nc=0, n;          }
400            else if (uid_hint)
401      n = strlen (pass);              parse_gpg_description (uid_hint, passphrase_info,
402      if (n < 8)                                     c->info, sizeof (c->info) - 1);
403          return -1;          if (c->gpg_cmd == GPG_CMD_DECRYPT) {
404                rc = DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_DECRYPT,
405      for (i=0; i < n; i++) {                                   (HWND)c->hwnd, passphrase_callback_proc,
406          if (isdigit (pass[i])) nd++;                                   (LPARAM)c);
407          if (isalpha (pass[i])) nc++;          }
408      }          else if (c->gpg_cmd == GPG_CMD_SIGN) {
409                rc = DialogBoxParam (glob_hinst, (LPCSTR)IDD_WINPT_DECRYPT_SIGN,
410      if (nd == n || nc == n)                                   (HWND)c->hwnd, passphrase_callback_proc,
411          return -1;                                   (LPARAM)c);
412            }
413      return 0;          if (rc == -1) {
414  }              if (!WriteFile (hd, "\n", 1, &n, NULL))
415                    log_debug ("passphrase_cb: WriteFile() failed ec=%d\n", w32_errno);
416                return 0;
417            }
418            c->pwd_init = 0;
419        }
420        if (c->cancel || !c->pwd) {
421            if (!WriteFile (hd, "\n", 1, &n, NULL))
422                log_debug ("passphrase_cb: WriteFile() failed ec=%d\n", w32_errno);
423            return 0;
424        }
425    
426        if (!WriteFile (hd, c->pwd, strlen (c->pwd), &n, NULL))
427            log_debug ("passphrase_cb: WriteFile() failed ec=%d\n", w32_errno);
428        if (!WriteFile (hd, "\n", 1, &n, NULL))
429            log_debug ("passphrase_cb: WriteFile() failed ec=%d\n", w32_errno);
430        return 0;
431    }
432    
433    
434    /* Initialize the given passphrase callback @cb with the
435       used gpgme context @ctx, the command @cmd and a title
436       @title for the dialog. */
437    void
438    set_gpg_passphrase_cb (passphrase_cb_s *cb, gpgme_ctx_t ctx,
439                           int cmd, HWND hwnd, const char *title)
440    {
441        memset (cb, 0, sizeof *cb);
442        cb->gpg_cmd = cmd;
443        cb->bad_pwd = 0;
444        cb->is_card = 0;
445        cb->cancel = 0;
446        cb->hwnd = hwnd;
447        cb->pwd_init = 1;
448        free_if_alloc (cb->title);
449        cb->title = m_strdup (title);
450        gpgme_set_passphrase_cb (ctx, passphrase_cb, cb);
451        cb->gpg = ctx;
452    }
453    
454    
455    /* Release the gpg recipient list. */
456    void
457    release_gpg_recipients (gpgme_recipient_t *recipients)
458    {
459        gpgme_recipient_t r, n;
460    
461        r = *recipients;
462        while (r != NULL) {
463            n = r->next;
464            safe_free (r->keyid);
465            safe_free (r);
466            r = n;
467        }
468        *recipients = NULL;
469    }
470    
471    
472    
473    /* Release a passphrase callback @ctx. */
474    void
475    release_gpg_passphrase_cb (passphrase_cb_s *ctx)
476    {
477        if (!ctx)
478            return;
479        sfree_if_alloc (ctx->pwd);
480        free_if_alloc (ctx->title);
481        release_gpg_recipients (&ctx->recipients);
482    }
483    
484    
485    /* Simple check to measure passphrase (@pass) quality.
486       Return value: 0 on success. */
487    int
488    check_passwd_quality (const char *pass, int strict)
489    {
490        int i, nd=0, nc=0, n;
491    
492        n = strlen (pass);
493        if (n < 8)
494            return -1;
495    
496        for (i=0; i < n; i++) {
497            if (isdigit (pass[i]))
498                nd++;
499            if (isalpha (pass[i]))
500                nc++;
501        }
502    
503        /* check that the passphrase contains letters and numbers. */
504        if (nd == n || nc == n)
505            return -1;
506    
507        return 0;
508    }

Legend:
Removed from v.25  
changed lines
  Added in v.214

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26